<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: weitendorf</title><link>https://news.ycombinator.com/user?id=weitendorf</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 16 Jun 2026 02:26:22 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=weitendorf" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by weitendorf in "TorchCodec 0.14: HDR Video Decoding for CPU and CUDA, and Fast Wav Decoder"]]></title><description><![CDATA[
<p>> TorchCodec now has a dedicated WavDecoder for decoding WAV files. It bypasses FFmpeg entirely and reads WAV data directly, resulting in significantly faster decoding.<p>I'm working in this area recently and very keen to use this given the claimed performance benefits, but I tried all your links and didn't see any actual performance numbers. Do you have any to share?<p>IMO a fair performance benchmark for those not tied to the full pytorch stack would have ffmpeg and the wav already loaded into memory before execution. Given that torchcodec relies on the user-supplied ffmpeg installation I suspect that may not be the case for ffmpeg already, at least not by default.<p>I understand why meta wouldn't want to do this (then you are inevitably distributing exploitable security vulnerabilities in pytorch, because ffmpeg will probably always have them) but I've been statically linking fmpeg and keeping the binary in-memory while still using separate processes for different batches of audio, with I/O through UDS between the parent and ffmpeg; then the parent does VAD on the pcm on CPU before any further inference. My implementation for static linking is similar to the pattern in <a href="https://github.com/amenzhinsky/go-memexec#static-binary" rel="nofollow">https://github.com/amenzhinsky/go-memexec#static-binary</a> - would be interesting to see if this is possible in the pytorch/python ecosystem, or maybe it's already been done.</p>
]]></description><pubDate>Mon, 15 Jun 2026 11:51:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=48539957</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48539957</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48539957</guid></item><item><title><![CDATA[New comment by weitendorf in "Did Anthropic ask for this?"]]></title><description><![CDATA[
<p>Work on distributed/federated learning. The main doomsday scenario is exactly what Anthropic is enabling.<p>RSI within a top-down, concentrated power structure creates an unstable equilibrium and will instantly devolve into an epic power struggle. If you control the company/computers/military with the one most powerful thing, you control everything else. It will probably just be seized but then you instantly become a target to all the other dispossessed/scared/opportunistic people who think they would do a better job than you, or just want it. It’s a stupid power fantasy to think that people with guns and will just let you reign from above as some kind of benevolent researcher-king with absolute, unaccountable control over the economy. Even worse if there’s mass joblessness and nothing else keeping most people busy.<p>If we can build a horizontal, federated (not the performative kind like Bluesky, has to actually be performance competitive and distributed without jank) intelligence on a mix of commodity and specialized hardware - which BTW is exactly what even Anthropic would have to work with too, a bunch of datacenter gpus of different generations + traditional compute + edge compute/network devices, maybe some ASICs, then finally consumer devices and webgpu - then there is much less risk that AI will be used to concentrate power or amplify bad actors (without their actions being immediately reacted against by the overwhelmingly larger set of good or neutral-with-something-to-lose actors).<p>The main barrier to federated learning is figuring out how to economically structure this, it has to have a self-funding mechanism that is hopefully more grounded in actual value than something like crypto where it’s purely forward-looking demand (/speculation) or artificial/enforced scarcity. Also it obviously has to be secure, but the risks are different vs companies like Anthropic that are trying to guard their IP - in this case it’s mostly just protection from bad actors trying to pollute training data in a way that would only be noticed after it’s expensive to fork away from, plus just generally using it as a malware distribution or data collection mechanism.</p>
]]></description><pubDate>Mon, 15 Jun 2026 05:04:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=48536834</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48536834</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48536834</guid></item><item><title><![CDATA[New comment by weitendorf in "Rio de Janeiro's "homegrown" LLM appears to be a merge of an existing model"]]></title><description><![CDATA[
<p>Unrelated but I’ve been putting off learning about post-abliteration technique and want to use it for an upcoming open source “retraining” project I have on my backlog. I’m not interested in the refusal layers though, more like deep fine tuning but in a way that might let me prune out or consolidate layers, if that makes sense? Do you have any pointers or links to the current SOTA in this area?<p>I guess I’m looking for a kind of bulk/sticky dropout (which was in fashion way back when I studied DNN in school).</p>
]]></description><pubDate>Mon, 15 Jun 2026 04:35:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=48536644</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48536644</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48536644</guid></item><item><title><![CDATA[New comment by weitendorf in "Cybersecurity researchers aren't happy about the guardrails on Anthropic's Fable"]]></title><description><![CDATA[
<p>Yes, this is the problem. They are business interests of Anthropic and have nothing to do with “safety”</p>
]]></description><pubDate>Thu, 11 Jun 2026 01:18:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=48485098</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48485098</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48485098</guid></item><item><title><![CDATA[New comment by weitendorf in "I design with Claude more than Figma now"]]></title><description><![CDATA[
<p>You should note that Claude Design is most likely a DPO->PPO->Actor-Critic bootstrap play: <a href="https://arxiv.org/abs/2305.18290" rel="nofollow">https://arxiv.org/abs/2305.18290</a> / <a href="https://en.wikipedia.org/wiki/Proximal_policy_optimization" rel="nofollow">https://en.wikipedia.org/wiki/Proximal_policy_optimization</a> / <a href="https://spinningup.openai.com/en/latest/algorithms/sac.html" rel="nofollow">https://spinningup.openai.com/en/latest/algorithms/sac.html</a><p>It's much harder to RL out design taste because it's not self-grounding, and human labelers have no real skin in the game, so this (having a human with a vested outcome in the process directing a model's work) is the best way to get LLMs better at design/"taste"/aesthetic judgment themselves. We were working on the same thing 7 months ago and then I realized that winning over designers to do this would be a huge uphill battle setting up an inevitable fall from grace later on.<p>What makes me most suspicious of Claude Design is that when you disconnect and reconnect later, it loses context and nags you that the product doesn't work like that. Bullshit. It's at best an anti-abuse/implementation detail (to keep you from launching 10 at once and coming back to them later) or product shortcoming that just so happens to be optimized for keeping you from continuing your design in better tools than theirs for the inevitable followups.<p>It's great for one shots and it makes sense when you're trying to build a vertical product development stack like Anthropic but I'm disappointed it feels more like a tool optimized for keeping you in <i>their</i> product than for what you're working on. If a company other than Anthropic had shipped this - it's not that hard to build a visual self-eval loop, just use Chrome Devtools Protocol to run headless chrome and take screenshots -> feed into a judge LLM for feedback -> continue - I don't think it would really have seen much adoption.<p>That said, AI trained on Actor-Critic with a tight human feedback loop definitely seems like the right approach to solving the problem, just not something I want to spend my time training for someone else unless I can do so with higher "entropy" ie high parallelism/optionality</p>
]]></description><pubDate>Sun, 07 Jun 2026 07:26:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=48432687</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48432687</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48432687</guid></item><item><title><![CDATA[New comment by weitendorf in "Three of our worst VC stories"]]></title><description><![CDATA[
<p>It’s not cheaper to run Claude in your own GPUs rather than the $200/mo for certain workloads. For a large portion of what I work on, the bottleneck is my time, not tokens. You certainly <i>could</i> throw more tokens at it but if you need it to work a certain way for certain reasons, and your plan/goals are beyond the scope of what the top-capability models can do, then throwing them at the problem just bogs you down in extra cruft or reviews/iteration that you could more effectively do being the primary driver of the work.</p>
]]></description><pubDate>Sun, 07 Jun 2026 01:14:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=48430813</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48430813</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48430813</guid></item><item><title><![CDATA[New comment by weitendorf in "Three of our worst VC stories"]]></title><description><![CDATA[
<p>This is what I’ve been doing. I’m not even against external funding, I just see it as instrumental to the ultimate goal of building a sustainable business. Venture capital is basically a super high interest loan so it’s only something you want to take when and where it can be effectively deployed.<p>Most other founders/business owners and investors I know don’t see that as a controversial statement (that it makes no sense to see <i>access</i> to capital through a scarcity mindset, when it is factually accessible) but because most customers or potential employers aren’t one of those, it’s been a problem because this isn’t what you’re “supposed to do” and so they read into it from a social/legitimacy angle.<p>Regardless, it’s quite rewarding IMO and I highly suggest it to people with the means to pursue that path. I don’t see why people get so worked up on the whole VC thing, at the end of the day it’s just lending. Having dabbled in angel investing on the end you get a lot of people lining up for what they clearly perceive as unsecured loans or a social signal and on the other so many people get caught up in the dynamic of dangling said unsecured loans (when I first started it felt like some of the investors reaching out to me were just doing it to boss me around or something, like sir you can clearly see I started this two months ago and <i>you</i> dm’d me on LinkedIn to chat, I don’t need your money).<p>IMO most good founders/investors are credibility-maxxing but because of the social dynamics and moral hazards inherent with spending OPM you get weird other behavior</p>
]]></description><pubDate>Sun, 07 Jun 2026 01:10:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=48430791</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48430791</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48430791</guid></item><item><title><![CDATA[New comment by weitendorf in "Claude Opus 4.8"]]></title><description><![CDATA[
<p>There are basically two tiers of "Chinese models" in this context, the "edge" sized ones with ~30B parameters or less, and the big ~1T models that can basically only run in the datacenter.<p>I don't think it's as simple as saying China's hosting is subsidized, they have generally cheaper electricity and labor costs than in the US and don't have access to the top tier models, and a large internal market where the big models are the best thing they can run with what they have. So obviously they max out on their top models (which are trained with their hardware market in mind, not ours) and get the economy of scale from that, and can run generally the same hardware for less money than in the US because<p>The edge models are very cheap to run and can do so on inexpensive hardware. They are like 95% cheaper to run than Haiku, so the math is in their favor for certain batch workloads. Most people just run the models for themselves when they do that without making it available on openrouter or whatever, because you can just provision a gpu node and use it as needed, and it's not that expensive to run this family of models.<p>Is your problem that you want to call Chinese models hosted in the US because you're worried about the data handling?</p>
]]></description><pubDate>Thu, 28 May 2026 19:07:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=48313897</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48313897</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48313897</guid></item><item><title><![CDATA[New comment by weitendorf in "Claude Opus 4.8"]]></title><description><![CDATA[
<p>It's through my startup, so both I guess. Generally I find my bottleneck to be attention and focus, and the opportunity cost of not going back to work at my prior employers absolutely dwarfs the amount of money I spend on tools, so it's not hard for me to justify spending $200/mo on something I use every day that makes me more productive and generally removes bullshit from my life.<p>At my prior job there was still what felt like a strong enough correlation between my actual performance and my pay that I don't think I would have had a hard time justifying the expense there either; now I absolutely don't. With the current state of the models, it's baffling to me to hear about professional software developers planning their work around their $20/mo subscription's quotas.<p>Obviously it's more complicated than more tokens = more productive, but I see them less like SaaS and more like gasoline, where if I run out or need more to do what I'm doing, as long as I'm not being wasteful, I just buy more. Why would I waste a day walking 30 miles by foot when I can just pay $5 for gasoline and drive?</p>
]]></description><pubDate>Thu, 28 May 2026 18:54:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=48313708</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48313708</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48313708</guid></item><item><title><![CDATA[New comment by weitendorf in "Claude Opus 4.8"]]></title><description><![CDATA[
<p>I pretty strongly feel the opposite way. Granted I have not used deepseek enough to “know” their model idiosyncrasies as well as Anthropic, so there is a partial skill issue. But I just find it really hard to justify using a less powerful model while I work.<p>The most I’ve ever spent in a month extra on API tokens for my own work is $200, and I pay for the $200/mo Claude. I use these models quite a lot, though not idly (I usually just walk around and do other stuff until I know how im going to approach the next set of problems). So it costs me about $3000/year to get as much as I want of the best model available. Already that seems low enough to not be worth stressing out too much about optimizing it, because it feels like an indisputable good value, and trying to save money with a less powerful model would be optimizing for a $1000-$2000 saving at the expense of a large portion of my work taking longer or being more frustrating and iterative.<p>That’s not a flex or anything, I get that in other countries $3000/yr is a lot of money for a software developer and also a lot of people would perhaps rationally be better off doing X% worse at work or spending Y% more time on tasks to save $Z, if their productivity improvements didn’t translate to more salary. Otherwise if your performance has more upside I really do think that the smartest models are better with the current pricing scheme. Deepseek and the other Chinese models spend a LOT of time thinking, and tend to be much more jagged (benchmaxxed) in performance. How can dealing with that over an entire year be worth $2k?<p>The only situation I can think of where sacrificing my own time/performance to save on inference is batch compute (of course, $1k vs $100k is different from $30 vs $3k) or work where the tier 2 models have crossed the “good enough” threshold. But I think Opus is not even close to that threshold generally yet. As it gets smarter I, and I think most others probably, just try to do harder things faster and hit the next wall.</p>
]]></description><pubDate>Thu, 28 May 2026 17:56:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=48312827</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48312827</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48312827</guid></item><item><title><![CDATA[New comment by weitendorf in "Why the smart home bubble popped"]]></title><description><![CDATA[
<p>Working on it, they all already expose a tool interface, you just have to know where to look for it and how to use it!</p>
]]></description><pubDate>Tue, 26 May 2026 04:47:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=48275114</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48275114</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48275114</guid></item><item><title><![CDATA[New comment by weitendorf in "Magnifica Humanitas"]]></title><description><![CDATA[
<p>A formative moment for me was reading Richard Stallman's writing on the GNU website and seeing him quote [0] Rabbi Hillel [1]:<p>"If I am not for myself, who will be for me? If I am only for myself, what am I? And if not now, when?"<p>This inspired me to seek out more about Rabbinic Judaism and its theology more deeply, and I found the language and analogies concerning the idea of "repairing the world" (which you referenced, but which I think at first glance aren't necessarily something most people would identify as a specific core doctrinal theme) particularly inspiring [2]. To me it's frankly beautiful and something I recommend anybody interested in metaphysics or ethics/morality looking into; it also ties into the Kabbalah. IMO this aspect of Jewish theology deserves to be more widely known because it's something all of us can learn from.<p>[0] <a href="https://www.gnu.org/gnu/thegnuproject.html" rel="nofollow">https://www.gnu.org/gnu/thegnuproject.html</a><p>[1] <a href="https://en.wikipedia.org/wiki/Hillel_the_Elder" rel="nofollow">https://en.wikipedia.org/wiki/Hillel_the_Elder</a><p>[2] <a href="https://en.wikipedia.org/wiki/Tikkun_olam" rel="nofollow">https://en.wikipedia.org/wiki/Tikkun_olam</a></p>
]]></description><pubDate>Mon, 25 May 2026 18:43:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=48270190</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48270190</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48270190</guid></item><item><title><![CDATA[New comment by weitendorf in "Memory has grown to nearly two-thirds of AI chip component costs"]]></title><description><![CDATA[
<p>It would require much more than a couple of queries per day, I want to basically do bulk ingestion and search/evaluation/integration across tens of thousands of videos and software projects (if it were cheap enough and smart enough). It would basically be setting up and operating a pretty large data ingestion and coding agent pipeline, which I would want to itself be mostly automated.<p>It’s ok if you don’t want to do the same kind of thing but I find it weird how dismissive so many people get about wanting to use LLMs for large projects, or how anybody who says they’re using them for these kinds of things (I’m doing similar for other stuff) gets challenged on what they’re doing it for.</p>
]]></description><pubDate>Mon, 25 May 2026 00:48:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=48262481</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48262481</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48262481</guid></item><item><title><![CDATA[New comment by weitendorf in "Memory has grown to nearly two-thirds of AI chip component costs"]]></title><description><![CDATA[
<p>I think there is a reasonable basis for taking a gamble that small models capable of fitting on a 32GB card will continue to advance over the next 5 years and eventually approach Gemini Flash 3.5 / Sonnet 4.6 levels of capabilities, which I would consider to be past the threshold of “probably worth the cost and hassle of running 24/7” if the upfront cost of the hardware was palatable.<p>My use case would primarily be in search, integration, and indexing other software projects with my own, as well as transcription/indexing of interesting video and audio content (eg Dwarkesh interviews) that I don’t have time to watch but want to easily search and apply to my projects, and search/indexing for useful information from things like Linux kernel and security mailing lists. Basically there is a lot of stuff that, if the cost were low enough, I would point a reasonably intelligent AI at to distill out useful information and apply it to my projects, or just cherry pick the interesting things out and surface them to me so I don’t have to wade through all the mundane stuff and man-made slop getting in the way.</p>
]]></description><pubDate>Sun, 24 May 2026 22:55:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=48261834</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48261834</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48261834</guid></item><item><title><![CDATA[New comment by weitendorf in "Memory has grown to nearly two-thirds of AI chip component costs"]]></title><description><![CDATA[
<p>In the long run cloud gaming is inevitable, it’s just more economically efficient for the cost of the hardware required to render graphics to be amortized across consumers and not sit idle when being unused by collocating them with game assets in POPs.<p>Once enough gaming compute runs at the edge it also allows for more technically advanced games than would currently be economically feasible (but aren’t made mostly for lack of a market/adoption of cloud gaming and the resulting lack of technical know-how). So I think it will stick and probably end up winning over the holdouts, once the cost of rendering the games they want to play with consumer hardware becomes too large to stomach.</p>
]]></description><pubDate>Sun, 24 May 2026 22:36:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=48261702</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48261702</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48261702</guid></item><item><title><![CDATA[New comment by weitendorf in "Memory has grown to nearly two-thirds of AI chip component costs"]]></title><description><![CDATA[
<p>TSMC doesn’t get to take the profit that currently accrues to Nvidia and Apple, even though they absolutely could from a business/leverage perspective, because they are an economic colony of the United states and hiking their prices (which Apple and Nvidia would have almost no choice but to pay, but would upset their benefactors) would jeopardize their national security/defense.<p>In a world where TSMC is functionally capable of the same level of production but not in such a complicated geopolitical situation regarding semiconductor manufacturing, things would be quite different.</p>
]]></description><pubDate>Sun, 24 May 2026 22:28:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=48261652</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48261652</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48261652</guid></item><item><title><![CDATA[New comment by weitendorf in "Memory has grown to nearly two-thirds of AI chip component costs"]]></title><description><![CDATA[
<p>If you factor in Nvidia’s profit margin due to the scarcity of the current bleeding-edge chips there is a path to a much larger cost reduction still.<p>There’s a lot to criticize Sam Altman for saying or popularizing culturally but I’ve come to think his “this is the worst it will ever be” is, in the long run, actually a very intriguing and underrated point.<p>In a decade training LLMs to the current level of sophistication, which is in my opinion rather advanced and probably has lots of additional upside just from constructing better RL training regime independently of hardware advancement, will become just as table stakes as running a database is now. I highly recommend everyone look into the Allen Institute’s projects in GitHub and HF because they have open source training materials (including an LLM from scratch off common crawl, and some quite interesting tunes of qwen) to get a taste for what will be in the near future afternoon projects or educational material. The future is going to be wild</p>
]]></description><pubDate>Sun, 24 May 2026 22:23:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=48261614</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48261614</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48261614</guid></item><item><title><![CDATA[New comment by weitendorf in "ArcBrush – Node-based 2D image editor"]]></title><description><![CDATA[
<p>That's awesome, I'll definitely try it now. To be clear my thought process was that I couldn't find any info about you or any human accountable for the project from its main site, and IME that's a strong yellow/red flag. It's not you or the project that felt sketchy but the website asking me to download and run a binary on my computer</p>
]]></description><pubDate>Sun, 24 May 2026 04:11:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=48254293</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48254293</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48254293</guid></item><item><title><![CDATA[New comment by weitendorf in "ArcBrush – Node-based 2D image editor"]]></title><description><![CDATA[
<p>This looks really cool!<p>Unfortunately since it's not FOSS and there's no information about the company/individuals behind it, or even a way to pay for it/get licensing information from your UI, there is absolutely no way I would download it as a binary and run it on my computer as you suggest. That is, IMO, incredibly sketchy</p>
]]></description><pubDate>Sat, 23 May 2026 15:03:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=48248311</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48248311</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48248311</guid></item><item><title><![CDATA[New comment by weitendorf in "Open source Kanban desktop app that runs parallel agents on every card"]]></title><description><![CDATA[
<p>Dude it's literally on bloop. It's a bloop original</p>
]]></description><pubDate>Sat, 23 May 2026 06:15:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=48245203</link><dc:creator>weitendorf</dc:creator><comments>https://news.ycombinator.com/item?id=48245203</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48245203</guid></item></channel></rss>