<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: domh</title><link>https://news.ycombinator.com/user?id=domh</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 07 Sep 2026 04:22:28 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=domh" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by domh in "Cloud in a Bottle: making self-hosting accessible to everyone"]]></title><description><![CDATA[
<p>This is not me saying security doesn't matter (because it does) but having everything not publicly accessible and only accessible over Tailscale or Wireguard makes me slightly happier.</p>
]]></description><pubDate>Sun, 06 Sep 2026 08:09:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=49584341</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49584341</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49584341</guid></item><item><title><![CDATA[New comment by domh in "Europe's summer drought is so extreme that desertification is a growing threat"]]></title><description><![CDATA[
<p>I expect future summers to be drier and future winters to be wetter. Our gardens are going to look very different. Already I see more people (myself included) rewilding their gardens. I've had a lot more wildlife as a result, but may be due to hotter weather as well.<p>In the park behind my house a large Goat Willow tree has just mostly toppled over. Completely dry summer, then a week of rain has caused the tree to just collapse.</p>
]]></description><pubDate>Sun, 30 Aug 2026 19:16:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=49501859</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49501859</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49501859</guid></item><item><title><![CDATA[New comment by domh in "Stripe said to abandon $50B pursuit of PayPal"]]></title><description><![CDATA[
<p>Yeah this is my primary use case for using PayPal. I use it on e-commerce sites for first purchase or if it's unlikely I'm going to buy anything from the same site again.</p>
]]></description><pubDate>Fri, 28 Aug 2026 07:16:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=49475380</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49475380</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49475380</guid></item><item><title><![CDATA[New comment by domh in "France reaches 94.9% fiber coverage in 2026"]]></title><description><![CDATA[
<p>I pay £6 per month for a sim only contract, which gives me 4GB of data. In the USA I feel like I was paying closer to $40-50 for a google fi sim? Which admittedly did have better roaming. Now I just get an e-sim for travel and it works out to be £3ish per day</p>
]]></description><pubDate>Wed, 26 Aug 2026 18:03:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=49453285</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49453285</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49453285</guid></item><item><title><![CDATA[New comment by domh in "Dolly Parton Has Died"]]></title><description><![CDATA[
<p>BBC Radio 2 tribute just happened:<p><a href="https://www.bbc.co.uk/sounds/play/m00309f7" rel="nofollow">https://www.bbc.co.uk/sounds/play/m00309f7</a></p>
]]></description><pubDate>Tue, 25 Aug 2026 19:59:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=49439773</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49439773</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49439773</guid></item><item><title><![CDATA[New comment by domh in "Bun 1.4 Rust rewrite is not looking good?"]]></title><description><![CDATA[
<p>Let me address each one in turn:<p>- esbuild - this is normally for TS compilation, which Node can run natively now by stripping types: <a href="https://nodejs.org/docs/latest/api/typescript.html#type-stripping" rel="nofollow">https://nodejs.org/docs/latest/api/typescript.html#type-stri...</a><p>- jest/vitest: Node has a test runner: <a href="https://nodejs.org/docs/latest/api/test.html" rel="nofollow">https://nodejs.org/docs/latest/api/test.html</a><p>- dotenv: Node can read .env files: <a href="https://nodejs.org/docs/latest/api/cli.html#--env-filefile" rel="nofollow">https://nodejs.org/docs/latest/api/cli.html#--env-filefile</a><p>Performance, maybe you're right - but if you're doing any IO, I doubt the runtime is really the bottleneck.</p>
]]></description><pubDate>Wed, 19 Aug 2026 07:07:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=49357974</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49357974</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49357974</guid></item><item><title><![CDATA[New comment by domh in "Bun 1.4 Rust rewrite is not looking good?"]]></title><description><![CDATA[
<p>Same thing can be said about Streams in Node.js as well. They had a working streams implementation before the Web Streams API was in browsers (iirc). So implementing the standard now means removing what's already there, or breaking a lot of existing code.<p>Which leads to confusing things like the fact that there are two streams APIs in Node now:<p>Streams: <a href="https://nodejs.org/docs/latest/api/stream.html" rel="nofollow">https://nodejs.org/docs/latest/api/stream.html</a><p>Web Streams: <a href="https://nodejs.org/docs/latest/api/webstreams.html" rel="nofollow">https://nodejs.org/docs/latest/api/webstreams.html</a><p>And they have to support going back and forth between the two: <a href="https://nodejs.org/docs/latest/api/webstreams.html#nodejs-streams-interoperability" rel="nofollow">https://nodejs.org/docs/latest/api/webstreams.html#nodejs-st...</a><p>It's exactly the same story for crypto as well. Node created it's own standard, Web standards emerged, Node has to support both:<p><a href="https://nodejs.org/docs/latest/api/crypto.html" rel="nofollow">https://nodejs.org/docs/latest/api/crypto.html</a><p><a href="https://nodejs.org/docs/latest/api/webcrypto.html" rel="nofollow">https://nodejs.org/docs/latest/api/webcrypto.html</a><p>Fwiw I think it's good they're not removing the legacy code, but they should probably do a big cleanup major release and lean into the modern standards and remove the old stuff. But there's obviously push back in doing so... and probably stuff you can do in the old modules that you can't do in the new and vice versa.</p>
]]></description><pubDate>Wed, 19 Aug 2026 07:04:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=49357949</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49357949</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49357949</guid></item><item><title><![CDATA[New comment by domh in "Bun 1.4 Rust rewrite is not looking good?"]]></title><description><![CDATA[
<p>That's a fair criticism... they move slower but mostly because they were the first. They would have to build a new Server and Request/Response primitives from scratch, or deprecate what they already have, or somehow shoehorn the existing types into the new ones.<p>They do seem to have just merged in support for Web Workers though, which I've been following for a while: <a href="https://github.com/nodejs/node/issues/43583" rel="nofollow">https://github.com/nodejs/node/issues/43583</a><p>So I don't think they're opposed to standardising, but it's trickier when you have some past cruft built up. Lets not forget that the fetch() standard was built for browsers, and is a bit of a stretch to make it work on servers at all. You have to diverge from the fetch spec to even make it make sense in a server environment (with things like Cookies handling off the top of my head).</p>
]]></description><pubDate>Wed, 19 Aug 2026 06:57:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=49357896</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49357896</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49357896</guid></item><item><title><![CDATA[New comment by domh in "Bun 1.4 Rust rewrite is not looking good?"]]></title><description><![CDATA[
<p>What's wrong with just using Node? It's stable, has a good (and growing) standard library and has enough backing to be self sustaining.<p>edit: There's also nub which is built on top of Node.js and removes some rough/legacy edges: <a href="https://github.com/nubjs/nub" rel="nofollow">https://github.com/nubjs/nub</a></p>
]]></description><pubDate>Wed, 19 Aug 2026 06:19:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=49357577</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49357577</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49357577</guid></item><item><title><![CDATA[New comment by domh in "Plug-In Solar Panels Starting to Sprout in U.S. Backyards"]]></title><description><![CDATA[
<p>Yeah I'm going to wait for lidl to do them, that's the plan anyway. Anything you can buy now is ~£600 (ecoflow is the brand I've seen). Hoping some others take the plunge first to provide some guidance.<p>Wish plugin batteries were part of it.</p>
]]></description><pubDate>Sun, 09 Aug 2026 20:40:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=49235628</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49235628</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49235628</guid></item><item><title><![CDATA[New comment by domh in "Plug-In Solar Panels Starting to Sprout in U.S. Backyards"]]></title><description><![CDATA[
<p>This is going to be made legal in the UK on the 27th August. Max 800w inspired by Germany. I'll definitely get some panels and see how they go.</p>
]]></description><pubDate>Sun, 09 Aug 2026 20:12:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=49235308</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49235308</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49235308</guid></item><item><title><![CDATA[New comment by domh in "The session you cannot take with you"]]></title><description><![CDATA[
<p>Does there need to be an open standard or file format for context? Open models should align on the same format for portability? Could be sqlite based so it can be queried by other programs?</p>
]]></description><pubDate>Fri, 31 Jul 2026 10:12:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=49121258</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49121258</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49121258</guid></item><item><title><![CDATA[New comment by domh in "More Tailscale tricks for your jailbroken Kindle"]]></title><description><![CDATA[
<p>+1 to this. KOReader acts like an always-on "app" opened from the regular kindle launcher. I believe there may be a way to make it auto start on boot, but it doesn't replace the base OS.</p>
]]></description><pubDate>Wed, 29 Jul 2026 10:59:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=49095812</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49095812</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49095812</guid></item><item><title><![CDATA[New comment by domh in "London Gatwick has launched a robotic airport parking service"]]></title><description><![CDATA[
<p>It says Stanley Robotics in the article: <a href="https://www.stanley-robotics.com/" rel="nofollow">https://www.stanley-robotics.com/</a><p>Edit: seems like they got bought out in 2024 by HL Robotics: <a href="https://en.hlrobotics.co.kr/" rel="nofollow">https://en.hlrobotics.co.kr/</a></p>
]]></description><pubDate>Sun, 26 Jul 2026 16:08:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=49059535</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=49059535</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49059535</guid></item><item><title><![CDATA[New comment by domh in "Telegram Serverless"]]></title><description><![CDATA[
<p>WhatsApp does appear to have some "business" account/API type stuff which I assume is scriptable. But I don't believe it's got a free tier for personal use (although I haven't personally looked).<p>It is always preferable to use WhatsApp to contact a business than calling up.</p>
]]></description><pubDate>Wed, 15 Jul 2026 14:23:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=48921304</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=48921304</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48921304</guid></item><item><title><![CDATA[New comment by domh in "Telegram Serverless"]]></title><description><![CDATA[
<p>This is cool. I wish Signal had a bot API like telegram's.</p>
]]></description><pubDate>Wed, 15 Jul 2026 12:35:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=48919895</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=48919895</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48919895</guid></item><item><title><![CDATA[New comment by domh in "Immich 3.0"]]></title><description><![CDATA[
<p>I'm in the same boat, and have been meaning to try immich but slightly worried about migration effort. Should I import fresh into Immich or setup my existing photoprism as an external library? I think the former is probably correct, but the latter might be easier?<p>Anyone have experience with this? I haven't done much modification or album creation in photoprism, so am happy to start from scratch on that front.</p>
]]></description><pubDate>Fri, 03 Jul 2026 10:57:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=48773538</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=48773538</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48773538</guid></item><item><title><![CDATA[New comment by domh in "What's wrong with EU age verification? (Nothing)"]]></title><description><![CDATA[
<p>This only happens in the UK in clubs that have a history of violence or drug use (often leading to harms and death) and is a condition of a license. This is nowhere near the universal experience here for showing IDs for entry.</p>
]]></description><pubDate>Wed, 01 Jul 2026 15:10:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=48748136</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=48748136</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48748136</guid></item><item><title><![CDATA[New comment by domh in "Volkswagen started blocking GrapheneOS users"]]></title><description><![CDATA[
<p>Apologies for the youtube shorts link, but Liz Kendall was on LBC yesterday talking about VPNs:<p><a href="https://youtube.com/shorts/WvHl3G6KojI" rel="nofollow">https://youtube.com/shorts/WvHl3G6KojI</a><p>I believe they're "doing research" into it, which basically means they don't understand how any of it works.</p>
]]></description><pubDate>Wed, 17 Jun 2026 18:12:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=48574350</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=48574350</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48574350</guid></item><item><title><![CDATA[New comment by domh in "GrapheneOS has been ported to Android 17"]]></title><description><![CDATA[
<p>Huh, it works just fine in the UK. Wonder if they have different builds (or completely different apps) for different regions. Or maybe it's the GrapheneOS compatibility layer that makes it work? Not sure.</p>
]]></description><pubDate>Wed, 17 Jun 2026 06:54:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=48566761</link><dc:creator>domh</dc:creator><comments>https://news.ycombinator.com/item?id=48566761</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48566761</guid></item></channel></rss>