<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: 369548684892826</title><link>https://news.ycombinator.com/user?id=369548684892826</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 01 Aug 2026 12:49:51 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=369548684892826" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by 369548684892826 in "War Atlas: An interactive cartography of every named war in human history"]]></title><description><![CDATA[
<p>Because Firefox on iPhone uses the same engine as Safari, not gecko</p>
]]></description><pubDate>Sat, 11 Jul 2026 09:38:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=48870390</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=48870390</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48870390</guid></item><item><title><![CDATA[New comment by 369548684892826 in "45% of Enthusiasts 'Seriously Considering' Leaving Sony for PC"]]></title><description><![CDATA[
<p>I use sunshine/moonlight for local streaming</p>
]]></description><pubDate>Fri, 10 Jul 2026 21:30:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=48865561</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=48865561</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48865561</guid></item><item><title><![CDATA[New comment by 369548684892826 in "I coded a shoot 'em up alone at 18 after learning Lua in a single week"]]></title><description><![CDATA[
<p>Have you seen this 2D game engine called Love? It's for Lua, and I've heard it's very good<p><a href="https://love2d.org/" rel="nofollow">https://love2d.org/</a></p>
]]></description><pubDate>Tue, 07 Jul 2026 23:02:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=48825179</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=48825179</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48825179</guid></item><item><title><![CDATA[New comment by 369548684892826 in "HackerRank open sourced its ATS. My resume scored 90/100. Oh wait 74. No – 88"]]></title><description><![CDATA[
<p>Great until someone realises you’ve filtered out minority groups from the application process (most developers are men so maybe the LLM decided they’re the best fit, but you’ll never know exactly why it screwed your over) and you suddenly have an expensive lawsuit</p>
]]></description><pubDate>Mon, 29 Jun 2026 06:48:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=48715697</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=48715697</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48715697</guid></item><item><title><![CDATA[New comment by 369548684892826 in ".NET (OK, C#) finally gets union types"]]></title><description><![CDATA[
<p>Rider is very good but this subthread is about the lack of open source dev tooling.</p>
]]></description><pubDate>Sun, 24 May 2026 07:50:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=48255371</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=48255371</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48255371</guid></item><item><title><![CDATA[New comment by 369548684892826 in "4Chan mocks £520k fine for UK online safety breaches"]]></title><description><![CDATA[
<p>Surely they do have the legal basis, that's how the fine got issued. What they're missing is any way to enforce it.</p>
]]></description><pubDate>Thu, 19 Mar 2026 23:51:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=47448213</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=47448213</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47448213</guid></item><item><title><![CDATA[New comment by 369548684892826 in "Ask HN: Developing .NET on Windows but deploying to Linux – common issues?"]]></title><description><![CDATA[
<p>I guess watch out for different line endings in files "\r\n" in Windows, "\n" in Linux. The best thing to do there if possible is use tools in Windows that preserve Linux line endings so you never see "\r\n" in Linux at runtime.<p>If you're using classes under the System.Drawing namespace then a lot of functionality is missing in Linux, but I don't know much about that. The 3rd party ImageSharp library fills some of the gap and is just generally awesome.<p>Other than that, I'm sure there's niche things but nothing is coming to mind!</p>
]]></description><pubDate>Thu, 12 Mar 2026 23:16:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=47358591</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=47358591</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47358591</guid></item><item><title><![CDATA[New comment by 369548684892826 in "Ask HN: Developing .NET on Windows but deploying to Linux – common issues?"]]></title><description><![CDATA[
<p>To get runtime case-sensitivity problems with filenames I guess you must be doing something like having resource files as part of your project and then loading them from disk at runtime, but the code that loads them is being told the slightly wrong filename. Depending on why you need to load those files, there's not much you can do about that except stop coding the wrong filenames!<p>There are things that can help with filesystem differences though, if you're not using them already look under the System.IO namespace<p>Path.Combine will combine path segments using the native directory separator either `/` or `\`.<p>Path.GetTempFileName will create a temporary file on disk so you don't need to know if that's `/tmp` or `C:\whereverwindowsputsit\`<p>Mostly everything just works when coding on Windows and deploying to Linux, I think it is only the filesystem differences that ever cause problems and even then it's down to coding mistakes.</p>
]]></description><pubDate>Thu, 12 Mar 2026 22:35:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=47358210</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=47358210</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47358210</guid></item><item><title><![CDATA[New comment by 369548684892826 in "The MacBook Neo"]]></title><description><![CDATA[
<p>I wouldn't say as a whole. KDE is way ahead of where it was 10 years ago!</p>
]]></description><pubDate>Wed, 11 Mar 2026 23:19:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=47343832</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=47343832</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47343832</guid></item><item><title><![CDATA[New comment by 369548684892826 in "TypeScript 6.0 RC"]]></title><description><![CDATA[
<p>Just use deno</p>
]]></description><pubDate>Fri, 06 Mar 2026 22:21:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=47281898</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=47281898</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47281898</guid></item><item><title><![CDATA[New comment by 369548684892826 in "Obsidian Sync now has a headless client"]]></title><description><![CDATA[
<p>protip: You can make synctrain sync with an iOS shortcut, with the shortcut being triggered when Obsidian is opened or closed. This means you're always in sync, even if iOS hasn't allowed synctrain to run in the background.</p>
]]></description><pubDate>Sat, 28 Feb 2026 20:59:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=47200165</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=47200165</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47200165</guid></item><item><title><![CDATA[New comment by 369548684892826 in "I finally understand Cloudflare Zero Trust tunnels"]]></title><description><![CDATA[
<p>It’s not that it can’t do it, it’s that it’s against the terms of service to use it for video.</p>
]]></description><pubDate>Sun, 16 Nov 2025 23:03:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=45949257</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=45949257</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45949257</guid></item><item><title><![CDATA[New comment by 369548684892826 in "Dillo, a multi-platform graphical web browser"]]></title><description><![CDATA[
<p>> the most unethical company that ever existed<p>Maybe in the tech world, but in the real world there are companies such as Nestlé out there competing for this title.</p>
]]></description><pubDate>Thu, 06 Nov 2025 08:05:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=45832698</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=45832698</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45832698</guid></item><item><title><![CDATA[New comment by 369548684892826 in "Fastmail desktop app"]]></title><description><![CDATA[
<p>I like the idea of using the new app, but in the browser I can use ublock to remove the weird "Inbox Zero!" celebration. Is there any plan to allow that kind of empty inbox configuration in the app?</p>
]]></description><pubDate>Tue, 14 Oct 2025 11:57:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=45578964</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=45578964</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45578964</guid></item><item><title><![CDATA[New comment by 369548684892826 in "Firefox is the best mobile browser"]]></title><description><![CDATA[
<p>Safari does support ad blocking extensions.<p><a href="https://apps.apple.com/us/app/wipr-2/id1662217862">https://apps.apple.com/us/app/wipr-2/id1662217862</a></p>
]]></description><pubDate>Sat, 11 Oct 2025 17:52:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=45551161</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=45551161</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45551161</guid></item><item><title><![CDATA[New comment by 369548684892826 in "What .NET 10 GC changes mean for developers"]]></title><description><![CDATA[
<p>As a dotnet developer all my code these days is run on Linux.</p>
]]></description><pubDate>Sun, 05 Oct 2025 09:37:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=45480243</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=45480243</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45480243</guid></item><item><title><![CDATA[New comment by 369548684892826 in "The biggest sign of an AI bubble is starting to appear – debt"]]></title><description><![CDATA[
<p>If revenue doesn't catch up with the cost of developing and running these huge LLMs then the only way to avoid an AI winter is to find a way to make them way cheaper to develop.</p>
]]></description><pubDate>Fri, 03 Oct 2025 13:10:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=45462582</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=45462582</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45462582</guid></item><item><title><![CDATA[New comment by 369548684892826 in "JetBrains will start training AI on your code on non-commercial license"]]></title><description><![CDATA[
<p>That's what he said, you aren't applying this change to your paying customers because you know what a shitty decision it is and only free users will put up with it.</p>
]]></description><pubDate>Thu, 02 Oct 2025 10:00:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=45447850</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=45447850</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45447850</guid></item><item><title><![CDATA[New comment by 369548684892826 in "Ask HN: I got fired from 100k job so I've made a game and it failed"]]></title><description><![CDATA[
<p>Have you considered some kind of demo level and pay to unlock the full game?</p>
]]></description><pubDate>Tue, 02 Sep 2025 10:43:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=45101260</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=45101260</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45101260</guid></item><item><title><![CDATA[New comment by 369548684892826 in "Ask HN: Do you find ChatGPT 5 to be condescending?"]]></title><description><![CDATA[
<p>"That’s a really sharp question."</p>
]]></description><pubDate>Sat, 23 Aug 2025 23:03:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=44999814</link><dc:creator>369548684892826</dc:creator><comments>https://news.ycombinator.com/item?id=44999814</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44999814</guid></item></channel></rss>