<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: Hasnep</title><link>https://news.ycombinator.com/user?id=Hasnep</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 15 Apr 2026 06:06:58 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=Hasnep" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by Hasnep in "Wit, unker, Git: The lost medieval pronouns of English intimacy"]]></title><description><![CDATA[
<p>The point isn't that we should all speak like Chaucer, it's that singular they isn't a new thing within our lifetimes.</p>
]]></description><pubDate>Thu, 09 Apr 2026 23:00:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=47711412</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47711412</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47711412</guid></item><item><title><![CDATA[New comment by Hasnep in "Help Keep Thunderbird Alive"]]></title><description><![CDATA[
<p>1. $0.
2. Probably close to 100%.</p>
]]></description><pubDate>Thu, 09 Apr 2026 12:29:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=47702826</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47702826</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47702826</guid></item><item><title><![CDATA[New comment by Hasnep in "Help Keep Thunderbird Alive"]]></title><description><![CDATA[
<p>I'm pretty sure they show it something like once a year, and it takes two seconds to close it, if you can't spare two seconds of your life every year for something you get for free then you were never going to donate anything.</p>
]]></description><pubDate>Thu, 09 Apr 2026 12:26:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=47702792</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47702792</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47702792</guid></item><item><title><![CDATA[New comment by Hasnep in "Help Keep Thunderbird Alive"]]></title><description><![CDATA[
<p>You won't donate because they will try not to discriminate when hiring? It's illegal to discriminate on things like race, sex and gender when hiring, so pretty much every company avoids it.</p>
]]></description><pubDate>Thu, 09 Apr 2026 12:23:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=47702764</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47702764</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47702764</guid></item><item><title><![CDATA[New comment by Hasnep in "Lisette a little language inspired by Rust that compiles to Go"]]></title><description><![CDATA[
<p>Spy (<a href="https://github.com/spylang/spy" rel="nofollow">https://github.com/spylang/spy</a>) is an early version of this kind of thing. I believe it compiles to C though, kinda like Nim. Actually speaking of Nim, that's probably the most mature language in this space, although it's less pythonic than Spy</p>
]]></description><pubDate>Sun, 05 Apr 2026 09:38:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=47647691</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47647691</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47647691</guid></item><item><title><![CDATA[New comment by Hasnep in "Judge blocks Pentagon effort to 'punish' Anthropic with supply chain risk label"]]></title><description><![CDATA[
<p>I hate Trump as much as the next guy but this feels like nitpicking. You're obviously right, but if you choose not to vote then you're implicitly approving of whatever outcome you get.</p>
]]></description><pubDate>Fri, 27 Mar 2026 03:07:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=47538694</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47538694</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47538694</guid></item><item><title><![CDATA[New comment by Hasnep in "GitHub appears to be struggling with measly three nines availability"]]></title><description><![CDATA[
<p>I'm trying out SelfCI [1] for one of my projects and it's similar to what you were describing. My whole CI pipeline is just a shell script that runs the actual build and test commands, I can write a script in another language like python if I need more complexity and I can run it all locally at any time to debug.<p>[1] <a href="https://app.radicle.xyz/nodes/radicle.dpc.pw/rad%3Az2tDzYbAXxTQEKTGFVwiJPajkbeDU" rel="nofollow">https://app.radicle.xyz/nodes/radicle.dpc.pw/rad%3Az2tDzYbAX...</a></p>
]]></description><pubDate>Mon, 23 Mar 2026 12:59:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=47488879</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47488879</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47488879</guid></item><item><title><![CDATA[New comment by Hasnep in "Why I love NixOS"]]></title><description><![CDATA[
<p>I see your point about there being different ways to install a package, but I think I can clarify a bit by explaining how I use NixOS.<p>If I'm running a package on a server that means I want to install it declaratively, so I find the name of the package in Nixpkgs and put it in my `configuration.nix` file. I'm using flakes, but the configuration is exactly the same, I just put the package in the output section of the flake. Any instructions you see to install a package just boils down to finding the name of the package. To me this is as simple as finding the name of a Debian package and running `apt` to install it.<p>If you want additional features there are other optional ways to install packages, but these are features other distros don't offer, so if you just ignore them then there's no extra complexity compared to Debian for example.</p>
]]></description><pubDate>Mon, 23 Mar 2026 06:27:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=47486038</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47486038</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47486038</guid></item><item><title><![CDATA[New comment by Hasnep in "A Japanese glossary of chopsticks faux pas (2022)"]]></title><description><![CDATA[
<p>Except a bunch of those diagrams are showing the wrong thing, but yeah, other than that it's good.</p>
]]></description><pubDate>Sat, 21 Mar 2026 12:05:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=47466290</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47466290</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47466290</guid></item><item><title><![CDATA[New comment by Hasnep in "A Japanese glossary of chopsticks faux pas (2022)"]]></title><description><![CDATA[
<p>Sure, and American table manners are the cause of rising fascism, there's a whole Wikipedia article on all their rules. [1] They're more worried about elbows on the table than the increase in authoritarianism.<p>See, I can make up dumb shit too.<p>[1] <a href="https://en.wikipedia.org/wiki/Table_manners_in_North_America" rel="nofollow">https://en.wikipedia.org/wiki/Table_manners_in_North_America</a></p>
]]></description><pubDate>Sat, 21 Mar 2026 12:02:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=47466264</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47466264</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47466264</guid></item><item><title><![CDATA[New comment by Hasnep in "Temporal: The 9-year journey to fix time in JavaScript"]]></title><description><![CDATA[
<p>There are no date, time or datetime types in JSON, so you'll have to serialise it to a string or an int anyway, and then when deserialising you'll need to identify explicitly which values should be parsed as dates.</p>
]]></description><pubDate>Thu, 12 Mar 2026 01:16:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=47345007</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47345007</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47345007</guid></item><item><title><![CDATA[New comment by Hasnep in "Malus: Clean room engineering of any open-source dependency"]]></title><description><![CDATA[
<p>I've thought about doing this as a joke ever since LLMs started being used for generating code, I even made something [1] adjacent to it for April fools last year. It's weird to see someone taking the idea seriously.<p>[1] <a href="https://retributionai.com/" rel="nofollow">https://retributionai.com/</a></p>
]]></description><pubDate>Tue, 03 Mar 2026 05:36:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=47228531</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47228531</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47228531</guid></item><item><title><![CDATA[New comment by Hasnep in "Addressing Antigravity Bans and Reinstating Access"]]></title><description><![CDATA[
<p>If you can't access your account to upgrade it then I assume not</p>
]]></description><pubDate>Sun, 01 Mar 2026 01:18:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=47202577</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47202577</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47202577</guid></item><item><title><![CDATA[New comment by Hasnep in "Julia: Performance Tips"]]></title><description><![CDATA[
<p>There is also a section of Modern Julia Workflows [1] about optimisation that gives helpful, practical advice.<p>[1] <a href="https://modernjuliaworkflows.org/optimizing/" rel="nofollow">https://modernjuliaworkflows.org/optimizing/</a></p>
]]></description><pubDate>Fri, 27 Feb 2026 09:01:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=47178314</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47178314</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47178314</guid></item><item><title><![CDATA[New comment by Hasnep in "Minions: Stripe’s one-shot, end-to-end coding agents"]]></title><description><![CDATA[
<p>If you put up a sign on your house saying "businesses, feel free to come use my driveway for whatever you want" and McDonald's sets up a restaurant there then you won't have much sympathy from me.</p>
]]></description><pubDate>Sun, 22 Feb 2026 13:57:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=47111044</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47111044</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47111044</guid></item><item><title><![CDATA[New comment by Hasnep in "Minions: Stripe’s one-shot, end-to-end coding agents"]]></title><description><![CDATA[
<p>Welcome to the free software movement!</p>
]]></description><pubDate>Sun, 22 Feb 2026 13:51:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=47110993</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47110993</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47110993</guid></item><item><title><![CDATA[New comment by Hasnep in "MuMu Player (NetEase) silently runs 17 reconnaissance commands every 30 minutes"]]></title><description><![CDATA[
<p>Taiwan is "not mainland China" in the same way that Greenland is "not mainland USA"</p>
]]></description><pubDate>Fri, 20 Feb 2026 11:10:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=47086483</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47086483</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47086483</guid></item><item><title><![CDATA[New comment by Hasnep in "MuMu Player (NetEase) silently runs 17 reconnaissance commands every 30 minutes"]]></title><description><![CDATA[
<p>There are two countries that contain the substring "Republic of the Congo" and everyone seems to be okay with that</p>
]]></description><pubDate>Fri, 20 Feb 2026 11:09:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=47086473</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47086473</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47086473</guid></item><item><title><![CDATA[New comment by Hasnep in "Show HN: A small, simple music theory library in C99"]]></title><description><![CDATA[
<p>I think you're looking at this the wrong way around. A human might know the notes of a D Dorian scale, but a computer doesn't. If you've ever selected the key of D major in any music creation software and it's shown you a stave with two sharps then the computer was using a library like this.</p>
]]></description><pubDate>Fri, 20 Feb 2026 10:59:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=47086395</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47086395</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47086395</guid></item><item><title><![CDATA[New comment by Hasnep in "MuMu Player (NetEase) silently runs 17 reconnaissance commands every 30 minutes"]]></title><description><![CDATA[
<p>I don't know why you're bringing Taiwan into this, and I don't think TSMC has an app...</p>
]]></description><pubDate>Fri, 20 Feb 2026 04:08:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=47083606</link><dc:creator>Hasnep</dc:creator><comments>https://news.ycombinator.com/item?id=47083606</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47083606</guid></item></channel></rss>