<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: mappu</title><link>https://news.ycombinator.com/user?id=mappu</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 27 Sep 2026 01:28:52 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=mappu" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by mappu in "Plan mode is dead"]]></title><description><![CDATA[
<p>If you can run the smarter 3.8 27B model, why not use it for everything?</p>
]]></description><pubDate>Sat, 26 Sep 2026 01:37:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=49852312</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=49852312</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49852312</guid></item><item><title><![CDATA[Proposal: Cmd/cgo: cgo without a C toolchain]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/golang/go/issues/81450">https://github.com/golang/go/issues/81450</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49654343">https://news.ycombinator.com/item?id=49654343</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 11 Sep 2026 06:40:21 +0000</pubDate><link>https://github.com/golang/go/issues/81450</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=49654343</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49654343</guid></item><item><title><![CDATA[New comment by mappu in "Fastpotify"]]></title><description><![CDATA[
<p>If you're focused on lightweight, native and fast, I don't think you should use an immediate-mode GUI toolkit. Why does an app like this need to hit a 60fps framerate? It's not a game.</p>
]]></description><pubDate>Tue, 01 Sep 2026 05:22:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=49518257</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=49518257</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49518257</guid></item><item><title><![CDATA[Debian Votes to Allow "Responsible Use of Generative AI"]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.phoronix.com/news/Debian-Votes-Responsible-AI-Use">https://www.phoronix.com/news/Debian-Votes-Responsible-AI-Use</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49486493">https://news.ycombinator.com/item?id=49486493</a></p>
<p>Points: 10</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 29 Aug 2026 02:57:43 +0000</pubDate><link>https://www.phoronix.com/news/Debian-Votes-Responsible-AI-Use</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=49486493</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49486493</guid></item><item><title><![CDATA[New comment by mappu in "PPWR lands another blow to an precarious tabletop industry"]]></title><description><![CDATA[
<p>I have no skin in this game, but just because they're doing it doesn't mean it's their focus, the EU is big enough to work on multiple 0.8%-size wins all over the place.</p>
]]></description><pubDate>Sat, 29 Aug 2026 01:50:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=49486186</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=49486186</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49486186</guid></item><item><title><![CDATA[New comment by mappu in "RISC-V: They Should Have Known Better"]]></title><description><![CDATA[
<p>I'm not sure this is a real problem - for embedded you know a priori - for arbitrary desktop/SBC machines, misa will be available in kernel mode and /proc/cpuinfo will be available in user mode.</p>
]]></description><pubDate>Sat, 15 Aug 2026 00:06:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=49306129</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=49306129</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49306129</guid></item><item><title><![CDATA[New comment by mappu in "RISC-V: They Should Have Known Better"]]></title><description><![CDATA[
<p>RVA23 hardware is available (e.g. SpacemiT K3)</p>
]]></description><pubDate>Fri, 14 Aug 2026 23:26:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=49305823</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=49305823</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49305823</guid></item><item><title><![CDATA[New comment by mappu in "Go 1.27 Interactive Tour"]]></title><description><![CDATA[
<p>Go's http.Client will keepalive a TCP/TLS connection to save you handshake latency on second requests. But it can only do this if you completely finish reading the last request.<p>Now in 1.27:<p>> http.Response.Body drains itself on Close. For HTTP/1, closing the body now reads and discards any unread content (up to a conservative limit) so the connection can be reused. For most programs this is a transparent win [...]<p>Great, so i no longer have to io.Copy(io.Discard, resp.Body) in the err case, one less thing to worry about; but<p>> if you were leaning on an early Close to abort a large download, set Transport.DisableKeepAlives to opt out.<p>That's a subtle behaviour change. Any previous Go program which used Close in this way - say for an infinite event stream - now hangs, soaking up bandwidth.<p>In the past, the Go team have searched the entire Github corpus for misuse before making changes like this. I don't have a reference but I assume an appropriate level of consideration went into this decision.<p>EDIT: ""up to a conservative limit"" so this is not so bad after all.</p>
]]></description><pubDate>Sun, 02 Aug 2026 07:31:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=49141999</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=49141999</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49141999</guid></item><item><title><![CDATA[New comment by mappu in "Go 1.27 Interactive Tour"]]></title><description><![CDATA[
<p>Automatically draining http response bodies is a risky silent behaviour change. I think it will be an improvement for most applications, but it's very subtle if you were relying on the old behaviour</p>
]]></description><pubDate>Sun, 02 Aug 2026 03:31:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=49140808</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=49140808</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49140808</guid></item><item><title><![CDATA[New comment by mappu in "Run Kimi K3 using 29 GB of RAM at 0.50 tok/s"]]></title><description><![CDATA[
<p>The really big thing is the model weights, which are a read workload not a write one, it won't affect an SSD's write endurance.<p>The write workloads are just the context and any K/V cache - llama.cpp does not mmap those to disk, so they would remain in memory or VRAM as space affords.</p>
]]></description><pubDate>Sat, 01 Aug 2026 05:09:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=49131222</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=49131222</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49131222</guid></item><item><title><![CDATA[New comment by mappu in "Run Kimi K3 using 29 GB of RAM at 0.50 tok/s"]]></title><description><![CDATA[
<p>Standard llama.cpp can mmap the gguf, so it'll stay on disk if it doesn't fit on memory, and the kernel page cache will ensure the hot parts ("resident trunk") stay resident.<p>What's the benefit of a custom implementation at all?</p>
]]></description><pubDate>Sat, 01 Aug 2026 03:57:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=49130892</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=49130892</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49130892</guid></item><item><title><![CDATA[New comment by mappu in "LLM Usage in Debian: Three Proposals"]]></title><description><![CDATA[
<p>Linus Torvalds said last week that LLMs were just a tool. Lorenzo Stoakes had the impeccable rebuttal that "it's a tool in the same way a nuclear bomb is just a tool" - of course it's useful but there is clearly more to it than that.<p>I'm happy for Debian to at least consider the other aspects of social impact, ethics, copyright, and maintainability.</p>
]]></description><pubDate>Sun, 26 Jul 2026 02:05:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=49053912</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=49053912</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49053912</guid></item><item><title><![CDATA[New comment by mappu in "Even Microsoft couldn't make Windows 11 work well on 8GB of RAM"]]></title><description><![CDATA[
<p>This distinction is less a gotcha and more actually immediately obvious in the Windows task manager. It shows cached memory separately and in a different colour. The "in use" part is real in-use excluding the page cache.<p>On my current Windows 11 install i'm using 7 GB with just this Firefox tab open, and another 18GB of "Cached" RAM.<p>Same as how `free` on Linux shows it in a different column.</p>
]]></description><pubDate>Sun, 19 Jul 2026 00:16:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=48963773</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=48963773</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48963773</guid></item><item><title><![CDATA[New comment by mappu in "The Kimi K3 Moment"]]></title><description><![CDATA[
<p>Steve Yegge calls this is the "discernment horizon" - <a href="https://steve-yegge.medium.com/the-flat-curve-society-36c8b01eb33b" rel="nofollow">https://steve-yegge.medium.com/the-flat-curve-society-36c8b0...</a></p>
]]></description><pubDate>Sat, 18 Jul 2026 21:39:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=48962708</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=48962708</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48962708</guid></item><item><title><![CDATA[New comment by mappu in "Build your own vulnerability harness"]]></title><description><![CDATA[
<p>The off-the-shelf player in this space (structured red-team search) is probably <a href="https://github.com/usestrix/strix" rel="nofollow">https://github.com/usestrix/strix</a> (no affiliation). But any frontier model, if you tell it "here's how the authentication system works, go looking for bugs" will probably do a good job.</p>
]]></description><pubDate>Fri, 10 Jul 2026 02:14:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=48854969</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=48854969</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48854969</guid></item><item><title><![CDATA[New comment by mappu in "Muse Spark 1.1"]]></title><description><![CDATA[
<p>- MiMo (Xiaomi)</p>
]]></description><pubDate>Fri, 10 Jul 2026 00:45:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=48854404</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=48854404</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48854404</guid></item><item><title><![CDATA[We cannot wait for better post-quantum signature algorithms]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.cloudflare.com/ml-dsa-will-have-to-do/">https://blog.cloudflare.com/ml-dsa-will-have-to-do/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48854191">https://news.ycombinator.com/item?id=48854191</a></p>
<p>Points: 7</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 10 Jul 2026 00:11:38 +0000</pubDate><link>https://blog.cloudflare.com/ml-dsa-will-have-to-do/</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=48854191</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48854191</guid></item><item><title><![CDATA[New comment by mappu in "Curveball"]]></title><description><![CDATA[
<p>Blender has all these curve tools and more, it might be interesting to write an exporter to the Neverball file format if one doesn't exist yet.</p>
]]></description><pubDate>Sat, 04 Jul 2026 21:55:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=48789451</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=48789451</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48789451</guid></item><item><title><![CDATA[New comment by mappu in "Better Models: Worse Tools"]]></title><description><![CDATA[
<p>In my harness i implemented apply_patch just taking unified diffs for patch -p1. I was shocked to see how bad models are at generating them. I started logging diff failures to analyse -<p>- All models are terrible at generating line numbers for a proper diff, give up on them<p>- Some models (Owl-alpha) must have been post-trained on Codex transcripts, because they occasionally push its V4A patch format into any diff tool available<p>- Codex puts a lot of info in its system prompt about the desired patch style, making larger hunks instead of granular ones, etc</p>
]]></description><pubDate>Sat, 04 Jul 2026 21:21:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=48789211</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=48789211</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48789211</guid></item><item><title><![CDATA[New comment by mappu in "LongCat-2.0, a large-scale MoE model with 1.6T total and 48B Active"]]></title><description><![CDATA[
<p>There was some earlier speculation this is the model behind the stealth-released openrouter/owl-alpha model, that's been free for the last month.</p>
]]></description><pubDate>Tue, 30 Jun 2026 06:39:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=48729242</link><dc:creator>mappu</dc:creator><comments>https://news.ycombinator.com/item?id=48729242</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48729242</guid></item></channel></rss>