<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: nr378</title><link>https://news.ycombinator.com/user?id=nr378</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 05 Apr 2026 22:11:42 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=nr378" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[Why the most valuable things you know are things you cannot say]]></title><description><![CDATA[
<p>Article URL: <a href="https://deadneurons.substack.com/p/why-the-most-valuable-things-you">https://deadneurons.substack.com/p/why-the-most-valuable-things-you</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47640775">https://news.ycombinator.com/item?id=47640775</a></p>
<p>Points: 158</p>
<p># Comments: 59</p>
]]></description><pubDate>Sat, 04 Apr 2026 16:49:40 +0000</pubDate><link>https://deadneurons.substack.com/p/why-the-most-valuable-things-you</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47640775</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47640775</guid></item><item><title><![CDATA[Thermodynamics, Organisations and Governments]]></title><description><![CDATA[
<p>Article URL: <a href="https://deadneurons.substack.com/p/thermodynamics-organisations-and">https://deadneurons.substack.com/p/thermodynamics-organisations-and</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47565348">https://news.ycombinator.com/item?id=47565348</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 29 Mar 2026 17:43:44 +0000</pubDate><link>https://deadneurons.substack.com/p/thermodynamics-organisations-and</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47565348</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47565348</guid></item><item><title><![CDATA[An Open Letter to Mr Zuckerberg]]></title><description><![CDATA[
<p>Article URL: <a href="https://deadneurons.substack.com/p/an-open-letter-to-mr-zuckerberg">https://deadneurons.substack.com/p/an-open-letter-to-mr-zuckerberg</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47466408">https://news.ycombinator.com/item?id=47466408</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 21 Mar 2026 12:28:48 +0000</pubDate><link>https://deadneurons.substack.com/p/an-open-letter-to-mr-zuckerberg</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47466408</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47466408</guid></item><item><title><![CDATA[Redux for Enterprise Context]]></title><description><![CDATA[
<p>Article URL: <a href="https://deadneurons.substack.com/p/redux-for-enterprise-context">https://deadneurons.substack.com/p/redux-for-enterprise-context</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47431341">https://news.ycombinator.com/item?id=47431341</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 18 Mar 2026 20:55:52 +0000</pubDate><link>https://deadneurons.substack.com/p/redux-for-enterprise-context</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47431341</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47431341</guid></item><item><title><![CDATA[New comment by nr378 in "Grace Hopper's Revenge"]]></title><description><![CDATA[
<p>Yep I think you can reasonably argue that immutability + strong conventions are the most important dimensions (as opposed to FP vs. OOP, as much as I like FP and dislike OOP):<p>Immutable by convention + Strong conventions: 91.3% - Elixir 97.5%, Kotlin 90.5%, Racket 88.9%, C# 88.4%<p>Immutable by convention + Fragmented: 78.4% - Scala 78.4% (n=1)<p>Mutable + Strong conventions: 77.5% - Ruby 81.0%, Swift 78.5%, Julia 78.5%, Dart 78.0%, Go 71.7%<p>Mutable + Fragmented: 67.9% - Java 80.9%, R 75.8%, C++ 75.8%, Shell 72.9%, Python 65.3%, Perl 64.5%, TS 61.3%, JS 60.9%, PHP 53.8%<p>(my grouping is somewhat subjective)</p>
]]></description><pubDate>Tue, 17 Mar 2026 13:01:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=47412067</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47412067</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47412067</guid></item><item><title><![CDATA[New comment by nr378 in "Grace Hopper's Revenge"]]></title><description><![CDATA[
<p>The data doesn't well support the claim that FP is best. Elixir tops the table at 97.5%, but C# (88.4%) is OOP and scores almost identically to Racket (88.9%), and Ruby (81.0%) and Java (80.9%) both outscore Scala (78.4%), which is explicitly functional. If FP were the driver, Scala should beat those languages, but it doesn't.<p>It's tempting to argue that a more constrained language helps, but Rust (62.8%) vs Elixir (97.5%) is an interesting data point here. Both are highly constrained, but in different directions. Elixir's constraints narrow the solution space because you can't mutate, you can't use loops, and you must pattern match, so every constraint eliminates options and funnels you toward fewer valid solutions that the LLM has to search through. Rust adds another constraint that must independently be satisfied on top of solving the actual problem, where the borrow checker doesn't eliminate approaches but adds a second axis of correctness the LLM has to get right simultaneously.<p>Overall, it seems like languages with strong conventions and ecosystems that narrow the solution space beat languages where there's a thousand ways to do something. Elixir has one build tool, one formatter, one way to do things. C#, Kotlin, and Java have strong ceremony and convention that effectively narrow how you write a program. Meanwhile JS, Python, PHP, and Perl offer endless choices, fragmented ecosystems, and rapidly shifting idioms, and they cluster at the bottom of the table.</p>
]]></description><pubDate>Tue, 17 Mar 2026 11:41:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=47411319</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47411319</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47411319</guid></item><item><title><![CDATA[Agentic Context Management: Why the Model Should Manage Its Own Context]]></title><description><![CDATA[
<p>Article URL: <a href="https://deadneurons.substack.com/p/agentic-context-management-why-the">https://deadneurons.substack.com/p/agentic-context-management-why-the</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47402974">https://news.ycombinator.com/item?id=47402974</a></p>
<p>Points: 7</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 16 Mar 2026 18:40:00 +0000</pubDate><link>https://deadneurons.substack.com/p/agentic-context-management-why-the</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47402974</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47402974</guid></item><item><title><![CDATA[New comment by nr378 in "The Enterprise Context Layer"]]></title><description><![CDATA[
<p>> 3. Storing it the way this article presents makes it usable for agents, but not humans. Whereas the point of knowledge graph, ontology, etc is to create the same layer for both humans and AI to interact with<p>If storing it this way makes it usable for agents, then why don't humans just use agents when they need to interact with it?</p>
]]></description><pubDate>Sun, 15 Mar 2026 14:53:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=47387972</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47387972</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47387972</guid></item><item><title><![CDATA[The Great Rotation from Bits to Atoms]]></title><description><![CDATA[
<p>Article URL: <a href="https://deadneurons.substack.com/p/the-great-rotation-from-bits-to-atoms">https://deadneurons.substack.com/p/the-great-rotation-from-bits-to-atoms</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47376501">https://news.ycombinator.com/item?id=47376501</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 14 Mar 2026 13:32:13 +0000</pubDate><link>https://deadneurons.substack.com/p/the-great-rotation-from-bits-to-atoms</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47376501</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47376501</guid></item><item><title><![CDATA[Housing: The Greatest Policy Failure in the Western World]]></title><description><![CDATA[
<p>Article URL: <a href="https://deadneurons.substack.com/p/the-greatest-policy-failure-in-the">https://deadneurons.substack.com/p/the-greatest-policy-failure-in-the</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47375481">https://news.ycombinator.com/item?id=47375481</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 14 Mar 2026 11:13:53 +0000</pubDate><link>https://deadneurons.substack.com/p/the-greatest-policy-failure-in-the</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47375481</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47375481</guid></item><item><title><![CDATA[New comment by nr378 in "No, it doesn't cost Anthropic $5k per Claude Code user"]]></title><description><![CDATA[
<p>Dario has made a specific cohort argument here. His numbers (from various interviews) are: you train a model in 2023 for $100M, deploy it, and it earns $200M over its lifetime. Meanwhile you train the 2024 model for $1B, which goes on to earn $2B. Each vintage returns 2x on its training cost.<p>However, the GAAP P&L tells the opposite story. You book $200M revenue in the same year you spend $1B training the next model, so you report an $800M loss. Next year you book $2B against $10B in training spend, reporting an $8B loss. The business looks like it's dying when every individual model generation actually generates a healthy profit.<p>That's actually Dario's answer to your depreciation question. If each cohort earns back its training cost within its natural lifespan (however short that lifespan is), the depreciation schedule is already baked in. The model doesn't need to live forever, it just needs to return more than it cost before the next one replaces it. Whether that's actually happening at Anthropic is a different question, and one we can't answer without audited financials, but it's the claim Dario makes (and seems entirely reasonable from a distance).</p>
]]></description><pubDate>Tue, 10 Mar 2026 17:03:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=47325969</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47325969</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47325969</guid></item><item><title><![CDATA[New comment by nr378 in "Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents"]]></title><description><![CDATA[
<p>Based on the docs and API surface, I think the filesystem abstraction is probably copy-on-mount backed by object storage.<p>I suspect it works as follows: when a task starts, filesystem contents sync down from S3/R2/GCS to a local directory, which gets bind-mounted into the container. The agent reads and writes normally - no FUSE, no network round-trips per file op. On task completion or explicit sync, changes flush back to object storage. The presigned URL support for upload/download is the giveaway that object storage is the source of truth.<p>This makes way more sense than FUSE for agent workloads. Agents do thousands of small reads (find, grep, git status) that would each be a network call with FUSE. With copy-on-mount it's all local disk speed after initial sync.<p>Cross-task sharing falls out naturally - two tasks mounting the same filesystem ID just means two containers syncing from the same S3 prefix. Probably last-write-wins rather than distributed locking, which is fine since agents rarely have concurrent writes to the same file.</p>
]]></description><pubDate>Mon, 09 Mar 2026 20:34:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=47315094</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47315094</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47315094</guid></item><item><title><![CDATA[AI Is Not Going to Kill Software Engineering]]></title><description><![CDATA[
<p>Article URL: <a href="https://deadneurons.substack.com/p/no-ai-is-not-going-to-kill-software">https://deadneurons.substack.com/p/no-ai-is-not-going-to-kill-software</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47268197">https://news.ycombinator.com/item?id=47268197</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 05 Mar 2026 22:31:42 +0000</pubDate><link>https://deadneurons.substack.com/p/no-ai-is-not-going-to-kill-software</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47268197</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47268197</guid></item><item><title><![CDATA[Software Engineering Isn't Dead Yet]]></title><description><![CDATA[
<p>Article URL: <a href="https://deadneurons.substack.com/p/software-engineering-isnt-dead-yet">https://deadneurons.substack.com/p/software-engineering-isnt-dead-yet</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47247067">https://news.ycombinator.com/item?id=47247067</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 04 Mar 2026 13:24:10 +0000</pubDate><link>https://deadneurons.substack.com/p/software-engineering-isnt-dead-yet</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47247067</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47247067</guid></item><item><title><![CDATA[New comment by nr378 in "MCP server that reduces Claude Code context consumption by 98%"]]></title><description><![CDATA[
<p>Oh that's quite a nice idea - agentic context management (riffing on agentic memory management).<p>There's some challenges around the LLM having enough output tokens to easily specify what it wants its next input tokens to be, but "snips" should be able to be expressed concisely (i.e. the next input should include everything sent previously except the chunk that starts XXX and ends YYY). The upside is tighter context, the downside is it'll bust the prompt cache (perhaps the optimal trade-off is to batch the snips).</p>
]]></description><pubDate>Sat, 28 Feb 2026 18:04:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47198356</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47198356</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47198356</guid></item><item><title><![CDATA[New comment by nr378 in "MCP server that reduces Claude Code context consumption by 98%"]]></title><description><![CDATA[
<p>Nice work.<p>It strikes me there's more low hanging fruit to pluck re. context window management. Backtracking strikes me as another promising direction to avoid context bloat and compaction (i.e. when a model takes a few attempts to do the right thing, once it's done the right thing, prune the failed attempts out of the context).</p>
]]></description><pubDate>Sat, 28 Feb 2026 14:06:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=47195544</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47195544</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47195544</guid></item><item><title><![CDATA[What a negative AI economic scenario could look like]]></title><description><![CDATA[
<p>Article URL: <a href="https://deadneurons.substack.com/p/what-a-negative-ai-economic-scenario">https://deadneurons.substack.com/p/what-a-negative-ai-economic-scenario</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47163934">https://news.ycombinator.com/item?id=47163934</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 26 Feb 2026 09:44:25 +0000</pubDate><link>https://deadneurons.substack.com/p/what-a-negative-ai-economic-scenario</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47163934</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47163934</guid></item><item><title><![CDATA[Why the Intelligence Crisis Scenario Is Wrong]]></title><description><![CDATA[
<p>Article URL: <a href="https://deadneurons.substack.com/p/why-the-intelligence-crisis-scenario">https://deadneurons.substack.com/p/why-the-intelligence-crisis-scenario</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47148725">https://news.ycombinator.com/item?id=47148725</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 25 Feb 2026 08:05:41 +0000</pubDate><link>https://deadneurons.substack.com/p/why-the-intelligence-crisis-scenario</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47148725</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47148725</guid></item><item><title><![CDATA[Four Things OpenClaw Got Right]]></title><description><![CDATA[
<p>Article URL: <a href="https://deadneurons.substack.com/p/four-things-openclaw-got-right">https://deadneurons.substack.com/p/four-things-openclaw-got-right</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47079055">https://news.ycombinator.com/item?id=47079055</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 19 Feb 2026 20:46:54 +0000</pubDate><link>https://deadneurons.substack.com/p/four-things-openclaw-got-right</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47079055</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47079055</guid></item><item><title><![CDATA[Companies should ship CLIs, not MCPs]]></title><description><![CDATA[
<p>Article URL: <a href="https://deadneurons.substack.com/p/companies-should-ship-clis-not-mcps">https://deadneurons.substack.com/p/companies-should-ship-clis-not-mcps</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47055090">https://news.ycombinator.com/item?id=47055090</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 17 Feb 2026 23:42:00 +0000</pubDate><link>https://deadneurons.substack.com/p/companies-should-ship-clis-not-mcps</link><dc:creator>nr378</dc:creator><comments>https://news.ycombinator.com/item?id=47055090</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47055090</guid></item></channel></rss>