<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: captainbland</title><link>https://news.ycombinator.com/user?id=captainbland</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 19 Aug 2026 17:36:18 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=captainbland" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by captainbland in "Universal Health Coverage Could Save $1T and 114k Lives a Year, Yale Study"]]></title><description><![CDATA[
<p>This seems a lot like the parable of the broken window but for inefficiency rather than destruction per se.</p>
]]></description><pubDate>Mon, 17 Aug 2026 18:11:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=49335230</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49335230</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49335230</guid></item><item><title><![CDATA[New comment by captainbland in "Why does Opus 5 feel worse to work with?"]]></title><description><![CDATA[
<p>Bit of a tangent but at work we have GitHub Copilot and the VSCode harness is somehow night and day better than whatever happens in the IntelliJ plugin. Aside from having better features, for some reason prompts seem to be cheaper as well.</p>
]]></description><pubDate>Fri, 14 Aug 2026 17:53:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=49302259</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49302259</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49302259</guid></item><item><title><![CDATA[New comment by captainbland in "Bluesky's active user base is shrinking as its focus expands beyond the app"]]></title><description><![CDATA[
<p>Will it though? Where mastodon is much more distributed, bluesky/ATProto use is highly concentrated on bsky.app</p>
]]></description><pubDate>Wed, 12 Aug 2026 12:09:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=49271142</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49271142</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49271142</guid></item><item><title><![CDATA[New comment by captainbland in "As AI eats the web, the internet’s collective memory is disappearing"]]></title><description><![CDATA[
<p>The internet might not be dead, but large parts of it are gangrenous and necrotic</p>
]]></description><pubDate>Tue, 11 Aug 2026 14:06:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=49258641</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49258641</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49258641</guid></item><item><title><![CDATA[New comment by captainbland in "Amazon backs power plant that may become top source of US climate pollution"]]></title><description><![CDATA[
<p>Unfortunately opinions don't change the reality of physical processes.</p>
]]></description><pubDate>Mon, 10 Aug 2026 22:42:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=49250901</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49250901</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49250901</guid></item><item><title><![CDATA[New comment by captainbland in "Muse Glimmer: 30B-parameter model optimized for always-on local agent workflows"]]></title><description><![CDATA[
<p>To be honest the main issue with meta has never been around open/closed software. They've also done react, Cassandra and some other bits. But this, like their open weights is like a feather pressing down on the scale compared to things like promoting genocide in Myanmar, enabling Cambridge analytica, creating a huge closed ecosystem which dominate(s/d) local community communication, mandating doxxed communication, trying to replace actual community communication with algorithmic nonsense etc.</p>
]]></description><pubDate>Mon, 10 Aug 2026 12:40:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=49242860</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49242860</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49242860</guid></item><item><title><![CDATA[New comment by captainbland in "“Code was never the hard part” is an insult to all programmers"]]></title><description><![CDATA[
<p>I think "code isn't the bottleneck" is often accurate though in organisations with high friction processes.</p>
]]></description><pubDate>Sun, 09 Aug 2026 09:33:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=49229864</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49229864</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49229864</guid></item><item><title><![CDATA[New comment by captainbland in "Born Against, or why hobby programming communities are against LLM usage"]]></title><description><![CDATA[
<p>I think making water expensive because of the fact that it's essential would be problematic at best</p>
]]></description><pubDate>Fri, 07 Aug 2026 07:39:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=49207095</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49207095</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49207095</guid></item><item><title><![CDATA[New comment by captainbland in ""Clean" Code, Horrible Performance (2023)"]]></title><description><![CDATA[
<p>I think single dynamic dispatch is one thing but ends up reasonably well optimised by modern compilers, especially the JVM. I think most code written since the 2010s prefers the composition over inheritance pattern for the most part so tends to use interfaces rather than concrete base classes.<p>That said, double dispatch as in the visitor pattern is often too hard to analyse for optimisation and I think humans frequently get a bit lost with it as well. Fortunately pattern matching is doing away with it. I think it's one of these gang of four patterns that has a lot of people scratching their heads and wondering if the open/closed principal is that worth sticking to if this is the outcome.</p>
]]></description><pubDate>Wed, 05 Aug 2026 07:09:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=49179548</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49179548</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49179548</guid></item><item><title><![CDATA[New comment by captainbland in "Only 8.9% of sites block AI crawlers, but 94.8% are never cited in AI answers"]]></title><description><![CDATA[
<p>I'd be surprised if it were anything other than just an LLM only equivalent of Gemma some 4B param model, they can't be spending much money on it because each query essentially needs to be cheaper than the ad revenue per search.</p>
]]></description><pubDate>Sun, 02 Aug 2026 13:06:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=49144291</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49144291</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49144291</guid></item><item><title><![CDATA[New comment by captainbland in "Is AI reasoning right for the wrong reasons?"]]></title><description><![CDATA[
<p>The discussion on filler tokens is interesting, but is it not just the case that these filler tokens end up being essentially substituted stand-ins for words we understand with all the same relationships encoded in the model and attention? i.e. is it not the case they just "read weird"?<p>In one of the articles on this topic they state:
>  To further show that trace accuracy is only loosely connected to solution accuracy, we then train models on noisy, corrupted traces which have no relation to the specific problem each is paired with, and find that not only does performance remain largely consistent with models trained on correct data, but in some cases can improve upon it and generalize more robustly on out-of-distribution tasks<p>which actually maps somewhat to regularisation techniques in image processing where you might add noise to an image or drop data to make the model more robust to changes.</p>
]]></description><pubDate>Fri, 31 Jul 2026 16:35:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=49125379</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49125379</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49125379</guid></item><item><title><![CDATA[New comment by captainbland in "The Maxwell Conjecture Is False (GPT 5.6 Sol)"]]></title><description><![CDATA[
<p>This one is interesting as it's been hand verified. There was a recent proof that inadvertantly "proved" the collatz conjecture by triggering a bug in LEAN: <a href="https://infosec.exchange/@0xabad1dea/117002106099986943" rel="nofollow">https://infosec.exchange/@0xabad1dea/117002106099986943</a></p>
]]></description><pubDate>Fri, 31 Jul 2026 15:36:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=49124448</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49124448</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49124448</guid></item><item><title><![CDATA[New comment by captainbland in "Advancing the price-performance frontier with GPT‑5.6"]]></title><description><![CDATA[
<p>To be fair we don't really know in terms of prices what's real and what's just investor subsidised attempts at market capture at this point. It could well be OpenAI's attempt to drown Anthropic while they've got the halo product if they feel they've got deeper pockets.</p>
]]></description><pubDate>Thu, 30 Jul 2026 17:43:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=49113219</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49113219</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49113219</guid></item><item><title><![CDATA[New comment by captainbland in "A.I. companies are recruiting electricians and carpenters by the thousands"]]></title><description><![CDATA[
<p>People are already doing it to some extent, especially the sort of technical non-programmer crowd. A member of my family was even having a (now pretty out of date) version of chatGPT spit out VBA macros for them with precisely no idea what they were doing, but the result worked well enough for them. Now I know lots of programmers will scoff at that but when you see what the big models can do today in terms of breaking down a fairly large task and executing on all the steps with minimal need to stop it, including going to existing docs/web pages etc. to gather info, correcting itself, even troubleshooting issues and correcting them, it strikes me as hard to see a future where programming skill as such remains considered scarce in the market.</p>
]]></description><pubDate>Thu, 30 Jul 2026 01:21:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=49105101</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49105101</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49105101</guid></item><item><title><![CDATA[New comment by captainbland in "A.I. companies are recruiting electricians and carpenters by the thousands"]]></title><description><![CDATA[
<p>The data centre build out is one thing but I'd be surprised if they weren't having a few generate training data for robots as well at this point.</p>
]]></description><pubDate>Thu, 30 Jul 2026 01:02:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=49104993</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49104993</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49104993</guid></item><item><title><![CDATA[New comment by captainbland in "Silicon Valley has a science fiction problem"]]></title><description><![CDATA[
<p>We are pleased to announce that we have two billion users of our platform The Torment Nexus as inspired by the hit scifi book "please do not create the torment nexus"<p>The other fiction people have derived a problem from is Game of Thrones. Its brand of "might is right" political realism in the context of warring kingdoms was narratively interesting but a poor choice for the voting public to start relating to.</p>
]]></description><pubDate>Sat, 25 Jul 2026 22:17:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=49052237</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49052237</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49052237</guid></item><item><title><![CDATA[New comment by captainbland in "The whole premise of checking for human writing is daft"]]></title><description><![CDATA[
<p>> A person can type 3,000 words by hand and have no thought pass through their head beyond the need to finish before lunch.<p>I get this is tongue in cheek, but it's so wrong that it needs pointing out. Even if that is a thought in their head, they clearly have to have others in order to produce the text.<p>But in general, checking that a human wrote it is economic as much as anything else: attention is currency limited by time and energy, AI effort is abundant and therefore low value, human effort is less abundant and therefore more valued. Pyrite can look pretty but it's not what people want.</p>
]]></description><pubDate>Sat, 25 Jul 2026 16:44:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=49049124</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49049124</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49049124</guid></item><item><title><![CDATA[New comment by captainbland in "Geekbench 7"]]></title><description><![CDATA[
<p>To be honest I always got the sense that it had a sort of pro-Apple bias that doesn't seem to be reflected in real world applications.</p>
]]></description><pubDate>Fri, 24 Jul 2026 20:01:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=49040925</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=49040925</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49040925</guid></item><item><title><![CDATA[New comment by captainbland in "The LLM Critics Are Right. I Use LLMs Anyway"]]></title><description><![CDATA[
<p>I think you can use them critically. Probe the code, see how it behaves when tweaked, can you break it etc.? without slowing you down too much. And in doing so you probably learn 80% of what you would have if you'd written it yourself by hand.<p>But then there are definitely cases where LLMs are slower and less reliable than someone using tooling by hand, especially like deterministic refactoring operations can be done close to instantly if you already know what needs to be done and how to do it.</p>
]]></description><pubDate>Fri, 17 Jul 2026 09:29:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=48945136</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=48945136</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48945136</guid></item><item><title><![CDATA[New comment by captainbland in "G# – A modern .NET language with Go, Kotlin, and Swift ergonomics"]]></title><description><![CDATA[
<p>I'm less familiar with Swift but from a design point of view Go and Kotlin have really different ergonomics. Kotlin leans in really hard to creating DSLs etc. whereas Go avoids all that stuff like the plague. To me this makes the tag line a little confusing, like what does this imply for the design of this language?</p>
]]></description><pubDate>Thu, 16 Jul 2026 04:51:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=48930481</link><dc:creator>captainbland</dc:creator><comments>https://news.ycombinator.com/item?id=48930481</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48930481</guid></item></channel></rss>