<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: seniorThrowaway</title><link>https://news.ycombinator.com/user?id=seniorThrowaway</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 26 May 2026 20:16:49 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=seniorThrowaway" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by seniorThrowaway in "OpenBSD 7.9"]]></title><description><![CDATA[
<p>>so much saner than Linux firewalls it's not even close.<p>This is a big one for me.  I've run openBSD and Linux custom boxes as SoHo routers and I just cannot stand Linux firewalls, I've never liked them and IPTables is just terrible.  Yes I know there are wrappers around it now but it's still the default everywhere and still used by lots of other software like Docker.  I'm using OPNSense now which is FreeBSD based instead of completely rolling my own but I love that it is still BSD under the hood.<p>One differing opinion I will offer is that I find NixOS to be the Linux distro most in the openBSD spirit despite it being very different from a UX and config management perspective.  Alpine is interesting, but it has its own security and compatibility issues, especially around MUSL libc which I have had cause many strange downstream issues over the years, I just hit one recently in JVM GC caused by its memory allocation implementation.  I've stopped using alpine altogether because of them.</p>
]]></description><pubDate>Tue, 19 May 2026 17:14:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=48196192</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=48196192</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48196192</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "Why we lose our friends as we age (2023)"]]></title><description><![CDATA[
<p>Feel the same way about COVID.  It damaged the social fabric in ways that have not recovered.  I think a lot of people realized that maybe they never really liked socializing as much as they thought they did.  I also think it just kind of reset people's expectations around socializing.  The other big one to me, that it also unleashed, was inflation. Dining out, sporting events, concerts etc are all way more expensive than they used to be.  Places are still busy and games are still packed but the prices are way higher, more evidence of the K shaped economy where only the top stratas are spending. Also, and this is subjective, it feels a bit more performative, as in people are going because it signals they have the means (edit: and the general instagram-ification of our culture.)</p>
]]></description><pubDate>Mon, 11 May 2026 17:24:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=48097887</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=48097887</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48097887</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "Appearing productive in the workplace"]]></title><description><![CDATA[
<p>If I paste something from an AI into chat, I always identify it as such by saying something like "my claude instance says this:".  I also don't blindly copy paste from it, I always read it first and usually edit it for brevity or tone.  Feel like this should be the absolute minimum for sending AI content to a person.</p>
]]></description><pubDate>Wed, 06 May 2026 21:17:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=48041983</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=48041983</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48041983</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "Should I Run Plain Docker Compose in Production in 2026?"]]></title><description><![CDATA[
<p>I do use compose for some things, smaller one off type setups, and I’ve done the compose up --build CI/CD approach before. I’m generally not a fan of building on the production node outside of very small deployments. It can work, I just think it tends to blur the line between build and runtime more than I’m comfortable with.<p>Some of my concerns with compose aren’t purely technical. It makes it easier to lean on local state like volumes, bind mounts, and large .env files.  Similar mechanisms exist in kubernetes, but the additional setup tends to force a bit more thought about whether they’re actually needed or just a shortcut.<p>On the health check side, they exist, but compose doesn’t fully act on them, that's the part that is missing. There’s no built in remediation or orchestration behavior tied to health status, which is why things like
<a href="https://github.com/willfarrell/docker-autoheal" rel="nofollow">https://github.com/willfarrell/docker-autoheal</a> exist.  It’s something that was never fully carried through in Docker itself.</p>
]]></description><pubDate>Tue, 05 May 2026 19:35:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=48027408</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=48027408</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48027408</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "Should I run plain Docker Compose in production in 2026?"]]></title><description><![CDATA[
<p>Extremely debatable. They still have never fully implemented health checks and auto healing. I have had compose itself behave in unexpected ways, weird things like not realizing the tag of an image it is running is actually in use, and letting prune commands yank it out from under the system.  Other things I can't remember.  I'd rather use something like Nomad or for simpler systems maybe plain systemd.  But realistically kubernetes is a superior orchestrator in just about every way, and installing k3s is simple and k3s is actually production ready.  I don't like kubernetes all that much as cluster tech, but as a container orchestrator it has a lot of nice features.</p>
]]></description><pubDate>Tue, 05 May 2026 16:51:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=48025090</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=48025090</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48025090</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "Uber Torches 2026 AI Budget on Claude Code in Four Months"]]></title><description><![CDATA[
<p>I'm a fan of the monorepo in general, even before LLMs.  If using git it leverages git's best feature IMO, the commit as a snapshot of the entire repo.  I've worked on so many projects where tightly coupled things are split across repos because it's thought of as a best practice, and it just makes it more difficult to figure out what code you are running.</p>
]]></description><pubDate>Fri, 01 May 2026 18:21:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=47978167</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47978167</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47978167</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "For Linux kernel vulnerabilities, there is no heads-up to distributions"]]></title><description><![CDATA[
<p>Ubuntu has patches out, tested before and after patching.</p>
]]></description><pubDate>Thu, 30 Apr 2026 19:09:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=47966903</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47966903</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47966903</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "Your phone is about to stop being yours"]]></title><description><![CDATA[
<p>>CalDAV, CardDAV, and SMB are baked into iOS, whereas these are onerous to set up on Android<p>I can only speak to SMB but it is not hard on Android.  I use a longtime third party app so not sure what the state of native support is but it works just fine for me, including over VPN</p>
]]></description><pubDate>Tue, 28 Apr 2026 18:08:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=47938185</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47938185</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47938185</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "DeepSeek v4"]]></title><description><![CDATA[
<p>Are you implying only one country does these things?</p>
]]></description><pubDate>Fri, 24 Apr 2026 15:41:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=47891775</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47891775</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47891775</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "Norway set to become latest country to ban social media for under 16s"]]></title><description><![CDATA[
<p>No, we don't.  This is big tech shifting liability off themselves with the added bonus of full de-anonymization.  Take a look at who is lobbying for this.</p>
]]></description><pubDate>Fri, 24 Apr 2026 15:35:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=47891700</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47891700</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47891700</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "Norway set to become latest country to ban social media for under 16s"]]></title><description><![CDATA[
<p>The liability shifting and real identity linking to all online usage that big tech wants is proceeding nicely for them I see.</p>
]]></description><pubDate>Fri, 24 Apr 2026 15:34:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=47891680</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47891680</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47891680</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "If America's so rich, how'd it get so sad?"]]></title><description><![CDATA[
<p><a href="https://www.thefp.com/p/why-do-americans-feel-poor-because" rel="nofollow">https://www.thefp.com/p/why-do-americans-feel-poor-because</a><p>The gist: the statistics used to define poverty are old and inaccurate.</p>
]]></description><pubDate>Thu, 23 Apr 2026 19:02:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=47880091</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47880091</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47880091</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "If America's so rich, how'd it get so sad?"]]></title><description><![CDATA[
<p>Housing being expensive because of laws and zoning that constrain it's supply is often touted, but there is good academic research that that isn't the case.
<a href="https://www.dropbox.com/scl/fi/zfsw4iotsn3nqs8vhu8kb/LMW-FAQ2025.pdf?rlkey=2v4mo7cuey4qz4wg031tw4eoc&e=6&dl=0" rel="nofollow">https://www.dropbox.com/scl/fi/zfsw4iotsn3nqs8vhu8kb/LMW-FAQ...</a></p>
]]></description><pubDate>Thu, 23 Apr 2026 19:01:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=47880080</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47880080</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47880080</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "OpenClaw isn't fooling me. I remember MS-DOS"]]></title><description><![CDATA[
<p>Yes, they are good at being coding "interns".  They work together in slack which allows management visibility and tasking directly to them.  i.e. people who aren't going to be managing a bunch of claude code's all day.  I say interns because they are incredibly smart at some things like implementing well defined coding plans and incredibly dumb in other ways, like shipping non-compiling code and asking a human to troubleshoot.  To do this requires thoughtful setup, you have to onboard them more like you would a human than a piece of software.  Give them their own "workstation", accounts etc.  Limit what they can do in those accounts, not in their .md files or skills or anything, they will never follow those 100%, just like a person won't follow directions 100% of the time.</p>
]]></description><pubDate>Mon, 20 Apr 2026 20:23:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=47840000</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47840000</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47840000</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "The Future of Everything Is Lies, I Guess: New Jobs"]]></title><description><![CDATA[
<p>low code / no code, and it's been around in one form or fashion since the 1990's, at least.</p>
]]></description><pubDate>Wed, 15 Apr 2026 20:52:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=47785075</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47785075</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47785075</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "GitHub Stacked PRs"]]></title><description><![CDATA[
<p>>the centralized service was the most important part of decentralized version control.<p>I've often thought this about github</p>
]]></description><pubDate>Tue, 14 Apr 2026 14:36:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=47766224</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47766224</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47766224</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "Backblaze has stopped backing up OneDrive and Dropbox folders and maybe others"]]></title><description><![CDATA[
<p>Should really qualify this headline with which backblaze product.</p>
]]></description><pubDate>Tue, 14 Apr 2026 14:11:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=47765912</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47765912</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47765912</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "The looming college-enrollment death spiral"]]></title><description><![CDATA[
<p>I think college's value proposition and entire model has been eroded.  Major school's CS grads are finding jobs upon graduation at an 11% rate (I don't have the primary source on this, but it is published by a site I read that never fudges these kinds of things, going back many years).  AI probably has a lot to do with that, but it's exposing something more fundamental.  CS wasn't supposed to be a programming boot camp anyway, it is at its heart an academic degree much close to pure mathematics than programming.  Maybe it should go back to that?  Maybe college never should have been for everyone?  That was the norm for the vast majority of the existence of higher education.  Maybe we don't need gleaming campus' with huge facilities overhead costs?  When storing knowledge required physical books it made sense to build learning facilities around large libraries, but that hasn't been the case for decades now.  Should young people really be taking on life long non-dischargeable debt for a glorified high school diploma?  I think the answer is no, they shouldn't, and that the entire college bubble needs to be popped.</p>
]]></description><pubDate>Mon, 13 Apr 2026 20:29:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=47757420</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47757420</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47757420</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "Maine is about to become the first state to ban major new data centers"]]></title><description><![CDATA[
<p>Don't know why people think Texas doesn't have natural beauty.  It's a huge state.</p>
]]></description><pubDate>Thu, 09 Apr 2026 20:08:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=47709096</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47709096</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47709096</guid></item><item><title><![CDATA[New comment by seniorThrowaway in "Show HN: I built a Cargo-like build tool for C/C++"]]></title><description><![CDATA[
<p>Having to work around a massive C++ software project daily, I wish you luck.  We use conan2, and while it can be very challenging to use, I've yet to find something better that can handle incorporating as dependencies ancient projects that still use autoconf or even custom build tooling.  It's also very good at detecting and enforcing ABI compatibility, although there are still some gaps.  This problem space is incredibly hard and improving it is a prime driver for the creation of many of the languages that came after C/C++</p>
]]></description><pubDate>Thu, 09 Apr 2026 17:11:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=47706306</link><dc:creator>seniorThrowaway</dc:creator><comments>https://news.ycombinator.com/item?id=47706306</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47706306</guid></item></channel></rss>