<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: Aloisius</title><link>https://news.ycombinator.com/user?id=Aloisius</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 14 Apr 2026 11:43:43 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=Aloisius" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by Aloisius in "US and Iran agree to provisional ceasefire"]]></title><description><![CDATA[
<p>Withdrawal of US troops from the region and acceptance of uranium enrichment appears nowhere in the other 10 points.<p>There are permanent US bases in the region.</p>
]]></description><pubDate>Wed, 08 Apr 2026 01:56:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=47683887</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47683887</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47683887</guid></item><item><title><![CDATA[New comment by Aloisius in "US and Iran agree to provisional ceasefire"]]></title><description><![CDATA[
<p>Iran's semi-official Mehr News Agency (via China's state news agency Xinhua[0]) claims the 10 points are:<p>1. U.S. commitment to ensure no further acts of aggression<p>2. Continued Iranian control of the Strait of Hormuz<p>3. Acceptance of Iran's nuclear enrichment rights<p>4. Lifting of all primary sanctions<p>5. Lifting of all secondary sanctions<p>6. Termination of all United Nations Security Council resolutions against Iran<p>7. Termination of all International Atomic Energy Agency Board of Governors resolutions against Iran<p>8. Payment of damages to Iran for loss in the war<p>9. Withdrawal of U.S. combat forces from the region<p>10. Cessation of hostilities on all fronts, including Lebanon<p>Which is <i>much</i> different.<p>[0] <a href="https://english.news.cn/20260408/dd8df6148df94252aaa1d3fbb599e2c6/c.html" rel="nofollow">https://english.news.cn/20260408/dd8df6148df94252aaa1d3fbb59...</a></p>
]]></description><pubDate>Wed, 08 Apr 2026 01:36:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=47683720</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47683720</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47683720</guid></item><item><title><![CDATA[New comment by Aloisius in "US and Iran agree to provisional ceasefire"]]></title><description><![CDATA[
<p>To manipulate the price of oil.</p>
]]></description><pubDate>Wed, 08 Apr 2026 01:06:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=47683443</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47683443</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47683443</guid></item><item><title><![CDATA[New comment by Aloisius in "US and Iran agree to provisional ceasefire"]]></title><description><![CDATA[
<p><i>> It’s a bizarre situation in that US elections have such a huge impact on a world that has no say</i><p>No say (or at least, no influence) might be a bit strong given foreign election interference.<p>I'm sure if Britain or France or whoever wanted to, they could have their intelligence services release dirt on candidates or engage in some dirty tricks.</p>
]]></description><pubDate>Wed, 08 Apr 2026 00:56:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=47683356</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47683356</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47683356</guid></item><item><title><![CDATA[New comment by Aloisius in "Assessing Claude Mythos Preview's cybersecurity capabilities"]]></title><description><![CDATA[
<p>I'd love for them to target their own code base considering we keep seeing security vulnerabilities in claude code.<p>How likely is it that they're not using their latest and greatest for their own projects though? Perhaps their ability to find security flaws is surpassed by their ability to create them.</p>
]]></description><pubDate>Wed, 08 Apr 2026 00:29:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=47683147</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47683147</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47683147</guid></item><item><title><![CDATA[New comment by Aloisius in "A macOS bug that causes TCP networking to stop working after 49.7 days"]]></title><description><![CDATA[
<p>Yes, you are correct. Bad editing on my part.<p>It should be that if tcp_now gets stuck before (<) (2^32 - 30000) ms from boot, it would cause deadline timers for reaping TCP_WAIT would always be greater than tcp_now because it wouldn't wrap. If stuck at or after (>=) (2^32 - 30000), it would cause them to potentially be reaped faster they should be.<p>Actually looking at the code a bit more, it looks like calculate_tcp_clock() is run at least once per hour even when there's no TCP traffic or sockets open, so getting into the state where it never reaps TIME_WAIT sockets which would be hard to predict if this would happen.<p>It also looks like if tcp_now gets stuck, other tcp timers may have problems as well.</p>
]]></description><pubDate>Tue, 07 Apr 2026 18:47:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=47679647</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47679647</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47679647</guid></item><item><title><![CDATA[New comment by Aloisius in "A macOS bug that causes TCP networking to stop working after 49.7 days"]]></title><description><![CDATA[
<p>Might want to update it if you used the blog post explanation because it's incorrect as justinfrankel noted below. From the post:<p><pre><code>    tcp_now   = 4,294,960,000  (frozen at pre-overflow value)
</code></pre>
The mistake in the blog post is timer isn't wrapped, even though it notes it <i>should</i> be:<p><pre><code>    timer     = 4,294,960,000 + 30,000 = 4,294,990,000 - MAX_INT = 22,704
</code></pre>
Therefore:<p><pre><code>    TSTMP_GEQ(4294960000, 22704)
    = 4294960000 - 22704
    = 4294937296
    = 4294937296 >= 0 ?  → true! (not false)
</code></pre>
This is a bug of course, but it would cause sockets in TCP_WAIT state to be reaped anytime tcp_gc() is called, regardless of whether 2*MSL has passed or not. This only happens though if tcp_now gets stuck <i>after</i> 4,294,937,296 ms from boot.<p>A bug similar to what the blog described can happen however if tcp_now gets stuck at least 30 seconds <i>before</i> it it would have wrapped. Since tcp_now is only updated if there is TCP traffic, this can happen if there is no TCP traffic for at least 30 seconds before before it would roll over (MAX_INT ms from boot).<p>It's should be easy to prevent the latter from happening with some TCP traffic, though reaping TCP_WAIT connections early isn't great either.</p>
]]></description><pubDate>Tue, 07 Apr 2026 02:41:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=47670136</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47670136</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47670136</guid></item><item><title><![CDATA[New comment by Aloisius in "A macOS bug that causes TCP networking to stop working after 49.7 days"]]></title><description><![CDATA[
<p>There does appear to be a bug, but it's not what the blog describes.<p>If tcp_now stops updating at <= 2^32 - 30000 milliseconds, then TSTMP_GEQ(tcp_now, timer) will always fail since timer is tcp_now + 30000 which won't wrap.<p>This does look like it is possible since calculate_tcp_clock() which updates tcp_now only runs when there's TCP traffic. So if at 49 days uptime you halted all TCP traffic and waited about a day, tcp_now would be stuck at the value before you halted TCP traffic.<p>In cases where tcp_now gets stuck at > 2^32 - 30000, it looks like TCP sockets in the TIME_WAIT will end up being closed immediately instead of waiting 30 seconds, which isn't great either.</p>
]]></description><pubDate>Mon, 06 Apr 2026 23:50:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=47668945</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47668945</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47668945</guid></item><item><title><![CDATA[New comment by Aloisius in "A macOS bug that causes TCP networking to stop working after 49.7 days"]]></title><description><![CDATA[
<p>It definitely exists, but it could be a completely unrelated issue.<p><a href="https://discussions.apple.com/thread/250867747" rel="nofollow">https://discussions.apple.com/thread/250867747</a></p>
]]></description><pubDate>Mon, 06 Apr 2026 22:13:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=47668012</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47668012</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47668012</guid></item><item><title><![CDATA[New comment by Aloisius in "A macOS bug that causes TCP networking to stop working after 49.7 days"]]></title><description><![CDATA[
<p>Interesting. The article mentions complaints on the forums running Catalina, so that must be something else.</p>
]]></description><pubDate>Mon, 06 Apr 2026 21:49:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=47667677</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47667677</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47667677</guid></item><item><title><![CDATA[New comment by Aloisius in "A macOS bug that causes TCP networking to stop working after 49.7 days"]]></title><description><![CDATA[
<p>You want to drop the wc -l.<p>Mac `grep -c` counts lines that match, so it always prints 1 line, so piping to wc -l will always return 1.<p>Or just open up and do netstat -an |grep TCP_WAIT and just watch it. If any don't disappear after a few minutes, then you're seeing the issue.</p>
]]></description><pubDate>Mon, 06 Apr 2026 21:43:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=47667601</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47667601</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47667601</guid></item><item><title><![CDATA[New comment by Aloisius in "A macOS bug that causes TCP networking to stop working after 49.7 days"]]></title><description><![CDATA[
<p>According to the post:<p>$ netstat -an | grep -c TIME_WAIT<p>If the count it returns keeps growing, you're seeing a slow leak. At some point, new connections will start failing. How soon depends entirely on how quickly your machine closes new connections.<p>Since a lot of client traffic involves the server closing connections instead, I imagine it could take a while.<p>It's unclear if it'll leak whenever your mac closes or only when it fails to get a (FIN, ACK) back from the peer so the TCP_WAIT garbage collector runs. If it's the latter, then it could take substantially longer, depending on connection quality.</p>
]]></description><pubDate>Mon, 06 Apr 2026 21:24:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=47667341</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47667341</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47667341</guid></item><item><title><![CDATA[New comment by Aloisius in "LinkedIn is searching your browser extensions"]]></title><description><![CDATA[
<p>This only works if the web page knows the random per-install id associated with an extension.<p>That can only happen if the extension itself leaks it to the web page and if that happens, scanning isn't necessary since it already leaked what it is to the webpage. It also doesn't tell you <i>what</i> extension it is, unless again, the extension leaks it to the webpage.<p>The attack on Chrome is far more useful for attackers as web pages can scan using the chrome store's extension ID instead.</p>
]]></description><pubDate>Thu, 02 Apr 2026 18:09:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=47618039</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47618039</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47618039</guid></item><item><title><![CDATA[New comment by Aloisius in "The Claude Code Leak"]]></title><description><![CDATA[
<p>The copyright office has indicated that AI generated elements lacking human contributions to the expression (rather than input) would still not be copyrightable even if some human authored elements are made to the expression as well.<p>Seems like it would be a nightmare to provide evidence of what parts of a half a million line codebase were written by humans if no one bothered to track it.</p>
]]></description><pubDate>Thu, 02 Apr 2026 06:53:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=47610850</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47610850</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47610850</guid></item><item><title><![CDATA[New comment by Aloisius in "Anthropic Races to Contain Leak of Code Behind Claude AI Agent"]]></title><description><![CDATA[
<p>The award is damages which would be minimal in most cases.</p>
]]></description><pubDate>Wed, 01 Apr 2026 19:52:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=47605684</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47605684</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47605684</guid></item><item><title><![CDATA[New comment by Aloisius in "The Claude Code Source Leak: fake tools, frustration regexes, undercover mode"]]></title><description><![CDATA[
<p>Given trade secrets can't be enforced once they are made public and contracts don't bind anyone who hasn't signed them, it's not a great substitute for copyright.<p>My guess is companies will simply pretend like generated code is copyrighted, file fraudulent DCMA notices if leaks happen and hope no one decides to challenge them in court.</p>
]]></description><pubDate>Wed, 01 Apr 2026 19:42:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=47605574</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47605574</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47605574</guid></item><item><title><![CDATA[New comment by Aloisius in "Data centers are transitioning from AC to DC"]]></title><description><![CDATA[
<p>This article seems to imply that 800V DC is high-voltage DC, but that seems quite low.</p>
]]></description><pubDate>Wed, 25 Mar 2026 02:19:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=47512382</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47512382</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47512382</guid></item><item><title><![CDATA[New comment by Aloisius in "Arm AGI CPU"]]></title><description><![CDATA[
<p><i>> There is a long history of people arguing that intelligence is actually the ability to predict accurately.</i><p>That page describes a few recent CS people in AI arguing intelligence is being able to predict accurately which is like carpenters declaring all problems can be solved with a hammer.<p>AI "reasoning" is human-like in the sense that it is similar to how humans <i>communicate</i> reasoning, but that's not how humans mentally reason.</p>
]]></description><pubDate>Tue, 24 Mar 2026 22:01:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=47510076</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47510076</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47510076</guid></item><item><title><![CDATA[New comment by Aloisius in "The Los Angeles Aqueduct Is Wild"]]></title><description><![CDATA[
<p>The achievement is the speed the train can run at. Trains going over the old floating railway bridges that were part of the Milwaukee Road had to slow down dramatically to, iirc, 6 mph.<p>Of course those were first built in the 19th century.</p>
]]></description><pubDate>Sat, 21 Mar 2026 01:14:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=47463028</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47463028</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47463028</guid></item><item><title><![CDATA[New comment by Aloisius in "4Chan mocks £520k fine for UK online safety breaches"]]></title><description><![CDATA[
<p>I'm not sure one needs to stretch the analogy this far.<p>If someone from the UK calls me on the phone and I start reading them posts on 4chan, is the UK going to fine me too?</p>
]]></description><pubDate>Thu, 19 Mar 2026 19:20:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=47444508</link><dc:creator>Aloisius</dc:creator><comments>https://news.ycombinator.com/item?id=47444508</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47444508</guid></item></channel></rss>