<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: nextaccountic</title><link>https://news.ycombinator.com/user?id=nextaccountic</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 11 Apr 2026 11:22:13 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=nextaccountic" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by nextaccountic in "PGLite Evangelism"]]></title><description><![CDATA[
<p>I am always checking out this project too, looking for a native build. I am quite happy that they added support for extensions though</p>
]]></description><pubDate>Sat, 11 Apr 2026 11:06:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=47729519</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47729519</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47729519</guid></item><item><title><![CDATA[New comment by nextaccountic in "US plans to automatically register young men for military draft"]]></title><description><![CDATA[
<p>Why not do the same, but for voting?</p>
]]></description><pubDate>Sat, 11 Apr 2026 09:24:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=47729000</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47729000</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47729000</guid></item><item><title><![CDATA[New comment by nextaccountic in "A practical guide for setting up Zettelkasten method in Obsidian"]]></title><description><![CDATA[
<p>> I just can't bring myself to go to the effort<p>That's what LLMs are best, actually. Go through all your stuff and painstakingly  document, add tags, refer to other documents, etc<p>> Due to this, my Obsidian vault is pretty much a collection of a bunch of temporary to-do lists and then some folders with specific reference information<p>LLMs can also separate what information was only useful at a specific time vs more perennially useful notes.</p>
]]></description><pubDate>Sat, 11 Apr 2026 09:22:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=47728989</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47728989</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47728989</guid></item><item><title><![CDATA[New comment by nextaccountic in "Why do we tell ourselves scary stories about AI?"]]></title><description><![CDATA[
<p>Yeah, the problem with AI is that they can become too good at performing general tasks, ranging from, like, designing cancer treatments, or designing bioweapons, and everything in between</p>
]]></description><pubDate>Sat, 11 Apr 2026 08:35:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=47728722</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47728722</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47728722</guid></item><item><title><![CDATA[New comment by nextaccountic in "Bevy game development tutorials and in-depth resources"]]></title><description><![CDATA[
<p>yeah ruby API ideas and the _why poignant guide specifically, they were very influential in programming in general. a number of early rust devs came from ruby as well. all original authors of cargo worked on ruby's bundler earlier. etc</p>
]]></description><pubDate>Sat, 11 Apr 2026 06:34:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=47728054</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47728054</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47728054</guid></item><item><title><![CDATA[New comment by nextaccountic in "Bevy game development tutorials and in-depth resources"]]></title><description><![CDATA[
<p>> Mostly are paid ones.<p>can someone link to some of those paid resources?</p>
]]></description><pubDate>Sat, 11 Apr 2026 06:31:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=47728032</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47728032</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47728032</guid></item><item><title><![CDATA[New comment by nextaccountic in "Helium is hard to replace"]]></title><description><![CDATA[
<p>The article also points out several cases where this isn't possible</p>
]]></description><pubDate>Sat, 11 Apr 2026 06:22:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=47727975</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47727975</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47727975</guid></item><item><title><![CDATA[New comment by nextaccountic in "Bevy game development tutorials and in-depth resources"]]></title><description><![CDATA[
<p>> These guides are up to date with Bevy version 0.18<p>This is huge, thanks. Unfortunately many Bevy resources became stale (the Bevy cookbook was even abandoned, there was little interest in keeping it up to date and so there were many sections for, say, Bevy 0.12)</p>
]]></description><pubDate>Sat, 11 Apr 2026 03:51:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=47727186</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47727186</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47727186</guid></item><item><title><![CDATA[New comment by nextaccountic in "Endian wars and anti-portability: this again?"]]></title><description><![CDATA[
<p>That's not my experience. Yes casts are annoying but in Rust usize generally means something is an index to a Vec or arena (generally speaking, it means the id of some entity). You generally should not do math with indices in your business logic but rather use some higher level interface that does the math for you, because if you mess up you will have an out of bounds bug (which in Rust is not UB, but it's still a panic). If you keep your usizes to be just indices, they will not pose a portability problem.<p>When I talk about a higher level interface it may be something like this <a href="https://crates.io/crates/typed-generational-arena" rel="nofollow">https://crates.io/crates/typed-generational-arena</a> those sort of things are very common in Rust. In here the index is an usize, but you don't directly do math with it (also you have a generation number to guard against index reuse), so you never experience any `as usize` thing.<p>Of course that's not applicable to everything. Some domains will naturally require doing arithmetic with indices, which is annoying in Rust. Hopefully you enclose this into a library and try to forget the horrors (rather than using usize everywhere, which is objectively the wrong thing to do)<p>Then you have libraries like petgraph that does use u32 indices by default, to save memory <a href="https://docs.rs/petgraph/latest/petgraph/graph/type.DefaultIx.html" rel="nofollow">https://docs.rs/petgraph/latest/petgraph/graph/type.DefaultI...</a></p>
]]></description><pubDate>Sat, 11 Apr 2026 03:49:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=47727172</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47727172</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47727172</guid></item><item><title><![CDATA[New comment by nextaccountic in "PGLite Evangelism"]]></title><description><![CDATA[
<p>Which one? <a href="https://github.com/Ladybug-Memory/pgembed" rel="nofollow">https://github.com/Ladybug-Memory/pgembed</a> or <a href="https://github.com/faokunega/pg-embed" rel="nofollow">https://github.com/faokunega/pg-embed</a> ?<p>Both will either download or ship the postgres binary with your app, and run it in a separate process. Pglite is different, it's actually a library (they have stripped some parts of the postgres source code) and it could in principle be ported to be used as a native library (meaning, you link to it and run as a single program)<p>There's even a draft PR to do this, but it became stale<p><a href="https://github.com/electric-sql/pglite/pull/842" rel="nofollow">https://github.com/electric-sql/pglite/pull/842</a><p>Right now what exists is, grabbing the pglite wasm and running it on native code on wasi<p><a href="https://github.com/f0rr0/pglite-oxide" rel="nofollow">https://github.com/f0rr0/pglite-oxide</a></p>
]]></description><pubDate>Sat, 11 Apr 2026 02:48:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=47726827</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47726827</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47726827</guid></item><item><title><![CDATA[New comment by nextaccountic in "I still prefer MCP over skills"]]></title><description><![CDATA[
<p>> Claude Code for example does discovery in subagents.<p>but this still burns tokens needlessly in the subagent. if the agent could filter the mcp output using a cli (often jq, but sometimes something else), it could be more economical<p>maybe anthropic wants you to burn those tokens though</p>
]]></description><pubDate>Fri, 10 Apr 2026 22:44:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=47724672</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47724672</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47724672</guid></item><item><title><![CDATA[New comment by nextaccountic in "I still prefer MCP over skills"]]></title><description><![CDATA[
<p>> Context Bloat: Using a skill often requires loading the entire SKILL.md into the LLM’s context window, rather than just exposing the single tool signature it needs. It’s like forcing someone to read the entire car’s owner’s manual when all they want to do is call car.turn_on().<p>MCP has severe context bloat just by starting a thread. If harnesses were smart enough to, during install time, summarize the tools provided by a MCP server (rather than dumping the whole thing in context), it would be better. But a worse problem is that the output of MCP goes straight into the context of the agent, rather than being piped somewhere else<p>A solution is to have the agent run a cli tool to access mcp services. That way the agent can filter the output with jq, store it in a file for analysis later, etc</p>
]]></description><pubDate>Fri, 10 Apr 2026 07:21:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=47714718</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47714718</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47714718</guid></item><item><title><![CDATA[New comment by nextaccountic in "Project Glasswing: Securing critical software for the AI era"]]></title><description><![CDATA[
<p>this only makes things worse for ffmpeg<p>if someone sends you a malicious file that uses a rare codec and you open it, you will trigger this codepath that is not widely used and don't get a lot of scrutiny</p>
]]></description><pubDate>Tue, 07 Apr 2026 22:12:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=47682023</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47682023</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47682023</guid></item><item><title><![CDATA[New comment by nextaccountic in "Dear Heroku: Uhh What's Going On?"]]></title><description><![CDATA[
<p>If they still had momentum one year after acquisition, I think it's hard to say they have been going downhill<p>Maybe we could say they went uphill instead for a while? Or something</p>
]]></description><pubDate>Tue, 07 Apr 2026 07:17:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=47671739</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47671739</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47671739</guid></item><item><title><![CDATA[New comment by nextaccountic in "Endian wars and anti-portability: this again?"]]></title><description><![CDATA[
<p>This just means 32 bits is still relevant..<p>Also: why not riscv?<p>Anyway, I think that most pain for being low level and portable is due to C and C++, and it's not as painful in Rust. In Rust it's not as common to use non-portable integers like C's int (there is isize/usize but they are used for indexing; logic is supposed to be done in i32/u32/i64/u64), and the Rust stdlib comes with excellent support for dealing with byte orders like <a href="https://doc.rust-lang.org/std/primitive.i32.html#method.to_be_bytes" rel="nofollow">https://doc.rust-lang.org/std/primitive.i32.html#method.to_b...</a> (and for more support, usage of <a href="https://docs.rs/byteorder/latest/byteorder/" rel="nofollow">https://docs.rs/byteorder/latest/byteorder/</a> is widespread), among other things<p>I think it's more immediately clear when Rust code is non portable too. It's not uncommon for random C code to be plagued with undocumented portability issues (and as such, you can't assume that code is portable without some inspection), but unportable Rust code may fail to build on unsupported platforms, which is an excellent idea</p>
]]></description><pubDate>Tue, 07 Apr 2026 06:01:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=47671249</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47671249</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47671249</guid></item><item><title><![CDATA[New comment by nextaccountic in "A cryptography engineer's perspective on quantum computing timelines"]]></title><description><![CDATA[
<p>The D-Wave machine doesn't benefit from the quantum speedups discussed in the article</p>
]]></description><pubDate>Tue, 07 Apr 2026 06:00:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=47671239</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47671239</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47671239</guid></item><item><title><![CDATA[New comment by nextaccountic in "A cryptography engineer's perspective on quantum computing timelines"]]></title><description><![CDATA[
<p>> when it becomes necessary<p>Perhaps it's already necessary, or it will be in the following months. We are hearing only about the public developments, not whatever classified work the US is doing<p>I think the analogy with the Manhattan project is apt. The US has enormous interest in decrypting communication streams at scale (see Snowden and the Utah NSA datacenter), and it's known for storing encrypted comms for decrypting later. Well maybe later is now</p>
]]></description><pubDate>Tue, 07 Apr 2026 06:00:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=47671234</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47671234</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47671234</guid></item><item><title><![CDATA[New comment by nextaccountic in "Endian wars and anti-portability: this again?"]]></title><description><![CDATA[
<p>Why not wasm?</p>
]]></description><pubDate>Mon, 06 Apr 2026 03:04:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=47656508</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47656508</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47656508</guid></item><item><title><![CDATA[New comment by nextaccountic in "Proton Meet isn't what they told you it was"]]></title><description><![CDATA[
<p>Yes, the US government and US courts (including the secret court FISC) have tools to compel Google, Apple and other vendors to install malware on users devices. This is exactly the point.<p>The US government routinely deploys malware to users devices, for multiple reasons. Here is a 2017 link about this: <a href="https://www.aclu.org/news/privacy-technology/challenging-government-hacking-whats-stake" rel="nofollow">https://www.aclu.org/news/privacy-technology/challenging-gov...</a></p>
]]></description><pubDate>Sun, 05 Apr 2026 01:16:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=47645223</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47645223</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47645223</guid></item><item><title><![CDATA[New comment by nextaccountic in "Tell HN: Anthropic no longer allowing Claude Code subscriptions to use OpenClaw"]]></title><description><![CDATA[
<p>The Zed ACP client for example is still controlled by the human prompt, and they will probably not be banned</p>
]]></description><pubDate>Sat, 04 Apr 2026 07:01:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=47636602</link><dc:creator>nextaccountic</dc:creator><comments>https://news.ycombinator.com/item?id=47636602</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47636602</guid></item></channel></rss>