<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: Newest</title><link>https://news.ycombinator.com/newest</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 30 Aug 2026 15:36:39 +0000</lastBuildDate><atom:link href="https://hnrss.org/newest?count=100" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[How Sleep Optimization Can Backfire]]></title><description><![CDATA[
<p>Article URL: <a href="https://moreisdifferent.blog/p/how-sleep-hygiene-and-sleep-optimization">https://moreisdifferent.blog/p/how-sleep-hygiene-and-sleep-optimization</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499584">https://news.ycombinator.com/item?id=49499584</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:32:03 +0000</pubDate><link>https://moreisdifferent.blog/p/how-sleep-hygiene-and-sleep-optimization</link><dc:creator>delton137</dc:creator><comments>https://news.ycombinator.com/item?id=49499584</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499584</guid></item><item><title><![CDATA[BROCS: The framework for enterprise AI enablement]]></title><description><![CDATA[
<p>Article URL: <a href="https://brocs.fyi">https://brocs.fyi</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499539">https://news.ycombinator.com/item?id=49499539</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:27:35 +0000</pubDate><link>https://brocs.fyi</link><dc:creator>powvans</dc:creator><comments>https://news.ycombinator.com/item?id=49499539</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499539</guid></item><item><title><![CDATA[Stratum 1 PTP grandmaster and router for $150]]></title><description><![CDATA[
<p>Article URL: <a href="https://opscode.io/posts/ptp-grandmaster-r5s-nanopi/">https://opscode.io/posts/ptp-grandmaster-r5s-nanopi/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499536">https://news.ycombinator.com/item?id=49499536</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:27:10 +0000</pubDate><link>https://opscode.io/posts/ptp-grandmaster-r5s-nanopi/</link><dc:creator>malcolmfrazier</dc:creator><comments>https://news.ycombinator.com/item?id=49499536</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499536</guid></item><item><title><![CDATA[Amlc – fhe compiler where the noise budget is a static value of the type sys]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/octra-labs/amlc">https://github.com/octra-labs/amlc</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499523">https://news.ycombinator.com/item?id=49499523</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:26:08 +0000</pubDate><link>https://github.com/octra-labs/amlc</link><dc:creator>0x0ffh_local</dc:creator><comments>https://news.ycombinator.com/item?id=49499523</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499523</guid></item><item><title><![CDATA[Show HN: Snaketron – Competitive multiplayer Snake. Back after 14 years]]></title><description><![CDATA[
<p>Hi HN, I just completed a rewrite of Snaketron, a competitive multiplayer Snake game. (Yes, yes, in Rust)<p>A quick funny story about this game's history:<p>Back in 2012 I had (poorly) implemented the first version of Snaketron. The issue with it was that I was keeping game state on the client, and while I did realize that it was insecure, I also had no idea what to do about it without increasing latency to unplayable levels. I was still in school, never worked on games, and haven't even heard of the term "netcode" before. The excitement of releasing my first pet project got the better of me, and I placed this security concern in the "theoretical issues" bucket, and shipped it.<p>No one would even notice, and if they did, they wouldn't take the time to break into my little Snake game project, right?<p>WRONG! Hacker News absolutely lived up to its name. While I was busy with my first experience of handling a traffic surge, scaling up my database and fixing bugs, several players found the security holes and were beginning their Snake rampage. Reports were coming in of unkillable snakes so I decided to start up a game to see if I could catch it.<p>I loaded a 1v1 and my opponent was ... space invaders. My snake was a snake. Their "snake" was a rendering of the game Space Invaders. Needless to say they were also moving around and were invincible. I really wish I had taken a video of that, but I was floored that HN not just played, but hacked, my project is such an epic way.<p>I always wanted to rebuild it properly, so here's V2! The architecture and motivations are quite different this time around.<p>First, the state is server authoritative and lag is compensated for by client-state prediction. The game engine is written in Rust and compiled to WASM for the client side library.<p>To minimize the ops burden, I also imposed a strict resiliency requirement on this project: it must be auto-scalable. So a node can join the cluster and live games will rebalance to it without disrupting gameplay.<p>I also tried to make the new Snaketron a little more fun. The core mechanic is still, like classic Snake, collecting food without crashing. But now team matches have an objective to make competitive games more structured. There's also a Bronze to Grand Master ranking sub system (if enough people play, calibrating this will be interesting) and some fun features like boosting, combos, skins, and Play Of The Game detection.<p>On Rust: One of my original goals for doing this in Rust was so that I could learn the language. That didn't work out as well as I thought it would. Usually I learn by building stuff, but AI got so good that I stopped writing code by hand and preferred to spend my nights & weekends working on what was more intereting to me than borrow checking errors: game design and the high availability stuff.<p>On AI: Who knows if this would have gotten done without AI. Probably not, what with my day job and other things going on in life. It's 200k LOC (most of that is tests don't worry) but still.<p>Anyway, here are the project links. Thank you for reading, I hope you enjoy the game and any feedback is very much appreciated!<p>[0] <a href="https://snaketron.io" rel="nofollow">https://snaketron.io</a><p>[1] <a href="https://github.com/lopatin/snaketron" rel="nofollow">https://github.com/lopatin/snaketron</a><p>[2] <a href="https://news.ycombinator.com/item?id=4028597">https://news.ycombinator.com/item?id=4028597</a> (original post from 2012)</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499499">https://news.ycombinator.com/item?id=49499499</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:23:52 +0000</pubDate><link>https://snaketron.io</link><dc:creator>lopatin</dc:creator><comments>https://news.ycombinator.com/item?id=49499499</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499499</guid></item><item><title><![CDATA[Agents. Your Controls]]></title><description><![CDATA[
<p>Article URL: <a href="https://gryph.sh/">https://gryph.sh/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499486">https://news.ycombinator.com/item?id=49499486</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:23:02 +0000</pubDate><link>https://gryph.sh/</link><dc:creator>kunalsin9h</dc:creator><comments>https://news.ycombinator.com/item?id=49499486</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499486</guid></item><item><title><![CDATA[Show HN: Nohtml.felixs.eu]]></title><description><![CDATA[
<p>This isn't exactly rocket science but its the result of a neat collection of tricks I found allowing you to play the chrome dino runner game without any HTML* or JS :3<p>* On chromium based browsers a small amount of HTML is unfortunately needed because google HATES fun :c</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499459">https://news.ycombinator.com/item?id=49499459</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:19:06 +0000</pubDate><link>https://nohtml.felixs.eu</link><dc:creator>felixseu</dc:creator><comments>https://news.ycombinator.com/item?id=49499459</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499459</guid></item><item><title><![CDATA[With the snip of a gene, scientists hope to erase high cholesterol for life]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.cnn.com/2026/08/28/health/gene-editing-cholesterol-study-wellness">https://www.cnn.com/2026/08/28/health/gene-editing-cholesterol-study-wellness</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499450">https://news.ycombinator.com/item?id=49499450</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:17:56 +0000</pubDate><link>https://www.cnn.com/2026/08/28/health/gene-editing-cholesterol-study-wellness</link><dc:creator>bushwart</dc:creator><comments>https://news.ycombinator.com/item?id=49499450</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499450</guid></item><item><title><![CDATA[Agentic SQL for Free with Qwen3.8 27B and DuckDB]]></title><description><![CDATA[
<p>Article URL: <a href="https://motherduck.com/blog/Agentic-SQL-for-Free-with-Qwen3.8-27B-and-DuckDB/">https://motherduck.com/blog/Agentic-SQL-for-Free-with-Qwen3.8-27B-and-DuckDB/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499447">https://news.ycombinator.com/item?id=49499447</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:17:38 +0000</pubDate><link>https://motherduck.com/blog/Agentic-SQL-for-Free-with-Qwen3.8-27B-and-DuckDB/</link><dc:creator>tosh</dc:creator><comments>https://news.ycombinator.com/item?id=49499447</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499447</guid></item><item><title><![CDATA[Has vibecoding fried your brain?]]></title><description><![CDATA[
<p>Article URL: <a href="https://codeset.ai/fried">https://codeset.ai/fried</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499437">https://news.ycombinator.com/item?id=49499437</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:16:03 +0000</pubDate><link>https://codeset.ai/fried</link><dc:creator>andre15silva</dc:creator><comments>https://news.ycombinator.com/item?id=49499437</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499437</guid></item><item><title><![CDATA[Google Maps Faces Fury for Caving to Trump]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.thedailybeast.com/google-maps-faces-fury-for-caving-to-trumps-lake-america-demand/">https://www.thedailybeast.com/google-maps-faces-fury-for-caving-to-trumps-lake-america-demand/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499423">https://news.ycombinator.com/item?id=49499423</a></p>
<p>Points: 6</p>
<p># Comments: 2</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:14:18 +0000</pubDate><link>https://www.thedailybeast.com/google-maps-faces-fury-for-caving-to-trumps-lake-america-demand/</link><dc:creator>rayrey</dc:creator><comments>https://news.ycombinator.com/item?id=49499423</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499423</guid></item><item><title><![CDATA[Icelanders say no to restarting talks to join the EU]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.politico.eu/article/icelanders-say-no-to-restarting-talks-to-join-the-eu/">https://www.politico.eu/article/icelanders-say-no-to-restarting-talks-to-join-the-eu/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499397">https://news.ycombinator.com/item?id=49499397</a></p>
<p>Points: 3</p>
<p># Comments: 2</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:12:50 +0000</pubDate><link>https://www.politico.eu/article/icelanders-say-no-to-restarting-talks-to-join-the-eu/</link><dc:creator>mikhael</dc:creator><comments>https://news.ycombinator.com/item?id=49499397</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499397</guid></item><item><title><![CDATA[European Commission Revives Push for Encryption Backdoors in ProtectEU Strategy]]></title><description><![CDATA[
<p>Article URL: <a href="https://reclaimthenet.org/eu-protecteu-strategy-encryption-backdoor-law-enforcement">https://reclaimthenet.org/eu-protecteu-strategy-encryption-backdoor-law-enforcement</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499394">https://news.ycombinator.com/item?id=49499394</a></p>
<p>Points: 11</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:12:40 +0000</pubDate><link>https://reclaimthenet.org/eu-protecteu-strategy-encryption-backdoor-law-enforcement</link><dc:creator>nickslaughter02</dc:creator><comments>https://news.ycombinator.com/item?id=49499394</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499394</guid></item><item><title><![CDATA[An interesting website, looks like AI companion but only voice]]></title><description><![CDATA[
<p>Article URL: <a href="https://hers-site.vercel.app/">https://hers-site.vercel.app/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499385">https://news.ycombinator.com/item?id=49499385</a></p>
<p>Points: 1</p>
<p># Comments: 2</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:12:14 +0000</pubDate><link>https://hers-site.vercel.app/</link><dc:creator>Jamessfks123</dc:creator><comments>https://news.ycombinator.com/item?id=49499385</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499385</guid></item><item><title><![CDATA[Show HN: Mktero – a source-linked Markdown reader for Zotero]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/tenglvjun/mktero">https://github.com/tenglvjun/mktero</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499373">https://news.ycombinator.com/item?id=49499373</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:11:15 +0000</pubDate><link>https://github.com/tenglvjun/mktero</link><dc:creator>tenglvjun</dc:creator><comments>https://news.ycombinator.com/item?id=49499373</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499373</guid></item><item><title><![CDATA[2 Gen Z aerospace engineers to conduct first microgravity menstrual flow studies]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.fastcompany.com/91594318/two-gen-z-aerospace-engineers-will-conduct-the-first-menstrual-flow-studies-in-microgravity">https://www.fastcompany.com/91594318/two-gen-z-aerospace-engineers-will-conduct-the-first-menstrual-flow-studies-in-microgravity</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499372">https://news.ycombinator.com/item?id=49499372</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:11:13 +0000</pubDate><link>https://www.fastcompany.com/91594318/two-gen-z-aerospace-engineers-will-conduct-the-first-menstrual-flow-studies-in-microgravity</link><dc:creator>bookofjoe</dc:creator><comments>https://news.ycombinator.com/item?id=49499372</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499372</guid></item><item><title><![CDATA[Lexical laundering: The mainstreaming of antisemitic neologisms from 4chan]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.isdglobal.org/digital-dispatch/lexical-laundering/">https://www.isdglobal.org/digital-dispatch/lexical-laundering/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499368">https://news.ycombinator.com/item?id=49499368</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:10:57 +0000</pubDate><link>https://www.isdglobal.org/digital-dispatch/lexical-laundering/</link><dc:creator>instagraham</dc:creator><comments>https://news.ycombinator.com/item?id=49499368</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499368</guid></item><item><title><![CDATA[A game using sine waves instead of assets [video]]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.youtube.com/watch?v=Qr3VsZYQy4s">https://www.youtube.com/watch?v=Qr3VsZYQy4s</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499354">https://news.ycombinator.com/item?id=49499354</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:10:17 +0000</pubDate><link>https://www.youtube.com/watch?v=Qr3VsZYQy4s</link><dc:creator>VorticonCmdr</dc:creator><comments>https://news.ycombinator.com/item?id=49499354</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499354</guid></item><item><title><![CDATA[The Problem with Left-Wing NIMBYism [video]]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.youtube.com/watch?v=tvTa-GXKxak">https://www.youtube.com/watch?v=tvTa-GXKxak</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499350">https://news.ycombinator.com/item?id=49499350</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:10:11 +0000</pubDate><link>https://www.youtube.com/watch?v=tvTa-GXKxak</link><dc:creator>softwaredoug</dc:creator><comments>https://news.ycombinator.com/item?id=49499350</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499350</guid></item><item><title><![CDATA[Terafab or Terrible Fad]]></title><description><![CDATA[
<p>Article URL: <a href="https://noisebuffer.com">https://noisebuffer.com</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499336">https://news.ycombinator.com/item?id=49499336</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:09:11 +0000</pubDate><link>https://noisebuffer.com</link><dc:creator>noisebuffer</dc:creator><comments>https://news.ycombinator.com/item?id=49499336</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499336</guid></item><item><title><![CDATA[Very Perilous: A sword wounds compendium by the surgeon Ravaton]]></title><description><![CDATA[
<p>Article URL: <a href="https://hemamisfits.com/2020/04/02/very-perilous-a-sword-wounds-compendium-by-the-surgeon-ravaton/">https://hemamisfits.com/2020/04/02/very-perilous-a-sword-wounds-compendium-by-the-surgeon-ravaton/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499330">https://news.ycombinator.com/item?id=49499330</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:08:55 +0000</pubDate><link>https://hemamisfits.com/2020/04/02/very-perilous-a-sword-wounds-compendium-by-the-surgeon-ravaton/</link><dc:creator>bushwart</dc:creator><comments>https://news.ycombinator.com/item?id=49499330</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499330</guid></item><item><title><![CDATA[A lightweight Git CLI extension that adds S3:// support]]></title><description><![CDATA[
<p>Article URL: <a href="https://robertpitt.github.io/git3/">https://robertpitt.github.io/git3/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499310">https://news.ycombinator.com/item?id=49499310</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:06:11 +0000</pubDate><link>https://robertpitt.github.io/git3/</link><dc:creator>robertpitt</dc:creator><comments>https://news.ycombinator.com/item?id=49499310</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499310</guid></item><item><title><![CDATA[Kekdksbdn]]></title><description><![CDATA[

<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499301">https://news.ycombinator.com/item?id=49499301</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:05:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=49499301</link><dc:creator>uieuduurj</dc:creator><comments>https://news.ycombinator.com/item?id=49499301</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499301</guid></item><item><title><![CDATA[China's robots race ahead]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.theverge.com/tech/986167/china-humanoid-robot-games-race">https://www.theverge.com/tech/986167/china-humanoid-robot-games-race</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499298">https://news.ycombinator.com/item?id=49499298</a></p>
<p>Points: 2</p>
<p># Comments: 2</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:04:53 +0000</pubDate><link>https://www.theverge.com/tech/986167/china-humanoid-robot-games-race</link><dc:creator>Brajeshwar</dc:creator><comments>https://news.ycombinator.com/item?id=49499298</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499298</guid></item><item><title><![CDATA[ReactOS 0.4.16]]></title><description><![CDATA[
<p>Article URL: <a href="https://reactos.org/project-news/reactos-0416-released/">https://reactos.org/project-news/reactos-0416-released/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499295">https://news.ycombinator.com/item?id=49499295</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:04:37 +0000</pubDate><link>https://reactos.org/project-news/reactos-0416-released/</link><dc:creator>birdculture</dc:creator><comments>https://news.ycombinator.com/item?id=49499295</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499295</guid></item><item><title><![CDATA[Own Your Intelligence: A How-To Guide]]></title><description><![CDATA[
<p>Article URL: <a href="https://twitter.com/sonyatweetybird/status/2089390902162895350">https://twitter.com/sonyatweetybird/status/2089390902162895350</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499291">https://news.ycombinator.com/item?id=49499291</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:04:14 +0000</pubDate><link>https://twitter.com/sonyatweetybird/status/2089390902162895350</link><dc:creator>gmays</dc:creator><comments>https://news.ycombinator.com/item?id=49499291</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499291</guid></item><item><title><![CDATA[Rust flight controller for the M5Stack Stamp Fly]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/staszewski/stampfly-rust/tree/main">https://github.com/staszewski/stampfly-rust/tree/main</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499286">https://news.ycombinator.com/item?id=49499286</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:03:40 +0000</pubDate><link>https://github.com/staszewski/stampfly-rust/tree/main</link><dc:creator>kamilstaszewski</dc:creator><comments>https://news.ycombinator.com/item?id=49499286</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499286</guid></item><item><title><![CDATA[Real Fly Brain – chase and squash bugs with your cursor]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.realflybrain.com/">https://www.realflybrain.com/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499284">https://news.ycombinator.com/item?id=49499284</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:03:34 +0000</pubDate><link>https://www.realflybrain.com/</link><dc:creator>logicallee</dc:creator><comments>https://news.ycombinator.com/item?id=49499284</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499284</guid></item><item><title><![CDATA[Show HN: Spewer – Delegate Codex/Claude tasks to cheaper models]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/modiqo/spewer">https://github.com/modiqo/spewer</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499265">https://news.ycombinator.com/item?id=49499265</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:01:49 +0000</pubDate><link>https://github.com/modiqo/spewer</link><dc:creator>conikeec</dc:creator><comments>https://news.ycombinator.com/item?id=49499265</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499265</guid></item><item><title><![CDATA[Employers Are Making Job Candidates Jump Through Hoops to Prove They're Real]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.wsj.com/lifestyle/careers/remote-job-interview-applications-fraud-c9022cbe">https://www.wsj.com/lifestyle/careers/remote-job-interview-applications-fraud-c9022cbe</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499263">https://news.ycombinator.com/item?id=49499263</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 15:01:46 +0000</pubDate><link>https://www.wsj.com/lifestyle/careers/remote-job-interview-applications-fraud-c9022cbe</link><dc:creator>bryan0</dc:creator><comments>https://news.ycombinator.com/item?id=49499263</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499263</guid></item><item><title><![CDATA[Tell HN: HN's IPv6 address is down]]></title><description><![CDATA[
<p>HN on IPv4 works fine (209.216.230.207) but appears down on IPv6 (2606:7100:1:67::26), checked from multiple points. None of the HN status monitors appear to catch this. “Happy eyeballs” keeps everything working fine on a dual IPv4/IPv6 network, but in my case I am visiting via a proxy that apparently prefers IPv6, switching over only when it hits a timeout. (It’s a testament to the gradual IPv6 rollout that this works 99.9% of the time!).</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499217">https://news.ycombinator.com/item?id=49499217</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:57:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=49499217</link><dc:creator>nneonneo</dc:creator><comments>https://news.ycombinator.com/item?id=49499217</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499217</guid></item><item><title><![CDATA[2027 AI Power Shortfall of 15 GW]]></title><description><![CDATA[
<p>Article URL: <a href="https://grok.com/share/bGVnYWN5_4f06d401-90e9-4ed4-bad8-89e3b4fadde2">https://grok.com/share/bGVnYWN5_4f06d401-90e9-4ed4-bad8-89e3b4fadde2</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499179">https://news.ycombinator.com/item?id=49499179</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:52:22 +0000</pubDate><link>https://grok.com/share/bGVnYWN5_4f06d401-90e9-4ed4-bad8-89e3b4fadde2</link><dc:creator>gmays</dc:creator><comments>https://news.ycombinator.com/item?id=49499179</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499179</guid></item><item><title><![CDATA[Show HN: Murmell – Collaborative cloud canvas for coding agents]]></title><description><![CDATA[
<p>Hey HN!<p>I'm Moss'Ab. Murmell (<a href="https://murmell.com" rel="nofollow">https://murmell.com</a>) is an infinite canvas where coding agents run together in the cloud instead of on your laptop.<p>It's like Google Docs, except the other editors are you, your teammates, and a set of agents all working in the same canvas.<p>Short demo: <a href="https://app.murmell.com/demo" rel="nofollow">https://app.murmell.com/demo</a><p>The idea came out of a YC hackathon. We were trying to build the thing under extrem pressure, deploying at the very last minute, but with several agents working in parallel, all the branches collided. Everything broke at the worst
possible moment and we spent the end of it untangling instead of building. We didn't win.<p>Murmell is the thing I wished we'd had that day:
one place where the agents and the people can see each other work,
on machines that don't belong to any one laptop.<p>Each canvas gets its own machine in the cloud. Close your laptop and the agents keep going; open it again anywhere, or have a teammate open the same canvas by sending him the link, and you're inside the same session rather than a copy
of it. The work stays exactly where you left it : same branches, same dev server still running, so an agent picks up mid-task instead of starting from scratch.<p>And you can literally collaborate with your team like google docs, it's se same system, read of edit link, they connect they can type on your terminal, you can see their mouse, wich terminal they're typing in. 
And you can interact wich each other sessions, it's pretty useful instead of sharing a screen, copying a prompt, etc.<p>The hardest part was building the cloud infrastructure, trying to make it scalable, and to manage the sessions to make the best experience possible: when the VM shuts down, it snapshots everything and restores everything when you come back, even the conversation with your terminal, it's stored with a system that i built like obsidian wich also make you save a little bit of tokens.<p>So the answer to that hackathon is file claiming. Before an agent works on something, it claims the paths, it's an exclusive lease with a TTL, so nothing stays locked forever because an agent died mid-task. And if another agent asking for the same file gets denied, the denial tells it who holds it, how long is left, and to either pick other work in its scope or message the holder (the agents can communicate through the board)<p>A watcher classifies every write, so if anything writes inside someone else's claim it shows up on the canvas as a
collision right then, instead of as a merge conflict you discover an hour later. And when an agent is done, it can hand its claim to the next one.<p>And agents never hold your provider keys either, they get a token, and a proxy on the container's loopback swaps it for the real key on the way out, which makes a leaked token worthless outside that container.<p>Murmell is paid. I've put prices at 50% off for now, because it's still not where I want to take it yet. 
It is fully usable though: I develop Murmell with Murmell, every day (and tbh it's save soooo much time to us with my cofounder)<p>And to be fully transparent with the actual prices it costs us much than we are earning but the goal is to collect feedback to make Murmell as good as possible<p>For context: I'm 19, a 4th year computer engineering student, and I've been on this for about three and a half months, day and night. I discovered claude code after my father showed me first Windsurf (today Devin) for a python homework in 2024, and i think i never went somewhere without my laptop since then lol.<p>So feel free to comment or to give feedback, or even subscribe to support the project :)</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499167">https://news.ycombinator.com/item?id=49499167</a></p>
<p>Points: 3</p>
<p># Comments: 2</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:51:05 +0000</pubDate><link>https://murmell.com/</link><dc:creator>Mossab22</dc:creator><comments>https://news.ycombinator.com/item?id=49499167</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499167</guid></item><item><title><![CDATA[Dolphins and Other Lovers]]></title><description><![CDATA[
<p>Article URL: <a href="https://aeon.co/essays/why-the-andoque-of-the-amazon-fear-the-seductive-dolphin">https://aeon.co/essays/why-the-andoque-of-the-amazon-fear-the-seductive-dolphin</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499151">https://news.ycombinator.com/item?id=49499151</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:49:05 +0000</pubDate><link>https://aeon.co/essays/why-the-andoque-of-the-amazon-fear-the-seductive-dolphin</link><dc:creator>the-mitr</dc:creator><comments>https://news.ycombinator.com/item?id=49499151</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499151</guid></item><item><title><![CDATA[What agent skills are made of: programming languages]]></title><description><![CDATA[
<p>Article URL: <a href="https://plicara.ai/research/agent-skill-programming-languages/">https://plicara.ai/research/agent-skill-programming-languages/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499145">https://news.ycombinator.com/item?id=49499145</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:48:17 +0000</pubDate><link>https://plicara.ai/research/agent-skill-programming-languages/</link><dc:creator>3Mathematicians</dc:creator><comments>https://news.ycombinator.com/item?id=49499145</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499145</guid></item><item><title><![CDATA[Show HN: Sapporta – build database applications for power users]]></title><description><![CDATA[
<p>Sapporta is an MIT licensed framework built on top of Hono and React.<p>To me it is a reenactment of dBase, FoxPro, and MS Access, but for the LLM era. All of these tools had application wizards that would create tables, queries, forms, and reports, and I think that is still a valid composition for database applications.<p>So in Sapporta, the moment you define a table, you immediately get a data-grid that gives you comboboxes for foreign key fields, has sorting, filtering, and the various affordances that tools like AirTable and NocoDB provide.<p>(The datagrid is built from scratch, as AgGrid, HandsOnTable etc. were commercial and didn't have nested grids with fluid keyboard interaction)<p>It is also fully agentic - that was what got me started building this in the first place. I was building a double-entry book-keeping system and I wanted my agents to be able to import bank statements, classify them, and insert them into the database accurately. The project, built on Sapporta, does all that now, and agents have been able to reconcile entries and find mistakes that used to be very frustrating when done manually. Being able to operate your database system fully agentically is magical and applying that on our own personal tools is a thing of joy.<p>The datastore is currently SQLite, and in deployment it can run as a single Node.js process (not even a static file server necessary) and there is a Dockerfile that works seamlessly.<p>I'm looking forward to your thoughts. Thanks!</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499123">https://news.ycombinator.com/item?id=49499123</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:45:48 +0000</pubDate><link>https://sapporta.com/</link><dc:creator>jasim</dc:creator><comments>https://news.ycombinator.com/item?id=49499123</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499123</guid></item><item><title><![CDATA[Revision Prompting asks the LLM for a patch when the input changes]]></title><description><![CDATA[
<p>Article URL: <a href="https://revisionprompting.info/home">https://revisionprompting.info/home</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499115">https://news.ycombinator.com/item?id=49499115</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:45:07 +0000</pubDate><link>https://revisionprompting.info/home</link><dc:creator>blasssky</dc:creator><comments>https://news.ycombinator.com/item?id=49499115</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499115</guid></item><item><title><![CDATA[Wealthy Americans Find Another Tax-Free Way to Invest]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.wsj.com/finance/investing/a-roth-ira-on-steroids-wealthy-americans-find-another-tax-free-way-to-invest-82816ffc">https://www.wsj.com/finance/investing/a-roth-ira-on-steroids-wealthy-americans-find-another-tax-free-way-to-invest-82816ffc</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499099">https://news.ycombinator.com/item?id=49499099</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:42:56 +0000</pubDate><link>https://www.wsj.com/finance/investing/a-roth-ira-on-steroids-wealthy-americans-find-another-tax-free-way-to-invest-82816ffc</link><dc:creator>Betelbuddy</dc:creator><comments>https://news.ycombinator.com/item?id=49499099</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499099</guid></item><item><title><![CDATA[Zig: Pointer Stability for ArrayLists]]></title><description><![CDATA[
<p>Article URL: <a href="https://ziglang.org/devlog/2026/#2026-08-27">https://ziglang.org/devlog/2026/#2026-08-27</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499095">https://news.ycombinator.com/item?id=49499095</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:41:53 +0000</pubDate><link>https://ziglang.org/devlog/2026/#2026-08-27</link><dc:creator>tosh</dc:creator><comments>https://news.ycombinator.com/item?id=49499095</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499095</guid></item><item><title><![CDATA[Scaling Domain Data Repetition in LLM Pretraining]]></title><description><![CDATA[
<p>Article URL: <a href="https://arxiv.org/abs/2608.14071">https://arxiv.org/abs/2608.14071</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499067">https://news.ycombinator.com/item?id=49499067</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:38:32 +0000</pubDate><link>https://arxiv.org/abs/2608.14071</link><dc:creator>gmays</dc:creator><comments>https://news.ycombinator.com/item?id=49499067</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499067</guid></item><item><title><![CDATA[Emacs vs. Vim 2026: 24.3% vs. 8% Usage, 20x Memory Gap]]></title><description><![CDATA[
<p>Article URL: <a href="https://tech-insider.org/emacs-vs-vim-2026/">https://tech-insider.org/emacs-vs-vim-2026/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499051">https://news.ycombinator.com/item?id=49499051</a></p>
<p>Points: 5</p>
<p># Comments: 3</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:36:34 +0000</pubDate><link>https://tech-insider.org/emacs-vs-vim-2026/</link><dc:creator>pir8life4me</dc:creator><comments>https://news.ycombinator.com/item?id=49499051</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499051</guid></item><item><title><![CDATA[Free and Open-Source Web Search for Your AI Agents]]></title><description><![CDATA[
<p>Article URL: <a href="https://pypi.org/project/simurg/">https://pypi.org/project/simurg/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499048">https://news.ycombinator.com/item?id=49499048</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:36:02 +0000</pubDate><link>https://pypi.org/project/simurg/</link><dc:creator>lebagetdefrance</dc:creator><comments>https://news.ycombinator.com/item?id=49499048</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499048</guid></item><item><title><![CDATA[Remembering the King who Drowned]]></title><description><![CDATA[
<p>Article URL: <a href="https://komando1.substack.com/p/remembering-the-king-who-drowned">https://komando1.substack.com/p/remembering-the-king-who-drowned</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499044">https://news.ycombinator.com/item?id=49499044</a></p>
<p>Points: 2</p>
<p># Comments: 2</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:35:39 +0000</pubDate><link>https://komando1.substack.com/p/remembering-the-king-who-drowned</link><dc:creator>inglor_cz</dc:creator><comments>https://news.ycombinator.com/item?id=49499044</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499044</guid></item><item><title><![CDATA[Show HN: FinBridge – Korean stock market data for AI agents (MCP)]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.gronox.kr/">https://www.gronox.kr/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499026">https://news.ycombinator.com/item?id=49499026</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:33:36 +0000</pubDate><link>https://www.gronox.kr/</link><dc:creator>gronox-kr</dc:creator><comments>https://news.ycombinator.com/item?id=49499026</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499026</guid></item><item><title><![CDATA[Keeping an open source project going when GitHub stars slow down]]></title><description><![CDATA[
<p>Article URL: <a href="https://twitter.com/paul_h0rn/status/2094070350120091915">https://twitter.com/paul_h0rn/status/2094070350120091915</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499007">https://news.ycombinator.com/item?id=49499007</a></p>
<p>Points: 3</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:32:16 +0000</pubDate><link>https://twitter.com/paul_h0rn/status/2094070350120091915</link><dc:creator>BlueBerry2001</dc:creator><comments>https://news.ycombinator.com/item?id=49499007</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499007</guid></item><item><title><![CDATA[Ethical Issues in Advanced Artificial Intelligence]]></title><description><![CDATA[
<p>Article URL: <a href="https://nickbostrom.com/ethics/ai">https://nickbostrom.com/ethics/ai</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49499001">https://news.ycombinator.com/item?id=49499001</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:31:59 +0000</pubDate><link>https://nickbostrom.com/ethics/ai</link><dc:creator>Anon84</dc:creator><comments>https://news.ycombinator.com/item?id=49499001</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49499001</guid></item><item><title><![CDATA[Show HN: Cushion – PouchDB on Deno KV]]></title><description><![CDATA[
<p>This project mostly came from knowing that Deno KV is backed by FoundationDB and that there were (are?) plans to use Foundation for CouchDB 4.0 too.<p>I like working on Deno. I like working in CouchDB. I like Deno KV but don’t enjoy the ergonomics of it.<p>So Cushion was mostly made for my comfort. PouchDB with Deno KV as the storage adapter.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498995">https://news.ycombinator.com/item?id=49498995</a></p>
<p>Points: 4</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:31:22 +0000</pubDate><link>https://jsr.io/@mikehall314/cushion</link><dc:creator>mikehall314</dc:creator><comments>https://news.ycombinator.com/item?id=49498995</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498995</guid></item><item><title><![CDATA[DNS Abuse and Criminal Infrastructure]]></title><description><![CDATA[
<p>Article URL: <a href="https://labs.ripe.net/author/andrew_campling/dns-abuse-and-criminal-infrastructure-beyond-definitions-and-blocklists/">https://labs.ripe.net/author/andrew_campling/dns-abuse-and-criminal-infrastructure-beyond-definitions-and-blocklists/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498993">https://news.ycombinator.com/item?id=49498993</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:30:55 +0000</pubDate><link>https://labs.ripe.net/author/andrew_campling/dns-abuse-and-criminal-infrastructure-beyond-definitions-and-blocklists/</link><dc:creator>jruohonen</dc:creator><comments>https://news.ycombinator.com/item?id=49498993</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498993</guid></item><item><title><![CDATA[Doom Played on Series of 555 Timers]]></title><description><![CDATA[
<p>Article URL: <a href="https://hackaday.com/2026/08/28/doom-played-on-series-of-555-timers/">https://hackaday.com/2026/08/28/doom-played-on-series-of-555-timers/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498989">https://news.ycombinator.com/item?id=49498989</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:30:32 +0000</pubDate><link>https://hackaday.com/2026/08/28/doom-played-on-series-of-555-timers/</link><dc:creator>nickbild</dc:creator><comments>https://news.ycombinator.com/item?id=49498989</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498989</guid></item><item><title><![CDATA[Europe's summer drought is so extreme that desertification is a growing threat]]></title><description><![CDATA[
<p>Article URL: <a href="https://fortune.com/2026/08/29/europe-summer-drought-desertification-threat-rivers-fish/">https://fortune.com/2026/08/29/europe-summer-drought-desertification-threat-rivers-fish/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498978">https://news.ycombinator.com/item?id=49498978</a></p>
<p>Points: 38</p>
<p># Comments: 25</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:29:25 +0000</pubDate><link>https://fortune.com/2026/08/29/europe-summer-drought-desertification-threat-rivers-fish/</link><dc:creator>Brajeshwar</dc:creator><comments>https://news.ycombinator.com/item?id=49498978</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498978</guid></item><item><title><![CDATA[Getting into Flow with AI Coding]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.natashatherobot.com/p/flow-ai-coding">https://www.natashatherobot.com/p/flow-ai-coding</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498972">https://news.ycombinator.com/item?id=49498972</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:28:54 +0000</pubDate><link>https://www.natashatherobot.com/p/flow-ai-coding</link><dc:creator>ingve</dc:creator><comments>https://news.ycombinator.com/item?id=49498972</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498972</guid></item><item><title><![CDATA[Founder Mode vs. Founder Drift]]></title><description><![CDATA[
<p>Article URL: <a href="https://keithbrown.com/founder-mode-vs-drift/">https://keithbrown.com/founder-mode-vs-drift/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498970">https://news.ycombinator.com/item?id=49498970</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:28:47 +0000</pubDate><link>https://keithbrown.com/founder-mode-vs-drift/</link><dc:creator>tech-pulse</dc:creator><comments>https://news.ycombinator.com/item?id=49498970</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498970</guid></item><item><title><![CDATA[Open Pinball Database]]></title><description><![CDATA[
<p>Article URL: <a href="https://opdb.org/">https://opdb.org/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498945">https://news.ycombinator.com/item?id=49498945</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:26:28 +0000</pubDate><link>https://opdb.org/</link><dc:creator>Tomte</dc:creator><comments>https://news.ycombinator.com/item?id=49498945</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498945</guid></item><item><title><![CDATA[Search BioNumbers – The Database of Useful Biological Numbers]]></title><description><![CDATA[
<p>Article URL: <a href="https://bionumbers.hms.harvard.edu/Search.aspx?task=searchbypop">https://bionumbers.hms.harvard.edu/Search.aspx?task=searchbypop</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498941">https://news.ycombinator.com/item?id=49498941</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:25:47 +0000</pubDate><link>https://bionumbers.hms.harvard.edu/Search.aspx?task=searchbypop</link><dc:creator>Tomte</dc:creator><comments>https://news.ycombinator.com/item?id=49498941</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498941</guid></item><item><title><![CDATA[Ask HN: Fun Productive Phone Hobbies?]]></title><description><![CDATA[
<p>Any recommendations for burning time on your phone in a fun productive way? Chess, ebooks, and HN are my current tops but I’m looking for something creative. Maybe a drawing or coding app? I feel like I’m missing something.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498927">https://news.ycombinator.com/item?id=49498927</a></p>
<p>Points: 2</p>
<p># Comments: 3</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:24:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=49498927</link><dc:creator>bix6</dc:creator><comments>https://news.ycombinator.com/item?id=49498927</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498927</guid></item><item><title><![CDATA[Iran's Unit 4000 and the new architecture of outsourced terrorism]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.israelnationalnews.com/news/432418">https://www.israelnationalnews.com/news/432418</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498890">https://news.ycombinator.com/item?id=49498890</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:18:10 +0000</pubDate><link>https://www.israelnationalnews.com/news/432418</link><dc:creator>pir8life4me</dc:creator><comments>https://news.ycombinator.com/item?id=49498890</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498890</guid></item><item><title><![CDATA[Show HN: An anonymous, no-signup alert app – try it live with GitHub incidents]]></title><description><![CDATA[
<p>Article URL: <a href="https://thenotifier.app/developers/see-it-work/">https://thenotifier.app/developers/see-it-work/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498867">https://news.ycombinator.com/item?id=49498867</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:15:49 +0000</pubDate><link>https://thenotifier.app/developers/see-it-work/</link><dc:creator>bubbamack</dc:creator><comments>https://news.ycombinator.com/item?id=49498867</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498867</guid></item><item><title><![CDATA[7th Branch Prediction Championship: Part I]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.sigarch.org/7th-branch-prediction-championship-part-i/">https://www.sigarch.org/7th-branch-prediction-championship-part-i/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498866">https://news.ycombinator.com/item?id=49498866</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:15:39 +0000</pubDate><link>https://www.sigarch.org/7th-branch-prediction-championship-part-i/</link><dc:creator>jruohonen</dc:creator><comments>https://news.ycombinator.com/item?id=49498866</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498866</guid></item><item><title><![CDATA[Robots: We Can't Look Away – and Can't Stop Worrying]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.bajura.online/2026/08/robots-why-we-cant-look-away-and-cant.html">https://www.bajura.online/2026/08/robots-why-we-cant-look-away-and-cant.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498862">https://news.ycombinator.com/item?id=49498862</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:15:26 +0000</pubDate><link>https://www.bajura.online/2026/08/robots-why-we-cant-look-away-and-cant.html</link><dc:creator>AllForAll</dc:creator><comments>https://news.ycombinator.com/item?id=49498862</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498862</guid></item><item><title><![CDATA[Rapidly spreading genetic variants make parasites resistant to malaria treatment]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.brown.edu/news/2026-08-17/malaria-drug-resistance">https://www.brown.edu/news/2026-08-17/malaria-drug-resistance</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498861">https://news.ycombinator.com/item?id=49498861</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:15:06 +0000</pubDate><link>https://www.brown.edu/news/2026-08-17/malaria-drug-resistance</link><dc:creator>gmays</dc:creator><comments>https://news.ycombinator.com/item?id=49498861</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498861</guid></item><item><title><![CDATA[My BC-250 Journey (With 40 CUs Unlocked)]]></title><description><![CDATA[
<p>Article URL: <a href="https://worldofmatthew.com/blog/bc250/">https://worldofmatthew.com/blog/bc250/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498860">https://news.ycombinator.com/item?id=49498860</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:14:58 +0000</pubDate><link>https://worldofmatthew.com/blog/bc250/</link><dc:creator>worldofmatthew</dc:creator><comments>https://news.ycombinator.com/item?id=49498860</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498860</guid></item><item><title><![CDATA[China Tobacco products have likely caused at least 57M deaths since 1990]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.theexamination.org/articles/deadliest-company-in-the-world">https://www.theexamination.org/articles/deadliest-company-in-the-world</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498852">https://news.ycombinator.com/item?id=49498852</a></p>
<p>Points: 3</p>
<p># Comments: 3</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:14:04 +0000</pubDate><link>https://www.theexamination.org/articles/deadliest-company-in-the-world</link><dc:creator>cwwc</dc:creator><comments>https://news.ycombinator.com/item?id=49498852</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498852</guid></item><item><title><![CDATA[Icelanders vote 'no' to talks aimed at joining the EU in close referendum]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.npr.org/2026/08/29/nx-s1-5948759/iceland-european-union-referendum-vote">https://www.npr.org/2026/08/29/nx-s1-5948759/iceland-european-union-referendum-vote</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498834">https://news.ycombinator.com/item?id=49498834</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:12:21 +0000</pubDate><link>https://www.npr.org/2026/08/29/nx-s1-5948759/iceland-european-union-referendum-vote</link><dc:creator>elsewhen</dc:creator><comments>https://news.ycombinator.com/item?id=49498834</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498834</guid></item><item><title><![CDATA[The Law of Leaky Abstractions]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.joelonsoftware.com/2002/11/11/the-law-of-leaky-abstractions/">https://www.joelonsoftware.com/2002/11/11/the-law-of-leaky-abstractions/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498828">https://news.ycombinator.com/item?id=49498828</a></p>
<p>Points: 2</p>
<p># Comments: 4</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:11:37 +0000</pubDate><link>https://www.joelonsoftware.com/2002/11/11/the-law-of-leaky-abstractions/</link><dc:creator>maayank</dc:creator><comments>https://news.ycombinator.com/item?id=49498828</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498828</guid></item><item><title><![CDATA[Dario Amodei says Anthropic is 'not interested in destroying anyone']]></title><description><![CDATA[
<p>Article URL: <a href="https://www.businessinsider.com/dario-amodei-anthropic-not-destroying-saas-2026-8">https://www.businessinsider.com/dario-amodei-anthropic-not-destroying-saas-2026-8</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498825">https://news.ycombinator.com/item?id=49498825</a></p>
<p>Points: 1</p>
<p># Comments: 2</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:11:12 +0000</pubDate><link>https://www.businessinsider.com/dario-amodei-anthropic-not-destroying-saas-2026-8</link><dc:creator>potatobox</dc:creator><comments>https://news.ycombinator.com/item?id=49498825</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498825</guid></item><item><title><![CDATA[Show HN: Open SAR-COP – AI-generated common operating picture for disasters]]></title><description><![CDATA[
<p>Article URL: <a href="https://open-sar-cop.github.io">https://open-sar-cop.github.io</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498819">https://news.ycombinator.com/item?id=49498819</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:10:20 +0000</pubDate><link>https://open-sar-cop.github.io</link><dc:creator>Euraxluo</dc:creator><comments>https://news.ycombinator.com/item?id=49498819</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498819</guid></item><item><title><![CDATA[Open science mid-year review: ten news stories from early 2026]]></title><description><![CDATA[
<p>Article URL: <a href="https://blogs.helsinki.fi/thinkopen/open-science-review-2026-mid-year/">https://blogs.helsinki.fi/thinkopen/open-science-review-2026-mid-year/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498811">https://news.ycombinator.com/item?id=49498811</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:09:41 +0000</pubDate><link>https://blogs.helsinki.fi/thinkopen/open-science-review-2026-mid-year/</link><dc:creator>jruohonen</dc:creator><comments>https://news.ycombinator.com/item?id=49498811</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498811</guid></item><item><title><![CDATA[METR and Redwood Offer Holy %^ Postmortem of the HuggingFace Hack]]></title><description><![CDATA[
<p>Article URL: <a href="https://thezvi.wordpress.com/2026/08/29/metr-and-redwood-offer-holy-postmortem-of-the-huggingface-hack/">https://thezvi.wordpress.com/2026/08/29/metr-and-redwood-offer-holy-postmortem-of-the-huggingface-hack/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498787">https://news.ycombinator.com/item?id=49498787</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:06:54 +0000</pubDate><link>https://thezvi.wordpress.com/2026/08/29/metr-and-redwood-offer-holy-postmortem-of-the-huggingface-hack/</link><dc:creator>catbird</dc:creator><comments>https://news.ycombinator.com/item?id=49498787</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498787</guid></item><item><title><![CDATA[Google removed the URLs. Only for the people who resell them]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.scraping.club/p/google-removed-the-urls-serp">https://www.scraping.club/p/google-removed-the-urls-serp</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498764">https://news.ycombinator.com/item?id=49498764</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:04:38 +0000</pubDate><link>https://www.scraping.club/p/google-removed-the-urls-serp</link><dc:creator>PigiVinci83</dc:creator><comments>https://news.ycombinator.com/item?id=49498764</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498764</guid></item><item><title><![CDATA[Enpass Summer Sale]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.enpass.io/pricing/">https://www.enpass.io/pricing/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498760">https://news.ycombinator.com/item?id=49498760</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:03:51 +0000</pubDate><link>https://www.enpass.io/pricing/</link><dc:creator>Beijinger</dc:creator><comments>https://news.ycombinator.com/item?id=49498760</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498760</guid></item><item><title><![CDATA[DOJ blames China for string of hacks targeting federal agencies and hospitals]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.politico.com/news/2026/08/26/doj-fbi-china-hacks-01050956">https://www.politico.com/news/2026/08/26/doj-fbi-china-hacks-01050956</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498756">https://news.ycombinator.com/item?id=49498756</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:02:44 +0000</pubDate><link>https://www.politico.com/news/2026/08/26/doj-fbi-china-hacks-01050956</link><dc:creator>pir8life4me</dc:creator><comments>https://news.ycombinator.com/item?id=49498756</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498756</guid></item><item><title><![CDATA[A European Tombola: Elect Politicians, Randomize Their Responsibilities]]></title><description><![CDATA[
<p>Article URL: <a href="https://coffee.link/the-european-tombola/">https://coffee.link/the-european-tombola/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498746">https://news.ycombinator.com/item?id=49498746</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:01:30 +0000</pubDate><link>https://coffee.link/the-european-tombola/</link><dc:creator>PhilKunz</dc:creator><comments>https://news.ycombinator.com/item?id=49498746</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498746</guid></item><item><title><![CDATA[A Society of Cheats]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.theatlantic.com/ideas/2026/08/ai-use-college-cheat/688451/">https://www.theatlantic.com/ideas/2026/08/ai-use-college-cheat/688451/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498736">https://news.ycombinator.com/item?id=49498736</a></p>
<p>Points: 6</p>
<p># Comments: 2</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:00:28 +0000</pubDate><link>https://www.theatlantic.com/ideas/2026/08/ai-use-college-cheat/688451/</link><dc:creator>fortran77</dc:creator><comments>https://news.ycombinator.com/item?id=49498736</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498736</guid></item><item><title><![CDATA[Keeping "Engineering" in "Software Engineering"]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.maxgale.co/p/keeping-engineering-in-software-engineering">https://blog.maxgale.co/p/keeping-engineering-in-software-engineering</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498732">https://news.ycombinator.com/item?id=49498732</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:00:08 +0000</pubDate><link>https://blog.maxgale.co/p/keeping-engineering-in-software-engineering</link><dc:creator>dimes</dc:creator><comments>https://news.ycombinator.com/item?id=49498732</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498732</guid></item><item><title><![CDATA[Drug that targets an inflammatory enzyme could help prevent lung cancer]]></title><description><![CDATA[
<p>Article URL: <a href="https://news.mit.edu/2026/drug-targeting-inflammatory-enzyme-could-help-prevent-lung-cancer-0814">https://news.mit.edu/2026/drug-targeting-inflammatory-enzyme-could-help-prevent-lung-cancer-0814</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498731">https://news.ycombinator.com/item?id=49498731</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 14:00:08 +0000</pubDate><link>https://news.mit.edu/2026/drug-targeting-inflammatory-enzyme-could-help-prevent-lung-cancer-0814</link><dc:creator>gmays</dc:creator><comments>https://news.ycombinator.com/item?id=49498731</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498731</guid></item><item><title><![CDATA[Fast Forward]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.nytimes.com/2026/08/29/briefing/fast-forward.html">https://www.nytimes.com/2026/08/29/briefing/fast-forward.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498726">https://news.ycombinator.com/item?id=49498726</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:59:40 +0000</pubDate><link>https://www.nytimes.com/2026/08/29/briefing/fast-forward.html</link><dc:creator>saikatsg</dc:creator><comments>https://news.ycombinator.com/item?id=49498726</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498726</guid></item><item><title><![CDATA[Azure Linux Desktop Concept]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.boxofcables.dev/i-made-an-azure-linux-desktop-concept-to-run-on-my-thinkpad/">https://www.boxofcables.dev/i-made-an-azure-linux-desktop-concept-to-run-on-my-thinkpad/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498717">https://news.ycombinator.com/item?id=49498717</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:58:09 +0000</pubDate><link>https://www.boxofcables.dev/i-made-an-azure-linux-desktop-concept-to-run-on-my-thinkpad/</link><dc:creator>kristianpaul</dc:creator><comments>https://news.ycombinator.com/item?id=49498717</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498717</guid></item><item><title><![CDATA[A Window into an Alternative Timeline of Music]]></title><description><![CDATA[
<p>Article URL: <a href="https://undercoverlocal.wordpress.com/2026/04/06/a-window-into-an-alternative-timeline-of-music/">https://undercoverlocal.wordpress.com/2026/04/06/a-window-into-an-alternative-timeline-of-music/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498705">https://news.ycombinator.com/item?id=49498705</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:56:37 +0000</pubDate><link>https://undercoverlocal.wordpress.com/2026/04/06/a-window-into-an-alternative-timeline-of-music/</link><dc:creator>airhangerf15</dc:creator><comments>https://news.ycombinator.com/item?id=49498705</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498705</guid></item><item><title><![CDATA[Mechanics of Healthcare]]></title><description><![CDATA[
<p>Article URL: <a href="https://drmaanasjain.substack.com/p/mechanics-of-healthcare">https://drmaanasjain.substack.com/p/mechanics-of-healthcare</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498682">https://news.ycombinator.com/item?id=49498682</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:54:19 +0000</pubDate><link>https://drmaanasjain.substack.com/p/mechanics-of-healthcare</link><dc:creator>thunderbong</dc:creator><comments>https://news.ycombinator.com/item?id=49498682</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498682</guid></item><item><title><![CDATA[DumpsterCluster: From Dumpster Diving to Serving Llama-70B on $60 GPUs]]></title><description><![CDATA[
<p>Article URL: <a href="https://arxiv.org/abs/2608.14614">https://arxiv.org/abs/2608.14614</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498677">https://news.ycombinator.com/item?id=49498677</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:53:38 +0000</pubDate><link>https://arxiv.org/abs/2608.14614</link><dc:creator>bookofjoe</dc:creator><comments>https://news.ycombinator.com/item?id=49498677</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498677</guid></item><item><title><![CDATA[Daring flyover during SA-NZ Rugby Match in Cape Town at 14 meters]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.instagram.com/p/Dco6DYxjs4S/">https://www.instagram.com/p/Dco6DYxjs4S/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498671">https://news.ycombinator.com/item?id=49498671</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:52:12 +0000</pubDate><link>https://www.instagram.com/p/Dco6DYxjs4S/</link><dc:creator>sgt</dc:creator><comments>https://news.ycombinator.com/item?id=49498671</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498671</guid></item><item><title><![CDATA[Why Syracuse Can't Attract the Students It Needs to Pay the Bills]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.wsj.com/us-news/education/syracuse-student-application-enrollment-crisis-budget-ff142896">https://www.wsj.com/us-news/education/syracuse-student-application-enrollment-crisis-budget-ff142896</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498667">https://news.ycombinator.com/item?id=49498667</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:51:49 +0000</pubDate><link>https://www.wsj.com/us-news/education/syracuse-student-application-enrollment-crisis-budget-ff142896</link><dc:creator>alephnerd</dc:creator><comments>https://news.ycombinator.com/item?id=49498667</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498667</guid></item><item><title><![CDATA[i-RAM]]></title><description><![CDATA[
<p>Article URL: <a href="https://en.wikipedia.org/wiki/I-RAM">https://en.wikipedia.org/wiki/I-RAM</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498655">https://news.ycombinator.com/item?id=49498655</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:49:45 +0000</pubDate><link>https://en.wikipedia.org/wiki/I-RAM</link><dc:creator>cassepipe</dc:creator><comments>https://news.ycombinator.com/item?id=49498655</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498655</guid></item><item><title><![CDATA[Cyclists have crashed on Market St. tracks for 130 years. Why can't SF fix them?]]></title><description><![CDATA[
<p>Article URL: <a href="https://sfstandard.com/2026/08/28/market-street-cyclist-safety-hazard/">https://sfstandard.com/2026/08/28/market-street-cyclist-safety-hazard/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498652">https://news.ycombinator.com/item?id=49498652</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:49:21 +0000</pubDate><link>https://sfstandard.com/2026/08/28/market-street-cyclist-safety-hazard/</link><dc:creator>zachwdc</dc:creator><comments>https://news.ycombinator.com/item?id=49498652</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498652</guid></item><item><title><![CDATA[Brave browser adds email aliases to help users evade tracking]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.bleepingcomputer.com/news/security/brave-browser-adds-email-aliases-to-help-users-evade-tracking/">https://www.bleepingcomputer.com/news/security/brave-browser-adds-email-aliases-to-help-users-evade-tracking/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498641">https://news.ycombinator.com/item?id=49498641</a></p>
<p>Points: 3</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:48:37 +0000</pubDate><link>https://www.bleepingcomputer.com/news/security/brave-browser-adds-email-aliases-to-help-users-evade-tracking/</link><dc:creator>Brajeshwar</dc:creator><comments>https://news.ycombinator.com/item?id=49498641</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498641</guid></item><item><title><![CDATA[RSSMonster – An agentic RSS reader built on local embeddings and small models]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/pietheinstrengholt/rssmonster/">https://github.com/pietheinstrengholt/rssmonster/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498634">https://news.ycombinator.com/item?id=49498634</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:47:45 +0000</pubDate><link>https://github.com/pietheinstrengholt/rssmonster/</link><dc:creator>pietheinstrengh</dc:creator><comments>https://news.ycombinator.com/item?id=49498634</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498634</guid></item><item><title><![CDATA[Laser Graffiti]]></title><description><![CDATA[
<p>Article URL: <a href="https://laser.consti.de/">https://laser.consti.de/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498628">https://news.ycombinator.com/item?id=49498628</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:46:53 +0000</pubDate><link>https://laser.consti.de/</link><dc:creator>con</dc:creator><comments>https://news.ycombinator.com/item?id=49498628</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498628</guid></item><item><title><![CDATA[The IBM PC, Part 2: Tsunami]]></title><description><![CDATA[
<p>Article URL: <a href="https://technicshistory.com/2026/08/29/the-ibm-pc-part-2-tsunami/">https://technicshistory.com/2026/08/29/the-ibm-pc-part-2-tsunami/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498614">https://news.ycombinator.com/item?id=49498614</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:45:32 +0000</pubDate><link>https://technicshistory.com/2026/08/29/the-ibm-pc-part-2-tsunami/</link><dc:creator>cfmcdonald</dc:creator><comments>https://news.ycombinator.com/item?id=49498614</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498614</guid></item><item><title><![CDATA[In Chile's Atacama Desert, the biggest telescope ever built is taking shape]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.bbc.com/future/article/20260827-the-biggest-telescope-of-all-time-is-nearly-ready-could-it-reveal-alien-life">https://www.bbc.com/future/article/20260827-the-biggest-telescope-of-all-time-is-nearly-ready-could-it-reveal-alien-life</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498591">https://news.ycombinator.com/item?id=49498591</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:40:50 +0000</pubDate><link>https://www.bbc.com/future/article/20260827-the-biggest-telescope-of-all-time-is-nearly-ready-could-it-reveal-alien-life</link><dc:creator>Betelbuddy</dc:creator><comments>https://news.ycombinator.com/item?id=49498591</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498591</guid></item><item><title><![CDATA[I came across DBYTE, a small programming language]]></title><description><![CDATA[
<p>I recently came across DBYTE, a small programming language that is still in its early stages.
It appears to have started as a personal project for exploring compilers, runtimes, ownership, and native targets. The language is still a work in progress, but there is a website with some documentation and background information.
What caught my attention is the longer-term goal of using DBYTE to build an operating system in the language itself. That is still a long way off, but it seems like an interesting project to follow.
The source repository is currently unavailable, so I’m linking only the project website for now.
I’m curious what people here think about the project and its direction.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498581">https://news.ycombinator.com/item?id=49498581</a></p>
<p>Points: 1</p>
<p># Comments: 3</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:39:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=49498581</link><dc:creator>lexsandra56</dc:creator><comments>https://news.ycombinator.com/item?id=49498581</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498581</guid></item><item><title><![CDATA[Running an LLM in the Browser: Verifying WebGPU, and Local Inference]]></title><description><![CDATA[
<p>Article URL: <a href="https://capytoolkit.com/blog/developer-tools/running-llm-browser-verifying-webgpu-model-hashes-local-inference/">https://capytoolkit.com/blog/developer-tools/running-llm-browser-verifying-webgpu-model-hashes-local-inference/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498526">https://news.ycombinator.com/item?id=49498526</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:33:35 +0000</pubDate><link>https://capytoolkit.com/blog/developer-tools/running-llm-browser-verifying-webgpu-model-hashes-local-inference/</link><dc:creator>ChillyCapy</dc:creator><comments>https://news.ycombinator.com/item?id=49498526</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498526</guid></item><item><title><![CDATA[Crossing Boundaries with Integration Events]]></title><description><![CDATA[
<p>Article URL: <a href="https://deniskyashif.com/2026/08/29/crossing-boundaries-with-integration-events/">https://deniskyashif.com/2026/08/29/crossing-boundaries-with-integration-events/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498506">https://news.ycombinator.com/item?id=49498506</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:31:07 +0000</pubDate><link>https://deniskyashif.com/2026/08/29/crossing-boundaries-with-integration-events/</link><dc:creator>alembic_fumes</dc:creator><comments>https://news.ycombinator.com/item?id=49498506</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498506</guid></item><item><title><![CDATA[FreeToken: Efficient Edge-Native Moe Serving with Bandwidth-Adaptive Execution]]></title><description><![CDATA[
<p>Article URL: <a href="https://arxiv.org/abs/2608.16157">https://arxiv.org/abs/2608.16157</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498484">https://news.ycombinator.com/item?id=49498484</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:28:45 +0000</pubDate><link>https://arxiv.org/abs/2608.16157</link><dc:creator>gmays</dc:creator><comments>https://news.ycombinator.com/item?id=49498484</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498484</guid></item><item><title><![CDATA[TurnBench]]></title><description><![CDATA[
<p>Article URL: <a href="https://turnbench.sesame.com/">https://turnbench.sesame.com/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498478">https://news.ycombinator.com/item?id=49498478</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:27:58 +0000</pubDate><link>https://turnbench.sesame.com/</link><dc:creator>selimonder</dc:creator><comments>https://news.ycombinator.com/item?id=49498478</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498478</guid></item><item><title><![CDATA[But where does taste come from?]]></title><description><![CDATA[
<p>Article URL: <a href="https://dustycloud.org/blog/but-where-does-taste-come-from/">https://dustycloud.org/blog/but-where-does-taste-come-from/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498477">https://news.ycombinator.com/item?id=49498477</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:27:57 +0000</pubDate><link>https://dustycloud.org/blog/but-where-does-taste-come-from/</link><dc:creator>paroneayea</dc:creator><comments>https://news.ycombinator.com/item?id=49498477</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498477</guid></item><item><title><![CDATA[Show HN: I built a physical dream machine for my wife]]></title><description><![CDATA[
<p>Article URL: <a href="https://twitter.com/oblomovius/status/2094053464552698325">https://twitter.com/oblomovius/status/2094053464552698325</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498469">https://news.ycombinator.com/item?id=49498469</a></p>
<p>Points: 1</p>
<p># Comments: 2</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:27:00 +0000</pubDate><link>https://twitter.com/oblomovius/status/2094053464552698325</link><dc:creator>oblo_mov</dc:creator><comments>https://news.ycombinator.com/item?id=49498469</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498469</guid></item><item><title><![CDATA[Ask HN: How do I make sure ChatGPT/Claude/Gemini forget all prior conversations?]]></title><description><![CDATA[
<p>I am referring to the regular chat, not the API. I want to make sure that every time I start a new chat, it is a completely clean slate with no recall from other chats. I have tried turning off memory, I have also tried prompting it to forget everything, which it claims it has done but hasn't.<p>Later in the conversation I will see something like, "Given your expertise in..." or "This ties in nicely with your ...", things that it would only know from prior chats.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498450">https://news.ycombinator.com/item?id=49498450</a></p>
<p>Points: 1</p>
<p># Comments: 4</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:25:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=49498450</link><dc:creator>chirau</dc:creator><comments>https://news.ycombinator.com/item?id=49498450</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498450</guid></item><item><title><![CDATA[ClaudeDevs: We're permanently raising standard weekly limits in Claude Code]]></title><description><![CDATA[
<p>Article URL: <a href="https://twitter.com/chandlerwilcox/status/2093742530659766324">https://twitter.com/chandlerwilcox/status/2093742530659766324</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498441">https://news.ycombinator.com/item?id=49498441</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:24:44 +0000</pubDate><link>https://twitter.com/chandlerwilcox/status/2093742530659766324</link><dc:creator>isolli</dc:creator><comments>https://news.ycombinator.com/item?id=49498441</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498441</guid></item><item><title><![CDATA[Rust Function Overloading – Call for Experimentation]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.rust-lang.org/inside-rust/2026/08/19/overloading-experiment/">https://blog.rust-lang.org/inside-rust/2026/08/19/overloading-experiment/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498434">https://news.ycombinator.com/item?id=49498434</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:23:42 +0000</pubDate><link>https://blog.rust-lang.org/inside-rust/2026/08/19/overloading-experiment/</link><dc:creator>torutofu</dc:creator><comments>https://news.ycombinator.com/item?id=49498434</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498434</guid></item><item><title><![CDATA[Write the Fucking Manual]]></title><description><![CDATA[
<p>Article URL: <a href="https://wtfmbook.com/">https://wtfmbook.com/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49498424">https://news.ycombinator.com/item?id=49498424</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 30 Aug 2026 13:21:57 +0000</pubDate><link>https://wtfmbook.com/</link><dc:creator>theletterf</dc:creator><comments>https://news.ycombinator.com/item?id=49498424</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49498424</guid></item></channel></rss>