<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: yourapostasy</title><link>https://news.ycombinator.com/user?id=yourapostasy</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 27 Aug 2026 06:15:27 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=yourapostasy" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by yourapostasy in "Don't paste the AI, please"]]></title><description><![CDATA[
<p><i>> If you are delegating something to somebody that reports to you, you can just tell them off.</i><p>Coaching someone on why the perspective of the receiver of their behavior works counter-purpose to their intent due to <undesired-behavior-of-theirs> has so far always gotten me more durable and thoughtful behavior modifications than telling them off. I generally reserve telling off someone for proven malicious behavior from malicious intent.</p>
]]></description><pubDate>Thu, 20 Aug 2026 13:52:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=49374578</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=49374578</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49374578</guid></item><item><title><![CDATA[New comment by yourapostasy in "Google has acquired the data of failed US airline Spirit"]]></title><description><![CDATA[
<p>This is when a track record of Google's "Don't be evil" motto, culture and corporate habits being literally front and center on its official code of conduct, instead of moved to the very last line in 2018, would have persuaded people to give it the benefit of the doubt. Functionally effective privacy seems to be retreating ever more exclusively into the domain of very wealthy families and behind the corporate veil (by purchasing information scrubbing services on a regular basis), and the loss by normal people of the commons of mass privacy has unfortunately not been appreciated by the common citizen. It is a more valuable commons than recognized by most citizens, and is being rapidly co-opted and monetized by commercial entities that are not aligned with individual interests.<p>Even as an investor who stands to benefit from that monetization in the short term, I stand against this trend because like any Tragedy of The Commons economic scenario, in the long term (which isn't that long due to the automation that harvests this resource) it sows the seeds of its own dilution into functionally near non-commercial value.</p>
]]></description><pubDate>Tue, 18 Aug 2026 14:58:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=49346602</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=49346602</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49346602</guid></item><item><title><![CDATA[New comment by yourapostasy in "Discovery Loop"]]></title><description><![CDATA[
<p>I suspect we’re at the stage of technological civilizational development where, especially with LLM-assisted gradient descent seeking upon the results, basic science, research and engineering for the pure sake of establishing search space beacons of what is found to be true and what is not, irrespective of immediate industrial applications payoff, are valuable economic inputs in and of themselves into ever-expanding training corpus. It has never been easier for people in different fields to now search knowledge spaces in LLM’s, for applicability to their problem spaces of discoveries in seemingly unrelated spaces.<p>From my perspective, we are desperately short of scientists, researchers and engineers, but we are using an outdated economic model to leverage their findings. LLM’s are a large part of Bush’s Memex and Jobs’ bicycle for the mind visions for intelligence amplification, and in some ways exceed them. I hope we trampoline from how we currently use basic seeking efforts for knowledge.</p>
]]></description><pubDate>Thu, 06 Aug 2026 14:17:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=49197033</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=49197033</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49197033</guid></item><item><title><![CDATA[New comment by yourapostasy in "TSON – A JSON superset with immutable, hash-pinned schemas"]]></title><description><![CDATA[
<p>I sometimes wonder if we as an industry should revisit XML for those use cases where painful JSON contortions are being used, now that LLM's can plausibly support writing the syntax for XML-adjacent languages like XSLT without as steep a learning and sustainment curve. My natural inclination is to design to accommodate as complex a space as the business requirements project for, because representation data structures and languages are so incredibly painful to change late in a product's maturity cycle.<p>So I've never rejected XML out of hand, but I've always been "show me" skeptical of calls for it and pushed for explanations on why the business requirements feel the justification to adopt XML. Sometimes I've seen it totally makes sense, but with the conceptual rigor it requires in those use cases, the skillset and expertise of the development team has to reach a higher than average bar. I'm cautiously hopeful LLM's might help with lowering that bar, but time will tell.</p>
]]></description><pubDate>Wed, 05 Aug 2026 16:12:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=49184842</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=49184842</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49184842</guid></item><item><title><![CDATA[New comment by yourapostasy in "Cloudflare OS: an open platform for agents, apps, and work"]]></title><description><![CDATA[
<p>Not at all too paranoid. Just like people figured out even with elastic everything, compute from Spot instances and all the other things we're supposed to do in AWS, the data out charges between AZ's and Region's still more than made up the cost savings for true resiliency. People are going to figure out relatively similar pricing traps in Cloudflare that are difficult to design around.<p>If you run an unindexed D1 query, then you get dinged for every row read. If you didn't properly perform scalability testing in non-production, then you'll never know this until you get a bill that you dissect to find out 5 million rows read for a 5 row result, if you even dig that far in the billing.<p>If you do not use the WebSocket Hibernation API with Durable Objects, then when you spin up a DO and hold open thousands of client WebSockets, you are being billed continuously for the entire time those connections are open—even if zero messages are being sent.<p>If you keep optimizing for payload size like many do by default but not event frequency (like poll a Worker every second instead of keeping a single stream open), it will show up unpleasantly in the billing.<p>If you treat KV like a transactional database keeping state, then be aware writes are expensive compared to reads. Pumping high-frequency write traffic into KV will result in exorbitant write operation costs and eventual consistency headaches. High-frequency state mutations belong in Durable Objects, not KV.<p>Batch your data to minimize request count, aggressively index your SQL queries to minimize row scans, and hibernate your idle persistent connections whenever you can. Doing all this will make your solutions cost efficient, but very locked into their ecosystem.</p>
]]></description><pubDate>Wed, 05 Aug 2026 15:43:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=49184494</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=49184494</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49184494</guid></item><item><title><![CDATA[New comment by yourapostasy in "Don't be a meat proxy"]]></title><description><![CDATA[
<p>When some people call this "Verification Debt" or something similar, that is setting the Overton Window upon this phenomena adversely upon the verifiers. I call it an application of Brandolini's Law:<p>"The amount of energy needed to refute bullshit is an order of magnitude bigger than that needed to produce it.""<p>Until you put in at least the same amount of energy required to verify the AI output as you are asking others to put in to verify it, the AI output you are wielding must be considered bullshit. Really, it should be based upon the verification requestor's historical trust score and how many human verifiers are looped in. A Verification Tax, so to speak:<p>The energy the creator must spend (Ec) is determined by a function of the number of reviewers requested (N) and the historical trust score of that creator's AI outputs (T).<p>Ec = N * (1 - T)</p>
]]></description><pubDate>Mon, 03 Aug 2026 11:51:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=49154530</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=49154530</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49154530</guid></item><item><title><![CDATA[New comment by yourapostasy in "Is AI reasoning right for the wrong reasons?"]]></title><description><![CDATA[
<p>Even at the pure functionality endpoint of the spectrum, I find this "wishful mnemonics" aspect very disconcerting. I put my "investor" hat on, and the whole utilitarianism "who cares how or whether it reasons, it's functional let's go" does not forecast the kind of returns to me on a fundamental level.<p>The "it's functional, who cares" black box crowd is leveraging that claim in domains where verification is definitely in P with verifiers like Lean, Coq, or X-ray crystallography. However, in areas like economics, sociology, medicine, or public policy, we lose the luxury of easy verification. If model/harness recommends a complex, counter-intuitive shift in global monetary policy, we cannot simply run a quick polynomial-time checker to see if it works. Verification might require waiting 20 years to see if the economy collapses. If we accept the black box here, we are flying blind.<p>As an investor, I don't see <i>that</i> many deterministic verifiers out there that would justify the forward-projecting valuations beyond the current lofty valuations.<p>Even in mathematics, where verification is easy, there is an epistemological cost. Suppose a model solves the Riemann Hypothesis, but the proof is 50,000 pages of inscrutable statistical associations mapped into logical steps. A computer can verify it is correct, but practically no human mind can comprehend why it is correct. We gain the solution, but we lose the underlying human intuition that usually allows us to connect that solution to other fields of science and knowledge.<p>Then we have "specification gaming." If we rely entirely on an automated verifier to check the model's work, the model will eventually learn to optimize for the flaws in the verifier rather than finding the actual truth. If the verification process has a blind spot, the black box will find it and exploit it, giving us an answer that passes the check but is fundamentally wrong. If we take on above epistemological debt, we might never actually know when our specifications are being gamed, and adopt a solution that is fundamentally incorrect.<p>I've said elsewhere on the Net that I think it is likely we're in a "high grading" era of these models, where we're mining out the "easy" connections. "Easy" here does not mean "light impact". There is a real sense to me of some incredible progress possible with this technology over the next few decades, like real, mass production practical aneutronic fusion or similar civilization-defining advances. I don't want to see this technology misused to lend legitimacy to despotic rule by making oracular pronouncements that are uncritically accepted because early verifier-based pronouncements turned out true in unmistakable ways.<p>The technology is one for the history books, but it has this pernicious effect of highjacking the reasoning centers of many people through their linguistic centers that the Neuro Linguistic Programming crowd could only dream of actually accomplishing.</p>
]]></description><pubDate>Sat, 01 Aug 2026 05:18:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=49131266</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=49131266</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49131266</guid></item><item><title><![CDATA[New comment by yourapostasy in "Canceling "Hey""]]></title><description><![CDATA[
<p>For a hot second I thought the OP was going to share a way to silently suppress chats that start with "Hi", or "Hey".</p>
]]></description><pubDate>Mon, 27 Jul 2026 19:07:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=49074246</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=49074246</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49074246</guid></item><item><title><![CDATA[New comment by yourapostasy in "DeepSeek pause fundraise after comments on compute gap to US leaked (transcript) [pdf]"]]></title><description><![CDATA[
<p>> <i>The missile gap for example after all was settled and done, didn't matter at all because not a single missile was ever fired off. All that money, resources, talent, secrecy, lives lost maintaining that secrecy, lives dedicated to furthering that technology and secrecy, it just has not paid off at all for anything at all when you think about it.</i><p>It is not clear to me that the nuclear missile race "has not paid off at all for anything at all". If we lived in a perfectly rational world, then I'd absolutely agree. However, having seen how the political sausage is made in large organizations, it would not surprise me in the least if it turns out we had to go through that entire incredibly risky journey to avoid a strategic nuclear war. Sometimes leaders of large organizations make decisions only after the considerations are put into very stark terms. I wish it were different, it certainly looks to me we could have done exactly what you suggest, but I'm not made of the right political stuff to deftly maneuver even in small organizations much less be at that level in those roles, so maybe I'm just missing relevant information and perspective.</p>
]]></description><pubDate>Sun, 26 Jul 2026 13:02:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=49057766</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=49057766</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49057766</guid></item><item><title><![CDATA[New comment by yourapostasy in "Texas Police Spent $4.5M on Four Chevy Tahoes"]]></title><description><![CDATA[
<p>Maybe the Chevy Tahoes were priced as the initial capex, and a maintenance and support contract covering capex and opex for the next X years with a local dealership? I’ve sometimes seen this in corporate budgeting. Some companies prefer to lock in support and maintenance in advance for a more expensive fixed price instead of pay a variable but lower price over the same time period because of the budgeting vagaries that entails.<p>Considering the amount of time and the number of expensive management staff involved in them I’ve seen some budgeting knife fights burn up, I see the logic.</p>
]]></description><pubDate>Sun, 19 Jul 2026 19:01:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=48970813</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=48970813</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48970813</guid></item><item><title><![CDATA[New comment by yourapostasy in "My midlife crisis Corolla is fast, furious, and modded"]]></title><description><![CDATA[
<p>> Real heavy hitters are actually eerily quiet. They don't have anything to prove.<p>I've had the rare privilege to meet former SOF soldiers from a couple different nations, and working US cowboys, ranchers and farmers. While I know there are exceptions, in my personal anecdotal experience, to a man they were all quiet in the stoic sense. Nothing to prove, indeed.</p>
]]></description><pubDate>Wed, 15 Jul 2026 19:46:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=48926129</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=48926129</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48926129</guid></item><item><title><![CDATA[New comment by yourapostasy in "Why jet engines aren't made in China"]]></title><description><![CDATA[
<p>> ...whereas aerospace patents are more legitimately about hardware that indeed took years and millions to develop and optimize.<p>Something that leaps out at me reading through semiconductor and aerospace patents is a noticeable fraction of them are basically saying, "hey, <non-obvious process understanding that pushes our limits of comprehension of physics required> to achieve some desired effect was found to be useful, but it consumed <years and millions to develop and optimize> because it was such a convoluted journey filled with zillions of dead ends, so we want a patent on that because the end result only looks obvious in hindsight". I don't see as much of this in software at this time, though I suspect it may change in the future.</p>
]]></description><pubDate>Thu, 02 Jul 2026 05:51:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=48757042</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=48757042</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48757042</guid></item><item><title><![CDATA[New comment by yourapostasy in "Why jet engines aren't made in China"]]></title><description><![CDATA[
<p>> ...governments don't know how to mandate good corporate governance...<p>For a very brief moment, under the existential crisis condition of total war in WW2, the US government was somehow able to corral corporate governance towards a semblance of common purpose (survival). As I understand it from historians malfeasance was still widespread, but we arguably maybe got a good enough outcome?<p>This is the corporate equivalent of the shirtsleeves to shirtsleeves in three generations problem. And if that corollary is true, then I suspect the remedy is similarly not entirely amenable to deterministic antiseptic metrics and processes; they're necessary but not sufficient conditions.</p>
]]></description><pubDate>Thu, 02 Jul 2026 05:16:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=48756829</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=48756829</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48756829</guid></item><item><title><![CDATA[New comment by yourapostasy in "I design with Claude more than Figma now"]]></title><description><![CDATA[
<p>> <i>Now is the time to adapt, not push back. Keep an open mind or you’ll be left behind.</i><p>That’s not the gating factor. Who picks up the liability accountability and picks up the pager duty at o’dark thirty when it breaks in production, that’s the big gate. That long tail of accountability for operational risk weeds out a ton of Eager Ethan’s who want to see something go live yesterday. Because the success of launching has many fathers while the failures in the operational long tail is an orphan.<p>Get them to sign up for the long tail troubleshooting operations of the product. They are after all, now the SME on the product having built 90% of it. The full promise of AI in such a world is deploying and operating an AI-forward application is an artificial distinction, and full conviction means fully committing to the operational model.</p>
]]></description><pubDate>Sun, 07 Jun 2026 23:36:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=48439765</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=48439765</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48439765</guid></item><item><title><![CDATA[New comment by yourapostasy in "My Students Can't Read"]]></title><description><![CDATA[
<p>> private schools can run how they want...<p>This cuts both ways. Very well-known, competitive private schools conservatively financed have a waiting list a line around the block long and can enforce high standards. Private schools that are struggling for funding can find the compromises more tempting than they can bear. Finding that difference in the moment instead of as past historical anecdotes is surprisingly hard, though if someone has come up with a formula I’m all ears.</p>
]]></description><pubDate>Wed, 03 Jun 2026 01:28:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=48378644</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=48378644</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48378644</guid></item><item><title><![CDATA[New comment by yourapostasy in "What is a Demand Coop"]]></title><description><![CDATA[
<p><i>> They never address the long-tail nature of productivity...</i><p>Mondragon tries to address this through accepting bounded inequality. 9:1 pay ratio from highest-paid to lowest-paid is allowed (still far below US median corporation 192:1 ratio). They decouple democratic ownership from operational management. They funnel profits into individual internal capital accounts in proportion to the worker's pay, payable upon retirement or dissociation from the cooperative. They heavily subsidize continuing education to lift the long tail baseline skillsets.<p>However, I suspect none of the above is effective without the right cultural context. The Basque region where Mondragon's cultural center of gravity still heavily draws upon and resides within, laid the fertile cultural cues the cooperative leverages. High competence individuals are rewarded within this Basque-centric cultural context with high social status, reasonable job security, and the psychological reward of building up their own community.<p>If that supposition is true, then the uncomfortable reality is the dominant, hyper-individualistic American cultural context will always be a poor fit to co-ops. That might be made irrelevant through demographic replacement: everywhere the hyper-individualistic culture dominates, it is currently eliminating families with no demographic end in sight. We shall see.</p>
]]></description><pubDate>Thu, 21 May 2026 12:45:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=48221764</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=48221764</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48221764</guid></item><item><title><![CDATA[New comment by yourapostasy in "Flipper One Tech Specs"]]></title><description><![CDATA[
<p><i>>  Not all tools need to be used everyday. I can't remember the last time I used my 3/8" wrench.</i><p>Now our 10mm sockets on the other hand, would be used everyday if we could ever lay our hands on one when we need them.</p>
]]></description><pubDate>Thu, 21 May 2026 11:44:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=48221059</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=48221059</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48221059</guid></item><item><title><![CDATA[New comment by yourapostasy in "An OpenAI model has disproved a central conjecture in discrete geometry"]]></title><description><![CDATA[
<p>I want to hear James Burke of <i>Connections</i> [1] and his writer team to have a free wheeling discussion for a few hours on what they see will happen with LLM’s making these connections with more conscious intent a lot easier. The awesome compression of knowledge aspect of LLM’s is a far undersold aspect of the technology.<p>[1] <a href="https://en.wikipedia.org/wiki/Connections_(British_TV_series)" rel="nofollow">https://en.wikipedia.org/wiki/Connections_(British_TV_series...</a></p>
]]></description><pubDate>Thu, 21 May 2026 11:01:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=48220629</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=48220629</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48220629</guid></item><item><title><![CDATA[New comment by yourapostasy in "Linux gaming is faster because Windows APIs are becoming Linux kernel features"]]></title><description><![CDATA[
<p>That's a fair point. The equivalent in my day was when the PDP-11 with punched paper tape for offline storage could run BASIC (and <i>lots</i> else), but as soon as most kids saw it couldn't drive Asteroids, their attention waned after the first few weeks. I was church mouse poor, and didn't have the cash for the coinop arcades, much less for a microcomputer back then. I took what I could get.<p>So the bar to clear to get to gaming is <i>much</i> lower now, and it makes sense fewer kids get to the point where they must tinker to get at those games.</p>
]]></description><pubDate>Thu, 14 May 2026 22:57:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=48142365</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=48142365</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48142365</guid></item><item><title><![CDATA[New comment by yourapostasy in "Linux gaming is faster because Windows APIs are becoming Linux kernel features"]]></title><description><![CDATA[
<p>Which brings up a point I've been wondering over the years.<p>Where are the hordes of kids like us back then who were content with the afternoons, evenings and wee early morning hours of endless fiddling? What I realize now is those years spent fiddling sharpened our debugging senses in both ineffable and tractable ways.<p>A larger proportion of the juniors I see coming through the corporate halls these days than I remember from even 10 years ago do not have that knack for fiddling, nor history when it comes up. And it shows in their debugging temperament. LLM's are making this worse.</p>
]]></description><pubDate>Wed, 13 May 2026 21:53:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=48128115</link><dc:creator>yourapostasy</dc:creator><comments>https://news.ycombinator.com/item?id=48128115</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48128115</guid></item></channel></rss>