• 1 Post
  • 65 Comments
Joined 2 years ago
cake
Cake day: March 23rd, 2022

help-circle




  • Political means more than just parties and institutions of government. Society and economy is inherently political. Who owns what is produced and the tools used to produce it is inherently political. Therefore software development, just like any other type or work or other economic interaction, is political.








  • I know I’m not part of the target audience for pretty sites, but the average user gets frustrated with poor design choices and outright broken websites as well.

    Just as one recent and therefore present example, I was on a pretty site the other day and nothing happened when I clicked on “About Us”. The next thing I did was close the tab. As you say, first impressions mean a lot.

    I hear complaints about these kind of things at work constantly as well. As an internal product owner of sorts users think I and the devs make poor design choices on our own, but all we can do is manage the best we can with the UX garbage Microsoft comes up with.


  • I really like what Mikrotik offers. Their gigabit routers start at maybe €40 and have the incredibly powerful Router OS installed.

    A mini-PC with pfSense would offer similar features with more processing power, but with a homelab already you don’t need to do much processing on the router itself.



  • Forgejo is a git server, forked by Codeberg from Gitea after Gitea got bought up by a for-profit corporation.

    Codeberg is a non-profit organization which runs a public instance of the Forgejo git server.

    You can make an account on Codeberg.org, save repos there, and contribute to other repos, like on Github. Or you can run your own Forgejo instance to use either privately or open up to public use.


  • You could rsync with directories shared on the local network, like a samba share or similar. It’s a bit slower than ssh but for regular incremental backups you probably won’t notice any difference, especially when it’s supposed to run in the background on a schedule.

    Alternatively use a non-password protected ssh key, as already suggested.

    You can also write rsync commands or at least a shell script that copies all of your desired directories with one command rather than one per file.



  • I tried migrating my personal services to Docker Swarm a while back. I have a Raspberry Pi as a 24/7 machine but some services could use a bit more power so I thought I’d try Swarm. The idea being that additional machines which are on sometimes could pick up some of the load.

    Two weeks later I gave up and rolled everything back to running specific services or instances on specific machines. Making sure the right data is available on all machines all the time, plus the networking between dependencies and in some cases specifying which service should prefer which machine was far too complex and messy.

    That said, if you want to learn Docker Swarm or Kubernetes and distributed filesystems, I can’t think of a better way.