<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: marceldegraaf</title><link>https://news.ycombinator.com/user?id=marceldegraaf</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 19 May 2026 01:55:42 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=marceldegraaf" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by marceldegraaf in "Two computers, one monitor, zero fiddling (2025)"]]></title><description><![CDATA[
<p>I have my Windows gaming rig in a rack at home, and run Apollo [1] on it. Using that, I can game on any Apple TV (with an Xbox controller) or the MacBook (connected to a display/keyboard/mouse) anywhere in my home. With wired networking 60fps at 4K is no problem at all.<p>This would be easy to set up the other way around, too: having a gaming rig on your desk with Moonlight, and running Linux on another machine somewhere in the network with Apollo to host the development setup.<p>No KVM (or KVM-equipped monitor) or other special hardware needed.<p>1: <a href="https://github.com/ClassicOldSong/Apollo" rel="nofollow">https://github.com/ClassicOldSong/Apollo</a></p>
]]></description><pubDate>Mon, 18 May 2026 18:31:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=48183594</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=48183594</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48183594</guid></item><item><title><![CDATA[New comment by marceldegraaf in "BMW Group to deploy humanoid robots in production in Germany for the first time"]]></title><description><![CDATA[
<p>It was a compliment to Miele in particular, not to all of German engineering ever ;-)</p>
]]></description><pubDate>Thu, 12 Mar 2026 12:15:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=47349532</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=47349532</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47349532</guid></item><item><title><![CDATA[New comment by marceldegraaf in "Returning to Rails in 2026"]]></title><description><![CDATA[
<p>A BEAM process is not an OS thread. The way I understand it, a BEAM process is just a very small memory space with its own heap/stack, and a message system for communication between BEAM processes.<p>The BEAM itself runs multiple OS threads (it can use all cores of the CPU if so desired), and the BEAM scheduler gives chunks of processing time to each BEAM process.<p>This gives you parallel processing out of the box, and because of the networking capabilities of the BEAM, also allows you to scale out over multiple machines in a way that's transparent to BEAM processes.</p>
]]></description><pubDate>Thu, 12 Mar 2026 12:14:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=47349518</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=47349518</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47349518</guid></item><item><title><![CDATA[New comment by marceldegraaf in "Returning to Rails in 2026"]]></title><description><![CDATA[
<p>Counterpoint on the "going all-in": we have a 7 year old Elixir/Phoenix project that currently sits at ~100K LOC and I couldn't be happier.<p>It has been absolutely wonderful building this with Elixir/Phoenix. Obviously any codebase in any language can become a tangled mess, but in 7 years we have never felt the language or framework were in our way.<p>On the contrary: I think Elixir (and Phoenix) have enabled us to build things in a simple and elegant way that would have taken more code, more infrastructure, and more maintenance in other languages/frameworks.</p>
]]></description><pubDate>Thu, 12 Mar 2026 09:44:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=47348424</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=47348424</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47348424</guid></item><item><title><![CDATA[New comment by marceldegraaf in "Returning to Rails in 2026"]]></title><description><![CDATA[
<p>Not OP, but I made the move from Ruby/Rails to Elixir years ago, so I'll try to answer from my perspective.<p>Elixir is a functional programming language based on the "BEAM", the Erlang VM. We'll get back to the BEAM in a moment, but first: the functional programming aspect. That definitely took getting used to. I remember being _very_ confused in the first few weeks. Not because of the syntax (Elixir is quite Ruby-esque) but because of the "flow" of code.<p>However, when it clicked, it was immediately clear how easy it becomes to write elegant and maintainable code. There is no global state in Elixir, and using macros for meta-programming are generally not encouraged. That means it becomes very easy to reason about a module/function: some data comes in, a function does something with that data, and some data comes out. If you need to do more things to the data, then you chain multiple functions in a "pipe", just like how you chain multiple bash tools on the command line.<p>The Phoenix framework applies this concept to the web, and it works very well, because if you think about it: a browser opening a web page is just some data coming in (an HTTP GET request), you do something with that data (render a HTML page, fetch something from your database, ...) and you return the result (in this case as an HTTP response). So the flow of a web request, and your controllers in general, becomes very easy to reason about and understand.<p>Coming back to the BEAM, the Erlang VM was originally written for large scale (as in, country size) telephony systems by Ericsson. The general idea is that everything in the BEAM is a "process", and the BEAM manages processes and their dependencies/relationships for you. So your database connection pool is actually a bunch of BEAM processes. Multi-threading is built-in and doesn't need any setup or configuration. You don't need Redis for caching, you just have a BEAM process that holds some cache in-memory. A websocket connection between a user and your application gets a separate process. Clustering multiple web servers together is built into the BEAM, so you don't need a complex clustering layer.<p>The nice thing is that Elixir and Phoenix abstract most of this away from you (although it's very easy to work with that lower layer if you want to), but you still get all the benefits of the BEAM.</p>
]]></description><pubDate>Thu, 12 Mar 2026 09:39:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=47348390</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=47348390</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47348390</guid></item><item><title><![CDATA[New comment by marceldegraaf in "BMW Group to deploy humanoid robots in production in Germany for the first time"]]></title><description><![CDATA[
<p>I recently replaced the shock dampers on our Miele washing machine (~10 years old) and I was amazed how well designed and ergonomic the inside of the machine is.<p>Parts are very easy to get at, all screws are Torx of identical size, and there's one very obvious way to take the machine apart and put it back together again. Made the replacement a breeze.</p>
]]></description><pubDate>Thu, 05 Mar 2026 12:05:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=47260661</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=47260661</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47260661</guid></item><item><title><![CDATA[New comment by marceldegraaf in "Show HN: Itsyhome – Control HomeKit from your Mac menu bar (open source)"]]></title><description><![CDATA[
<p>Hey, this looks great! I would love to test the Home Assistant version via TestFlight if that's possible; email is in my profile.</p>
]]></description><pubDate>Wed, 11 Feb 2026 13:06:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=46974473</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=46974473</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46974473</guid></item><item><title><![CDATA[New comment by marceldegraaf in "How I fell in love with Erlang"]]></title><description><![CDATA[
<p>It's funny that you mention this, and it made me take some time to appreciate I've been working with Elixir full-time for almost 10 years now, and the entire experience has been so... stable.<p>There's been little drama, the language is relatively stable, the community has always been there when you need them but aren't too pushy and flashy. It all feels mature and – in the best possible way – boring, and that is awesome.</p>
]]></description><pubDate>Tue, 11 Nov 2025 10:33:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=45885891</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=45885891</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45885891</guid></item><item><title><![CDATA[New comment by marceldegraaf in "A brief history of Time Machine (2024)"]]></title><description><![CDATA[
<p>Arq (<a href="https://www.arqbackup.com/" rel="nofollow">https://www.arqbackup.com/</a>) is a pretty decent backup solution for macOS (and Windows) that lets you bring your own storage. So you can let it back up to Amazon S3/Glacier, Dropbox, your own NAS with ZFS, or one of the other supported destinations.</p>
]]></description><pubDate>Mon, 10 Nov 2025 13:14:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=45875644</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=45875644</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45875644</guid></item><item><title><![CDATA[New comment by marceldegraaf in "3D printed maquette of Amsterdam on scale 1:2000"]]></title><description><![CDATA[
<p>The Netherlands has very complete and reliable public datasets (provided by the government) that contain loads of information about roads, buildings, up to individual trees. Additionally, there's sites like Netherlands3D[0] that combines these datasets into a 3D representation of the entire country.<p>0: <a href="https://netherlands3d.eu/" rel="nofollow">https://netherlands3d.eu/</a></p>
]]></description><pubDate>Tue, 28 Oct 2025 15:21:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=45734032</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=45734032</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45734032</guid></item><item><title><![CDATA[New comment by marceldegraaf in "Monodraw"]]></title><description><![CDATA[
<p>Sidenote: thanks so much for taking the time to write the Oban docs. I'm a big user (and fan) of Oban, and the docs are fantastic.</p>
]]></description><pubDate>Wed, 27 Aug 2025 13:45:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=45039591</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=45039591</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45039591</guid></item><item><title><![CDATA[New comment by marceldegraaf in "US Administration announces 34% tariffs on China, 20% on EU"]]></title><description><![CDATA[
<p>DMA has not been used against EU tech companies because US tech companies are clearly the market leaders in the area the DMA is concerned with. The DMA exists to make sure that companies (from the EU, US, or elsewhere) comply with EU regulations regarding privacy, tracking, and consumer rights.<p>It's not a "tax" on US companies, it's just that US companies don't bother to comply with the regulations that apply in the EU, and thus get fined.</p>
]]></description><pubDate>Thu, 03 Apr 2025 14:26:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=43570178</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=43570178</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43570178</guid></item><item><title><![CDATA[New comment by marceldegraaf in "US Administration announces 34% tariffs on China, 20% on EU"]]></title><description><![CDATA[
<p>DMA is not the same as GDPR.</p>
]]></description><pubDate>Thu, 03 Apr 2025 14:11:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=43569969</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=43569969</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43569969</guid></item><item><title><![CDATA[New comment by marceldegraaf in "US Administration announces 34% tariffs on China, 20% on EU"]]></title><description><![CDATA[
<p>VAT is not a "sneaky backdoor tax", it's imposed on all goods, regardless of where they're produced or imported from.<p>DMA (and similarly, GDPR) are enforced in EU countries just as much. It's just that the US tends to have more gigantic tech companies that do shady things with user data. Apparently the US doesn't care, but the EU actually does, and so it enforces its laws.</p>
]]></description><pubDate>Thu, 03 Apr 2025 07:40:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=43566181</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=43566181</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43566181</guid></item><item><title><![CDATA[New comment by marceldegraaf in "Self-Hosting like it's 2025"]]></title><description><![CDATA[
<p>Best decision of last year for my homelab: run everything in Proxmox VMs/containers and back up to a separate Proxmox Backup Server instance.<p>Fully automated, incremental, verified backups, and restoring is one click of a button.</p>
]]></description><pubDate>Tue, 01 Apr 2025 12:47:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=43546151</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=43546151</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43546151</guid></item><item><title><![CDATA[New comment by marceldegraaf in "Aspartame aggravates atherosclerosis through insulin-triggered inflammation"]]></title><description><![CDATA[
<p>Why would that be? I'm no biologist but I'm quite sure the CO2 won't make it all the way to the bladder, when drinking plain carbonated water.</p>
]]></description><pubDate>Fri, 14 Mar 2025 12:36:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=43362020</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=43362020</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43362020</guid></item><item><title><![CDATA[New comment by marceldegraaf in "Seagate: 'new' hard drives used for tens of thousands of hours"]]></title><description><![CDATA[
<p>Those drives are amazing. Not exactly cheap, but very reliable and silent enough for home server use.</p>
]]></description><pubDate>Wed, 29 Jan 2025 19:45:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=42870149</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=42870149</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42870149</guid></item><item><title><![CDATA[New comment by marceldegraaf in "Hack GPON – how to access, change and edit fibre ONTs"]]></title><description><![CDATA[
<p>The provider can upgrade their network from GPON to XGS-PON; in fact KPN (a large Dutch provider) does this regularly, especially in areas with new housing developments.</p>
]]></description><pubDate>Wed, 25 Sep 2024 08:01:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=41644919</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=41644919</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41644919</guid></item><item><title><![CDATA[New comment by marceldegraaf in "Building an Arduino Car Gear Shifter Indicator Display [video]"]]></title><description><![CDATA[
<p>The photo shows the current gear (3) and an indicator that the driver could shift up (the arrow pointing upward).</p>
]]></description><pubDate>Fri, 15 Mar 2024 09:02:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=39713516</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=39713516</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39713516</guid></item><item><title><![CDATA[New comment by marceldegraaf in "Launch HN: Onedoc (YC W24) – A better way to create PDFs"]]></title><description><![CDATA[
<p>Great question! We actually just use the static assets (stylesheets, images) from our public asset CDN. The generated HTML points to the latest version of those assets, which means we can always use all the latest styling/assets in our generated PDF files.<p>To give you an idea, this is the kind of PDF files we generate that way: <a href="https://assets.walterliving.com/documents/walter-charlotte-de-bourbonlaan-17-c-rotterdam.pdf" rel="nofollow">https://assets.walterliving.com/documents/walter-charlotte-d...</a></p>
]]></description><pubDate>Mon, 11 Mar 2024 18:34:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=39671790</link><dc:creator>marceldegraaf</dc:creator><comments>https://news.ycombinator.com/item?id=39671790</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39671790</guid></item></channel></rss>