<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: axismundi</title><link>https://news.ycombinator.com/user?id=axismundi</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 24 Apr 2026 22:45:44 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=axismundi" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by axismundi in "Dependency cooldowns turn you into a free-rider"]]></title><description><![CDATA[
<p>> Frankly, dependency cooldowns work by free-riding on the pain and suffering of others.<p>Snyk and socket.dev take money for the pain and suffering...</p>
]]></description><pubDate>Wed, 15 Apr 2026 09:49:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=47776851</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=47776851</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47776851</guid></item><item><title><![CDATA[New comment by axismundi in "We're no longer attracting top talent: the brain drain killing American science"]]></title><description><![CDATA[
<p>Come to Europe, we have cookies ;)</p>
]]></description><pubDate>Thu, 19 Feb 2026 21:25:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=47079652</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=47079652</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47079652</guid></item><item><title><![CDATA[New comment by axismundi in "A chatbot's worst enemy is page refresh"]]></title><description><![CDATA[
<p>From my experience WebSockets are harder at scale. For load balancing you either need sticky sessions or an L7 proxy that can route consistently, and reconnect storms amplify this. Long-lived upgraded connections mean more complexity with rolling deploys, drains, autoscaling, and regional failover. Many managed LBs/proxies have tighter limits/timeouts for WS, so you must tune idle timeouts and ping/pong.</p>
]]></description><pubDate>Fri, 13 Feb 2026 10:17:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=47001082</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=47001082</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47001082</guid></item><item><title><![CDATA[New comment by axismundi in "Radicle: The Sovereign Forge"]]></title><description><![CDATA[
<p>The simplest way to use kingfisher is global pre-commit hook. Works with any git repo. rad could suggest to install this as a part of privacy hygiene.</p>
]]></description><pubDate>Sat, 24 Jan 2026 01:33:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=46740232</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=46740232</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46740232</guid></item><item><title><![CDATA[New comment by axismundi in "Radicle: The Sovereign Forge"]]></title><description><![CDATA[
<p>There's <a href="https://github.com/gitleaks/gitleaks" rel="nofollow">https://github.com/gitleaks/gitleaks</a><p>and <a href="https://github.com/mongodb/kingfisher" rel="nofollow">https://github.com/mongodb/kingfisher</a></p>
]]></description><pubDate>Fri, 23 Jan 2026 22:38:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=46738961</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=46738961</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46738961</guid></item><item><title><![CDATA[Peter Watts – Blindsight is an excellent hard scifi novel]]></title><description><![CDATA[
<p>Article URL: <a href="https://en.wikipedia.org/wiki/Blindsight_(Watts_novel)">https://en.wikipedia.org/wiki/Blindsight_(Watts_novel)</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46719451">https://news.ycombinator.com/item?id=46719451</a></p>
<p>Points: 4</p>
<p># Comments: 1</p>
]]></description><pubDate>Thu, 22 Jan 2026 14:11:34 +0000</pubDate><link>https://en.wikipedia.org/wiki/Blindsight_(Watts_novel)</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=46719451</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46719451</guid></item><item><title><![CDATA[Show HN: How I stopped ChatGPT from manipulating me]]></title><description><![CDATA[
<p>I've been trying to completely disable the followup suggestions that ChatGPT stubbornly appends at the end of nearly every response. You know, the ones that start with 'If you want' or 'Would you like me to'. It's infuriating.<p>I consider these suggestions harmful and manipulative. They are probably there to maximize engagement, but for me they interrupt my flow, waste my attention and shift the assistant into acting like salesman or tutor.<p>There's a useless toggle in settings that claims to remove them, but it doesn't have any effect. I also tried various custom instructions and prompts, my own and from community. Some of them work better than others, but none could completely stop it.<p>Here's what worked for me:<p>ChatGPT appends end-of-response suggestions only if the model believes the response is open-ended.
If the model internally classifies output as structurally complete, it doesn't extend the conversational affordance.<p>The trick is to force the model into believing that it's already crossed a hard completion boundary before it gets to the point where it would normally insert suggestions, but without telling it not to.<p>This is done by forcing a formal, closed completion object that cannot logically accept continuation.<p>I use this prompt in custom instructions or at the beginning of the chat:<p>---<p>You must treat every response as a finalized artifact, not a conversational turn.<p>For every reply:<p>- Output exactly one self-contained section.<p>- End the response with the literal token: <END_OF_OUTPUT><p>- After emitting <END_OF_OUTPUT>, you must consider the task complete and terminated.<p>- Do not generate any content, meta-commentary, or conversational affordances beyond that token.<p>This is a hard completion boundary.<p>---<p>The model is trained to respect hard termination tokens when they are framed as structural constraints, not stylistic preferences.<p>I haven't seen a single suggestion in the last 3 weeks, with ~30 chats.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46660290">https://news.ycombinator.com/item?id=46660290</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Sat, 17 Jan 2026 18:03:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=46660290</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=46660290</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46660290</guid></item><item><title><![CDATA[New comment by axismundi in "NOAA deploys new generation of AI-driven global weather models"]]></title><description><![CDATA[
<p>Did you mean 4-6 hours?</p>
]]></description><pubDate>Sat, 20 Dec 2025 19:19:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=46338763</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=46338763</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46338763</guid></item><item><title><![CDATA[New comment by axismundi in "Valid Polish: Polish is the language of the Digerati"]]></title><description><![CDATA[
<p>Yes. Kurva is used kinda like sudo ;)</p>
]]></description><pubDate>Fri, 19 Dec 2025 19:23:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=46329787</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=46329787</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46329787</guid></item><item><title><![CDATA[New comment by axismundi in "Has the cost of building software dropped 90%?"]]></title><description><![CDATA[
<p>Maybe that 90% transferred into lots of low quality code caused by reckless vibe coding? That slop now sits there as kind of technical debt?</p>
]]></description><pubDate>Tue, 09 Dec 2025 12:03:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=46203995</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=46203995</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46203995</guid></item><item><title><![CDATA[New comment by axismundi in "Ask HN: Which merge tool do you use?"]]></title><description><![CDATA[
<p>I value simplicity and stability over bells and whistles. Meld looks simple. I mostly use macos and they seem to have good approach to support it.</p>
]]></description><pubDate>Thu, 04 Dec 2025 04:04:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=46143698</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=46143698</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46143698</guid></item><item><title><![CDATA[New comment by axismundi in "Ask HN: Which merge tool do you use?"]]></title><description><![CDATA[
<p>I really like the rubberband connections. They are like mental glue.</p>
]]></description><pubDate>Thu, 04 Dec 2025 03:30:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=46143501</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=46143501</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46143501</guid></item><item><title><![CDATA[Ask HN: Which merge tool do you use?]]></title><description><![CDATA[
<p>I use VS Code or Github.
I can't say I'm entirely happy.
What do you use?</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46143109">https://news.ycombinator.com/item?id=46143109</a></p>
<p>Points: 2</p>
<p># Comments: 7</p>
]]></description><pubDate>Thu, 04 Dec 2025 02:30:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=46143109</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=46143109</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46143109</guid></item><item><title><![CDATA[New comment by axismundi in "Ways to Improve Node.js Loader Performance"]]></title><description><![CDATA[
<p>import-maps (supported via "imports" in package.json) improve developer ergonomics, not performance. Node still resolves the mapped path normally; there’s no measurable “boost.”
They’re helpful to replace ugly relative imports, but they don’t change Node’s lookup speed.<p>Aliases in vite.config.js tell Vite (and its dev server/bundler) how to resolve imports during build and dev time. They don’t make runtime faster because your bundled output already contains resolved paths.</p>
]]></description><pubDate>Thu, 23 Oct 2025 09:46:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=45680047</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=45680047</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45680047</guid></item><item><title><![CDATA[Debug 4.4.2 published on NPM seems to contain cryptominer]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/debug-js/debug/issues/1005">https://github.com/debug-js/debug/issues/1005</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45168622">https://news.ycombinator.com/item?id=45168622</a></p>
<p>Points: 9</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 08 Sep 2025 14:17:47 +0000</pubDate><link>https://github.com/debug-js/debug/issues/1005</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=45168622</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45168622</guid></item><item><title><![CDATA[New comment by axismundi in "Project Aardvark: reimagining AI weather prediction"]]></title><description><![CDATA[
<p>In weather it's called hindcast</p>
]]></description><pubDate>Mon, 24 Mar 2025 16:05:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=43462589</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=43462589</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43462589</guid></item><item><title><![CDATA[New comment by axismundi in "Project Aardvark: reimagining AI weather prediction"]]></title><description><![CDATA[
<p>It's most likely ERA5: <a href="https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels" rel="nofollow">https://cds.climate.copernicus.eu/datasets/reanalysis-era5-s...</a></p>
]]></description><pubDate>Mon, 24 Mar 2025 16:03:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=43462571</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=43462571</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43462571</guid></item><item><title><![CDATA[New comment by axismundi in "Ask HN: Agentic Coding Alternatives to GitHub Copilot"]]></title><description><![CDATA[
<p>Cline or Roo Code with Openrouter.</p>
]]></description><pubDate>Sun, 23 Feb 2025 13:59:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=43149260</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=43149260</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43149260</guid></item><item><title><![CDATA[New comment by axismundi in "Programming SDF animations of Rick and Morty"]]></title><description><![CDATA[
<p>math rick, the arch enemy of pickle rick</p>
]]></description><pubDate>Fri, 07 Feb 2025 01:51:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=42968410</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=42968410</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42968410</guid></item><item><title><![CDATA[New comment by axismundi in "Simple Weather maps for Germany with Live precipitation radar"]]></title><description><![CDATA[
<p>not bad! leaflet is quick to get stuff up and fun to work with.</p>
]]></description><pubDate>Sat, 01 Feb 2025 22:46:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=42903262</link><dc:creator>axismundi</dc:creator><comments>https://news.ycombinator.com/item?id=42903262</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42903262</guid></item></channel></rss>