• 1 Post
  • 68 Comments
Joined 5 months ago
cake
Cake day: August 22nd, 2024

help-circle








  • Honestly a raspberry pi or equivalent on diet pi (https://dietpi.com/) is probably a good start. Though with the caveat that you should use its internal utilities to create an off-site backup of your most important data via a provider such as hetzner.

    Cheap, low power, and diet pi is Debian with some tweaks so it’s very easy to set up either bare metal or via containers (as others have said containers may help manage things easier and safer in the long run).

    For storage, you’ll probably either need an externally powered USB dock (30ish EUR) or a powered 3.5inch HDD dock if you go this route as the pi cannot reliably power even one SSD from its USB ports - you’ll risk IO failures. The same will come from any setup that includes any low power SBC just for stability. In my experience it’s still less than 15W but you need stable power for IO stuff on SSDs.





  • web Devs aren’t ignorant to optimizing but the kind of interfaces used in web are very different to that of desktop. Cross platform technologies can work, but anything built on top of web engines is going to be a little dogshit on native platforms.

    Web tech was designed around the asynchronous and comparatively slow nature of the network. Now, those same layout and rendering engines are being shoehorned into an environment where the “server” is your local disk so it’s suddenly doing a bunch of work that was intended to be done iteratively.

    Same goes the other way of course. Software designed for “native first” experiences like Flutter aren’t as popular in web dev because they work on that same, but reversed, assumption of a local disk being your source.

    It would be like wondering why physical game disks aren’t popular on PC - it’s a fundamentally different technology for fundamentally different expectations and needs.