<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: anextio</title><link>https://news.ycombinator.com/user?id=anextio</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 15 Jun 2026 08:35:30 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=anextio" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by anextio in "Swift at Apple: Migrating the TrueType hinting interpreter"]]></title><description><![CDATA[
<p>Yes, it has a borrow checker.</p>
]]></description><pubDate>Fri, 12 Jun 2026 23:12:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=48510468</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=48510468</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48510468</guid></item><item><title><![CDATA[New comment by anextio in "I'm reluctant to verify my identity or age for any online services"]]></title><description><![CDATA[
<p>> "Democracy" is when "bad actors" (as defined by the establishment) are shut out of all online discourse.<p>The point of ID laws is not to stop "bots" or "sockpuppets", it's to enable governments to shut down the speech of their political adversaries by painting them as dangerous. That is not democracy, that is authoritarianism, even if you absolutely hate the people that are being shut up.<p>Western countries are not in the midst of polarized political crises because of "external bad actors" or "sockpuppets". They're in these crises because of fundamental contradictions in values and desired policies between different segments of the populace.<p>The Europeans are currently full steam ahead in attempting to "fix" the situation by criminalizing dissent, which will, in the end, only exacerbate the political crisis by making the democratic system illegitimate.</p>
]]></description><pubDate>Tue, 03 Mar 2026 21:47:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=47239504</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=47239504</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47239504</guid></item><item><title><![CDATA[New comment by anextio in "Why Objective-C"]]></title><description><![CDATA[
<p>>[1] <a href="https://github.com/swiftlang/swift-evolution/blob/main/propo" rel="nofollow">https://github.com/swiftlang/swift-evolution/blob/main/propo</a>... -- apologies to the authors, but even as a previous C++ guy, my brain twisted at that. Inside Swift is a slim language waiting to get out... and that slim language is just a safer Objective C.<p>These kinds of features are not intended for use in daily application development. They're systems-language features designed for building high performance, safe, very-low-level code. It will be entirely optional for the average Swift developer to learn how to use these features, just in the same way that it's optional for someone to learn Rust.</p>
]]></description><pubDate>Mon, 02 Mar 2026 17:26:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=47221038</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=47221038</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47221038</guid></item><item><title><![CDATA[New comment by anextio in "Ladybird passes the Apple 90% threshold on web-platform-tests"]]></title><description><![CDATA[
<p>Malicious compliance?<p>The EU DMA says they have to allow third party browser engines access to the same resources (the JIT) that Safari has. It specifically allows them to place reasonable requirements on those third party alternatives:<p>> The gatekeeper shall not be prevented from taking, to the extent that they are strictly necessary and proportionate, measures to ensure that third-party software applications or software application stores do not endanger the integrity of the hardware or operating system provided by the gatekeeper, provided that such measures are duly justified by the gatekeeper.<p>Access to rwx memory is inherently dangerous, and it's completely reasonable to expect third parties to have proven that they are serious about producing a usable browser engine before putting such a risky product on the market for consumers to download. The law does not require them to allow any third party application to access the JIT, only a third party application that competes with Safari (a usable web browser).</p>
]]></description><pubDate>Tue, 07 Oct 2025 02:10:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=45498697</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=45498697</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45498697</guid></item><item><title><![CDATA[New comment by anextio in "Rust in the Linux kernel: part 2"]]></title><description><![CDATA[
<p>Replying to your other comment.<p>> You are claiming that static code analysis tools extensively used in C++ cannot detect all conceivable and hypothetical memory issues. The weasel words in here is that it is possible to detect them, but some can conceivably slip through.<p>No, there are entire classes of memory vulnerabilities that are impossible to check with static analysis because checking them is equivalent to the halting problem.<p>> To drive the point home, there are already a few CVEs even from use-after-free bugs in Rust code. What does that make out of the all assertion? Would this be a reasonable argument to reject Rust as an unsafe language?<p>The CVE that you referenced in the other comment was Rust calling into unsafe C code, as I pointed out. If you have a real example feel free to post it.<p>> The problem with these claims is that they rely on weak strawmen arguments and a very superficial analysis of the problem space. I get the need to do marketing, but if the audience is technical them don't you think arguments should stand on solid technical ground?<p>The views I have laid out here are the consensus among compiler engineers and in theoretical computer science. You only have to look at the compiler group at Apple:<p>- heavily invested in static analysis
- maintains the clang static analyzer
- maintains number of runtime memory analysis tools in Xcode
- not invested in rust at all and seemingly not interested<p>Yet they are adding lifetime dependency annotations to Swift, making it more like Rust: <a href="https://github.com/swiftlang/swift-evolution/blob/ef71df4158f1cd9ded3a2adba946a96afe190b45/proposals/NNNN-lifetime-dependency.md">https://github.com/swiftlang/swift-evolution/blob/ef71df4158...</a><p>The reason for this is that static analysis simply cannot do it when the semantic information about lifetimes is lost, even for a group that knows how to write strong static analysis tools. Program flow is too ambiguous without it, so it becomes impossible to detect such memory vulnerabilities without running the program and fuzzing it – an expensive, time consuming, and probabilistic process.</p>
]]></description><pubDate>Sat, 28 Jun 2025 07:02:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=44402804</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=44402804</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44402804</guid></item><item><title><![CDATA[New comment by anextio in "Rust in the Linux kernel: part 2"]]></title><description><![CDATA[
<p>This is not a very good example, because this Rust code is a thin wrapper around pthread_mutex, which is an unsafe API that can cause undefined behavior (such as use after free) if used incorrectly. The Rust code in question is using the unsafe C API incorrectly.<p><a href="https://github.com/Forestryks/process-sync-rs/issues/3">https://github.com/Forestryks/process-sync-rs/issues/3</a><p>One could say "Rust doesn't stop you from calling out into unsafe C code, so it's still possible to produce memory vulnerabilities in Rust", and it would be true, but it kind of misses the point and only really bolsters the Rust people when they say they want to rewrite everything in Rust.<p>In Rust, an API with a rule such as "you must check that the mutex is unlocked before you can destroy it" would be implemented using the type system in such a way as to make it impossible to drop it without checking its state. This is something that is not possible to do in C and cumbersome to do in C++.</p>
]]></description><pubDate>Sat, 28 Jun 2025 06:45:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=44402736</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=44402736</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44402736</guid></item><item><title><![CDATA[New comment by anextio in "Rust in the Linux kernel: part 2"]]></title><description><![CDATA[
<p>> mainstream compilers provide support to detect and throw warnings/errors for some of these issues<p>You cannot detect all of these issues with static analysis. Rust does it by requiring the programmer to annotate lifetime dependencies in the source code. Without this additional semantic information, static analysis cannot fully reason about the lifetimes of variables.<p>There are efforts by some to introduce lifetime annotations to C++ (<a href="https://news.ycombinator.com/item?id=30888172">https://news.ycombinator.com/item?id=30888172</a>), but any changes to the core language face a very steep uphill battle with the C++ standards committee, so any movement on this is likely to be compiler-specific attribute-based systems, adopted largely by companies invested in a particular compiler ecosystem (such as Apple or Google) to annotate their proprietary code.<p>On top of this, Rust is a very expressive language, with its features (like enum sum-types, traits etc) making it very easy to implement patterns such as compiler-checked state machines and polymorphism that doesn't involve the recognized downsides of class hierarchies.<p>It is not for everyone, and not for every kind of project, but its features resonate positively with a lot of people in systems programming because of their experiences with other systems languages and their downsides.<p>This is why Rust is popular today, particularly in certain communities.</p>
]]></description><pubDate>Sat, 28 Jun 2025 06:36:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=44402695</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=44402695</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44402695</guid></item><item><title><![CDATA[New comment by anextio in "Rust in the Linux kernel: part 2"]]></title><description><![CDATA[
<p>You can hammer an applications programming language to do systems things, but it will never be a good experience nor have optimal performance.</p>
]]></description><pubDate>Sat, 28 Jun 2025 06:20:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=44402642</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=44402642</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44402642</guid></item><item><title><![CDATA[New comment by anextio in "Rust in the Linux kernel: part 2"]]></title><description><![CDATA[
<p>Java does not provide performance comparable to C/C++.</p>
]]></description><pubDate>Sat, 28 Jun 2025 06:18:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=44402636</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=44402636</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44402636</guid></item><item><title><![CDATA[New comment by anextio in "Swift and the Cute 2d game framework: Setting up a project with CMake"]]></title><description><![CDATA[
<p>CMake support started as a community project but was adopted officially by Apple after they started adopting some Swift in the compiler codebase – an extremely large and complex CMake project – so the support is extremely robust now.</p>
]]></description><pubDate>Sat, 07 Jun 2025 03:09:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=44207108</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=44207108</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44207108</guid></item><item><title><![CDATA[New comment by anextio in "Fluoride in our drinking water may not be as useful as it used to be"]]></title><description><![CDATA[
<p>Comments like this are the clearest sign that this topic has become so politicized that rational judgement is out the window. If fluoride in the water is opposed by *those people*, or is supported by *those people*, then even if new clear evidence comes out one way or another, it will be undermined by not wanting to hand the other side a ‘W’.</p>
]]></description><pubDate>Sun, 06 Oct 2024 15:47:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=41757915</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=41757915</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41757915</guid></item><item><title><![CDATA[New comment by anextio in "Shoe prints lead FBI to suspect couple involved in multiple New Mexico wildfires"]]></title><description><![CDATA[
<p>I'm not sure why you would think they are climate deniers. The odds are that they are exactly the opposite.<p>Having been around far left activist groups in my past, there are many who think that doing things like this on purpose is morally justified, because it keeps the conversation on climate change. The media incentivizes it by covering them as "climate-fueled wildfire" stories, every single time.<p>Wildfires in Canada were at a two-decade low in 2020, during the lockdowns. Think about that.</p>
]]></description><pubDate>Fri, 26 Jul 2024 19:27:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=41081494</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=41081494</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41081494</guid></item><item><title><![CDATA[New comment by anextio in "One Year into the War in Ukraine"]]></title><description><![CDATA[
<p><a href="https://meduza.io/amp/en/news/2023/02/17/close-to-15k-russians-killed-in-ukraine-since-start-of-invasion-identified-through-open-sources" rel="nofollow">https://meduza.io/amp/en/news/2023/02/17/close-to-15k-russia...</a><p>An investigation via open sources by the BBC and Meduza (an anti-Putin media outlet based in Latvia) has confirmed the deaths of about 15k Russian soldiers since the start of the war, and estimates the true number to be up to 60% higher.<p>What sources do you have that the widely reported media number of 200k+ is actually true that doesn’t ultimately come from the government of Ukraine (who would have an interest in over-inflating their victories) or by a western government that is militarily supporting Ukraine?</p>
]]></description><pubDate>Fri, 24 Feb 2023 23:13:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=34931560</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=34931560</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34931560</guid></item><item><title><![CDATA[New comment by anextio in "One Year into the War in Ukraine"]]></title><description><![CDATA[
<p>They don't have to occupy the whole of Ukraine to do that, they only have to defeat Ukraine's military and destroy NATO's materiel on the battlefield. If they intended to occupy the entire country they would need several million troops as well as legions of administrators ready to go, which would be visible.<p>They most likely only plan to long-term occupy the parts of Ukraine where the majority of the population still living there supports them. The last thing that Russia wants is fighting a never ending insurgency in Lviv oblast.</p>
]]></description><pubDate>Fri, 24 Feb 2023 22:11:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=34930855</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=34930855</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34930855</guid></item><item><title><![CDATA[New comment by anextio in "One Year into the War in Ukraine"]]></title><description><![CDATA[
<p>The Russians have shown that they don't care about holding territory in the short term, see Kherson withdrawal, etc. They are only focused on attrition and minimizing their own casualties. If Ukraine goes into Transnistria it will not force Russia to capitulate.</p>
]]></description><pubDate>Fri, 24 Feb 2023 22:05:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=34930793</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=34930793</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=34930793</guid></item><item><title><![CDATA[New comment by anextio in "Gigafactories are recycling old EV batteries into new ones"]]></title><description><![CDATA[
<p>Gasoline is not in itself an incendiary bomb, it has a specific meaning:<p>— it burns for a long time
- it resists suppression<p><a href="https://en.m.wikipedia.org/wiki/Incendiary_device" rel="nofollow">https://en.m.wikipedia.org/wiki/Incendiary_device</a><p>If you want gasoline to meet the definition you have to make napalm out of it.</p>
]]></description><pubDate>Sun, 30 Oct 2022 11:43:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=33393555</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=33393555</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=33393555</guid></item><item><title><![CDATA[New comment by anextio in "The CIA and the Media (1977)"]]></title><description><![CDATA[
<p>This logic didn't stop them from running a fake vaccination program in Pakistan to try to find Osama. It directly led to a significant rise in vaccine refusal in the region.<p><a href="https://www.vox.com/first-person/22256595/vaccine-covid-pakistan-cia-program" rel="nofollow">https://www.vox.com/first-person/22256595/vaccine-covid-paki...</a><p>So I find it unlikely that they internally enforce prohibitions against meddling with anything at all.</p>
]]></description><pubDate>Thu, 09 Dec 2021 22:22:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=29503795</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=29503795</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=29503795</guid></item><item><title><![CDATA[New comment by anextio in "Heart inflammation cases in young men higher than expected after mRNA vaccines"]]></title><description><![CDATA[
<p>This is a selection bias toward Covid patients who had to be hospitalized. Most Covid cases are mild and patients recover at home. The “extent of what you have to deal with” varies <i>considerably</i>.</p>
]]></description><pubDate>Fri, 11 Jun 2021 02:19:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=27468626</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=27468626</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=27468626</guid></item><item><title><![CDATA[New comment by anextio in "Pfizer is testing a pill that, if successful, could cure Covid-19"]]></title><description><![CDATA[
<p>> Borrowed from Yiddish שטום‎ (shtum, “mute, dumb, voiceless”), from Middle High German stum, from Old High German stum. Cognate with German stumm, Dutch stom, Swedish stum. [1]<p>[1] <a href="https://en.wiktionary.org/wiki/shtum#English" rel="nofollow">https://en.wiktionary.org/wiki/shtum#English</a></p>
]]></description><pubDate>Tue, 27 Apr 2021 00:13:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=26950019</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=26950019</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26950019</guid></item><item><title><![CDATA[New comment by anextio in "Greenwald: Yesterday Journalists Spread a Significant Lie All over Twitter"]]></title><description><![CDATA[
<p>How the laptop was "obtained" is actually a separate story from the content of the laptop, if the content is real.<p>Given that the content HAS been verified as real, then bringing up the circumstances of how the laptop ended up in the NY Post's hands is simply an irrelevant diversion designed to muddy the waters.<p>> That word is doing a _lot_ of work there.<p>What work is it doing? If the content is real, what circumstances of the obtaining could possibly change opinions or analysis made *solely about* the content?<p>Nobody denies there were political machinations and obfuscations about the laptop's journey, involving political adversaries of Joe Biden, but that story is a separate one from analysis of the laptop's contents.</p>
]]></description><pubDate>Fri, 19 Mar 2021 17:05:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=26515747</link><dc:creator>anextio</dc:creator><comments>https://news.ycombinator.com/item?id=26515747</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=26515747</guid></item></channel></rss>