<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: dagenix</title><link>https://news.ycombinator.com/user?id=dagenix</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 13 May 2026 16:23:15 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=dagenix" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by dagenix in "CERT is releasing six CVEs for serious security vulnerabilities in dnsmasq"]]></title><description><![CDATA[
<p>If you don't like the debian model, didn't use debian. There are people that like the debian model, it seems like you aren't one of them, though. That doesn't make them wrong.</p>
]]></description><pubDate>Tue, 12 May 2026 20:31:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=48114116</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=48114116</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48114116</guid></item><item><title><![CDATA[New comment by dagenix in "eBay Rejects GameStop's $56B Takeover as Not Credible"]]></title><description><![CDATA[
<p>My understanding is that existing Ebay shareholders would get half cash and half stock. In order to actually profit, those shareholders would need to believe that the combined company's stock could be sold off without taking a significant loss.</p>
]]></description><pubDate>Tue, 12 May 2026 17:42:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=48111624</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=48111624</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48111624</guid></item><item><title><![CDATA[New comment by dagenix in "x86 prefixes and escape opcodes flowchart"]]></title><description><![CDATA[
<p><a href="https://archive.ph/ZMsnQ" rel="nofollow">https://archive.ph/ZMsnQ</a></p>
]]></description><pubDate>Tue, 20 Jan 2026 06:19:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=46688530</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=46688530</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46688530</guid></item><item><title><![CDATA[New comment by dagenix in "I see a future in jj"]]></title><description><![CDATA[
<p>I strongly suspect that its not feasible to colocate pijul and git. git and jj are based on snapshots, while pijul is based on patches. They have very different models.</p>
]]></description><pubDate>Wed, 22 Oct 2025 22:36:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=45676045</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=45676045</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45676045</guid></item><item><title><![CDATA[New comment by dagenix in "I see a future in jj"]]></title><description><![CDATA[
<p>One thing JJ has that git doesn't is the concept of first class conflicts. In JJ, rebasing or merging never fails, but it might record a conflict to resolve later. Git, on the otherhand, forces you to drop we everything to resolve conflicts immediately. It sounds like a small thing - but in my experience, being able to resolve conflicts later when I feel like it is absolutely amazing and really helps reduce context switching.</p>
]]></description><pubDate>Wed, 22 Oct 2025 22:34:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=45676025</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=45676025</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45676025</guid></item><item><title><![CDATA[YouTube agrees to pay Trump $24M to settle lawsuit over Jan. 6 suspension]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.npr.org/2025/09/29/nx-s1-5557371/youtube-trump-lawsuit-settlement">https://www.npr.org/2025/09/29/nx-s1-5557371/youtube-trump-lawsuit-settlement</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45422111">https://news.ycombinator.com/item?id=45422111</a></p>
<p>Points: 10</p>
<p># Comments: 1</p>
]]></description><pubDate>Tue, 30 Sep 2025 05:08:12 +0000</pubDate><link>https://www.npr.org/2025/09/29/nx-s1-5557371/youtube-trump-lawsuit-settlement</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=45422111</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45422111</guid></item><item><title><![CDATA[New comment by dagenix in "Waymo has received our pilot permit allowing for commercial operations at SFO"]]></title><description><![CDATA[
<p>You are supposed to supervise Tesla FSD. Waymo doesn't require someone in the driver's seat at all. They aren't the same thing.</p>
]]></description><pubDate>Tue, 16 Sep 2025 20:50:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=45267850</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=45267850</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45267850</guid></item><item><title><![CDATA[New comment by dagenix in "Python has had async for 10 years – why isn't it more popular?"]]></title><description><![CDATA[
<p>The problem, IMO, with asyncio is that its way, way too complicated. In my experience, anyio (<a href="https://github.com/agronholm/anyio" rel="nofollow">https://github.com/agronholm/anyio</a>) provides a much better interface on top of asyncio. And since it can use asyncio as a backend, it maintains compatibility with the asyncio ecosystem. FastAPI, for example, uses anyio.<p>One thing that I don't see being mentioned in any of the threads here talking about green threads is cancellation. A huge benefit, IMO, of anyio is that it makes cancellation really easy to handle. With asyncio, cancellation is pretty hard. And with green threads, cancellation is often impossible.</p>
]]></description><pubDate>Wed, 03 Sep 2025 02:45:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=45111766</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=45111766</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45111766</guid></item><item><title><![CDATA[New comment by dagenix in "Asyncio: A library with too many sharp corners"]]></title><description><![CDATA[
<p>In my experience, the key to using asyncio is to use anyio. Anyio is an interface that you can use ontop of asyncio and fixes most of its shortcomings.<p><a href="https://anyio.readthedocs.io" rel="nofollow">https://anyio.readthedocs.io</a></p>
]]></description><pubDate>Sun, 27 Jul 2025 02:14:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=44698380</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=44698380</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44698380</guid></item><item><title><![CDATA[New comment by dagenix in "Using uv and PEP 723 for Self-Contained Python Scripts"]]></title><description><![CDATA[
<p>I'm not dismissing uv, I'm critiquing the article.</p>
]]></description><pubDate>Fri, 28 Mar 2025 16:47:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=43507490</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=43507490</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43507490</guid></item><item><title><![CDATA[New comment by dagenix in "Using uv and PEP 723 for Self-Contained Python Scripts"]]></title><description><![CDATA[
<p>> This approach eliminates the need for complex setup tools like requirements.txt or package managers...<p>And yet, the rest of the article is about uv. According to uv itself:<p>> An extremely fast Python package and project manager, written in Rust.<p>It's a package manager!</p>
]]></description><pubDate>Fri, 28 Mar 2025 02:10:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=43500690</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=43500690</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43500690</guid></item><item><title><![CDATA[New comment by dagenix in "Happy 10k Day"]]></title><description><![CDATA[
<p>It doesn't seem like <a href="https://comma.ai/" rel="nofollow">https://comma.ai/</a> has sources either.</p>
]]></description><pubDate>Wed, 12 Mar 2025 04:50:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=43340049</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=43340049</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43340049</guid></item><item><title><![CDATA[New comment by dagenix in "Happy 10k Day"]]></title><description><![CDATA[
<p>I especially like how there is next to no mention about safety on the main page. But at least its only $999 and it has AI and 50k GitHub stars, so, thats nice.</p>
]]></description><pubDate>Wed, 12 Mar 2025 03:46:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=43339781</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=43339781</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43339781</guid></item><item><title><![CDATA[New comment by dagenix in "Happy 10k Day"]]></title><description><![CDATA[
<p>So, a hackier version of Tesla's autopilot? Sounds, uh, terrifying.</p>
]]></description><pubDate>Wed, 12 Mar 2025 03:45:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=43339774</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=43339774</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43339774</guid></item><item><title><![CDATA[New comment by dagenix in "NixOS 24.11 "Vicuña" Released"]]></title><description><![CDATA[
<p>The pretty significant updates to MacOS support are really cool to see!</p>
]]></description><pubDate>Sat, 30 Nov 2024 21:17:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=42284110</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=42284110</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42284110</guid></item><item><title><![CDATA[New comment by dagenix in "Engineers do not get to make startup mistakes when they build ledgers"]]></title><description><![CDATA[
<p><a href="https://en.wikipedia.org/wiki/G._K._Chesterton#Chesterton's_fence" rel="nofollow">https://en.wikipedia.org/wiki/G._K._Chesterton#Chesterton's_...</a></p>
]]></description><pubDate>Fri, 29 Nov 2024 03:18:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=42270506</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=42270506</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42270506</guid></item><item><title><![CDATA[Technical Analysis of Men's 100M Final Photo Finish]]></title><description><![CDATA[
<p>Article URL: <a href="https://old.reddit.com/r/Damnthatsinteresting/comments/1ekb7gt/technical_analysis_of_mens_100m_final_photo_finish/">https://old.reddit.com/r/Damnthatsinteresting/comments/1ekb7gt/technical_analysis_of_mens_100m_final_photo_finish/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=41158117">https://news.ycombinator.com/item?id=41158117</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 05 Aug 2024 04:07:25 +0000</pubDate><link>https://old.reddit.com/r/Damnthatsinteresting/comments/1ekb7gt/technical_analysis_of_mens_100m_final_photo_finish/</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=41158117</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41158117</guid></item><item><title><![CDATA[New comment by dagenix in "Why CSV is still king"]]></title><description><![CDATA[
<p>I don't believe its in the standard library for Rust, even if it is very popular in the Rust ecosystem.</p>
]]></description><pubDate>Fri, 02 Aug 2024 03:05:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=41135755</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=41135755</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41135755</guid></item><item><title><![CDATA[New comment by dagenix in "Node.js adds experimental support for TypeScript"]]></title><description><![CDATA[
<p>Java does jit</p>
]]></description><pubDate>Thu, 25 Jul 2024 05:59:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=41065160</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=41065160</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41065160</guid></item><item><title><![CDATA[New comment by dagenix in "Free-threaded CPython is ready to experiment with"]]></title><description><![CDATA[
<p>> Yes, but the absence of the GIL would make race conditions more likely to happen.<p>Does it though? I'm not saying it doesn't, I'm quite curious. Switching between threads with the GIL is already fairly unpredictable from the perspective of pure-Python code. Does it get significantly more troublesome without the GIL?<p>> Yes. They could run it in multiple threads with the GIL today, but as above, race conditions might not show up as often, so it might not be realized that the code is broken. But also, with the GIL there is the common perception that Python doesn't do multithreading well anyway, so it's less likely to be used for that. With the GIL removed, I suspect many people will want to use multithreading a lot more in Python to parallelize code, without fully realizing the implications.<p>Fair</p>
]]></description><pubDate>Sat, 13 Jul 2024 04:23:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=40951754</link><dc:creator>dagenix</dc:creator><comments>https://news.ycombinator.com/item?id=40951754</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40951754</guid></item></channel></rss>