<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: hmry</title><link>https://news.ycombinator.com/user?id=hmry</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 09 Aug 2026 08:59:27 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=hmry" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by hmry in "Dithered QR Codes"]]></title><description><![CDATA[
<p>That's absolutely hilarious</p>
]]></description><pubDate>Sun, 09 Aug 2026 04:47:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=49228534</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=49228534</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49228534</guid></item><item><title><![CDATA[New comment by hmry in "Now is the time to give LLMs access to the ACM digital library"]]></title><description><![CDATA[
<p>This is about the ACM licensing it to for-profit AI companies, who will then make you pay a subscription to access the knowledge. Not about making it "freely available to the public."</p>
]]></description><pubDate>Wed, 29 Jul 2026 01:30:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=49092337</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=49092337</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49092337</guid></item><item><title><![CDATA[New comment by hmry in "$100 AI Music Video: Claude Fable 5 vs. GPT-5.6 Sol"]]></title><description><![CDATA[
<p>FYI it's not possible to downvote replies to your own comment</p>
]]></description><pubDate>Mon, 27 Jul 2026 09:07:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=49066932</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=49066932</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49066932</guid></item><item><title><![CDATA[New comment by hmry in "Memory safety absolutists"]]></title><description><![CDATA[
<p>Sorry for not being clear, I meant the creators of Fil-C and Zig (since those are the ones mentioned in the article)</p>
]]></description><pubDate>Sun, 26 Jul 2026 07:12:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=49055556</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=49055556</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49055556</guid></item><item><title><![CDATA[New comment by hmry in "Stolen Buttons"]]></title><description><![CDATA[
<p>Awesome, the Haiku one is my favorite</p>
]]></description><pubDate>Sat, 25 Jul 2026 21:28:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=49051782</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=49051782</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49051782</guid></item><item><title><![CDATA[New comment by hmry in "Memory safety absolutists"]]></title><description><![CDATA[
<p>It's annoying how many comment sections online are now just Rust vs Fil-C / Zig flamewars, and the creators of those languages are deliberately fanning the flames.<p>I also feel there's a second dimension to the politics, where Rust is the "woke" language and C / Zig / Odin are now the "anti-woke" languages. At least, going by their most vocal online communities.<p>I'm sure offline there's still engineering decisions being made (I hope).</p>
]]></description><pubDate>Sat, 25 Jul 2026 21:16:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=49051669</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=49051669</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49051669</guid></item><item><title><![CDATA[New comment by hmry in "Learn OpenGL, extensive tutorial resource for learning Modern OpenGL"]]></title><description><![CDATA[
<p>Thanks, that makes sense</p>
]]></description><pubDate>Thu, 23 Jul 2026 19:22:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=49026772</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=49026772</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49026772</guid></item><item><title><![CDATA[New comment by hmry in "Learn OpenGL, extensive tutorial resource for learning Modern OpenGL"]]></title><description><![CDATA[
<p>WebGPU only got started in 2021, so Im not sure what you mean. Could you explain? (Or are you thinking of WebGL?)</p>
]]></description><pubDate>Thu, 23 Jul 2026 19:01:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=49026500</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=49026500</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49026500</guid></item><item><title><![CDATA[New comment by hmry in "Learn OpenGL, extensive tutorial resource for learning Modern OpenGL"]]></title><description><![CDATA[
<p>I do agree Vulkan is too cumbersome, but OpenGL is definitely obsolete.<p>The OpenGL API with its binding-based approach is also very confusing for beginners, but the replacement Direct State Access API came too late (after Apple already decided they would deprecate OpenGL, so it never got supported on macOS).<p>And the fact that the GLSL parser and compiler are part of the driver means there are <i>tons</i> of hardware-specific bugs and miscompilations. Intel integrated drivers on Windows are notorious for being especially buggy.<p>All of those make OpenGL a pretty poor target for learning. Personally, I would recommend WebGPU to people who want to get into graphics programming. It's very similar to DirectX/Metal, and like a more streamlined Vulkan. The WGPU implementation of WebGPU has a C API, which also has C++ headers, and a native Rust API. And you can also use WebGPU in your browser from JavaScript, if you don't know any native languages.</p>
]]></description><pubDate>Thu, 23 Jul 2026 16:25:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=49024229</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=49024229</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49024229</guid></item><item><title><![CDATA[New comment by hmry in "Learn OpenGL, extensive tutorial resource for learning Modern OpenGL"]]></title><description><![CDATA[
<p>Mesa has Zink which translates OpenGL to Vulkan. AFAIK Asahi uses it because they only wrote a native Vulkan driver for the hardware, no native OpenGL driver.<p>Apple themselves also don't ship a native OpenGL driver anymore, only a layer that translates OpenGL to Metal.</p>
]]></description><pubDate>Thu, 23 Jul 2026 16:18:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=49024121</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=49024121</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49024121</guid></item><item><title><![CDATA[New comment by hmry in "Advertise in ChatGPT"]]></title><description><![CDATA[
<p>"I will disclose, as a personal bias, that I hate ads."<p>"They fundamentally misalign a user's incentives with the company providing the service"<p>"Ads plus AI is sort of uniquely unsettling to me, I kind of think of ads as a last resort for us for a business model."<p>- Altman 2024<p>Soooo... No? Sort of the opposite, they confirmed they would do it. ;p</p>
]]></description><pubDate>Wed, 22 Jul 2026 07:15:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=49002935</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=49002935</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49002935</guid></item><item><title><![CDATA[New comment by hmry in "Advertise in ChatGPT"]]></title><description><![CDATA[
<p>That's a shame, I love sarcastic posts. Although, when everyone is sarcastic all the time, it does severly degrade the discussion.</p>
]]></description><pubDate>Wed, 22 Jul 2026 04:39:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=49001963</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=49001963</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49001963</guid></item><item><title><![CDATA[New comment by hmry in "SQLite should have (Rust-style) editions"]]></title><description><![CDATA[
<p>These proposed editions are per connection.<p>A system-wide config file in /etc that changes defaults for every program would break any program that assumes the old defaults.<p>It also wouldn't solve the problem of having to manually find out what the current recommended defaults are. With editions, you can simply enable the latest one and know you've got the right defaults.</p>
]]></description><pubDate>Thu, 16 Jul 2026 03:38:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=48930085</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=48930085</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48930085</guid></item><item><title><![CDATA[New comment by hmry in "Duskers, the scary command line game, is getting a sequel"]]></title><description><![CDATA[
<p>It's only easy if you own a mac, otherwise it's somewhere between annoying and impossible.<p>Last time I tried it, you needed a mac if you wanted to:<p>- use AoT compilation (IL2CPP) instead of JIT<p>- use any native libraries (or use any assets that depend on native libraries)<p>- sign your executable<p>And that was before Apple Silicon, I would be surprised if it's gotten any easier</p>
]]></description><pubDate>Thu, 16 Jul 2026 03:28:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=48930030</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=48930030</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48930030</guid></item><item><title><![CDATA[New comment by hmry in "RISC-V Is Inevitable: State of the Union Keynote Argues"]]></title><description><![CDATA[
<p>Non-US hedging will be big for RISC-V in the future, but the geopolitics can also cut the other way. E.g. US banning US companies from using Chinese RISC-V chips, to protect their domestic players. Especially now that intel is partially state-owned.</p>
]]></description><pubDate>Wed, 15 Jul 2026 12:00:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=48919512</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=48919512</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48919512</guid></item><item><title><![CDATA[New comment by hmry in "A voxel Tokyo in real Japan time – ride the Yamanote line and study Japanese"]]></title><description><![CDATA[
<p>It's not running at 400 fps, the UI has the current global listener count next to a button that says "fps". The fps is only shown once you click that button. Weird design, I know.</p>
]]></description><pubDate>Mon, 13 Jul 2026 20:13:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=48898151</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=48898151</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48898151</guid></item><item><title><![CDATA[New comment by hmry in "Can you build a recognizable World Map in under 500 bytes?"]]></title><description><![CDATA[
<p>Why make Claude play the guitar?</p>
]]></description><pubDate>Sun, 05 Jul 2026 01:44:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=48790615</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=48790615</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48790615</guid></item><item><title><![CDATA[New comment by hmry in "Performance per dollar is getting faster and cheaper"]]></title><description><![CDATA[
<p>They're asking what precision the model parameters were quantized/rounded to, look up "LLM quantization" to learn more.<p>The old headline was something like "We served GLM5.2 on AMD MI355X at 2626 tok/s/node". They think it's bad to advertise performance numbers like that without specifying how much you quantized the model (Since you can 'cheat' more performance by quantizing more, and not mentioning the reduced output quality)</p>
]]></description><pubDate>Sat, 04 Jul 2026 19:09:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=48787998</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=48787998</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48787998</guid></item><item><title><![CDATA[New comment by hmry in "Odin, Wikipedia and engagement farming"]]></title><description><![CDATA[
<p>Being fraudulent doesn't make something less notable. It might even make something more notable, provided enough sources report on it.</p>
]]></description><pubDate>Sat, 04 Jul 2026 03:41:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=48782459</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=48782459</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48782459</guid></item><item><title><![CDATA[New comment by hmry in "Memorizing session transcripts isn't useful"]]></title><description><![CDATA[
<p>I have to imagine these types of features are for people who treat chatgpt like their friend/therapist/girlfriend/assistant/... instead of people who use it to answer questions</p>
]]></description><pubDate>Fri, 03 Jul 2026 20:27:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=48779585</link><dc:creator>hmry</dc:creator><comments>https://news.ycombinator.com/item?id=48779585</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48779585</guid></item></channel></rss>