Spyke

Replies

Comment on

He has a point

As a non American: as a form of protest, instead of doing protests in the streets, why don't you just stop paying taxes?

It seems to me you have a very easy way to tell your government you're fed up with it or just as a form of protest.

I'm sure your gov has a horrible way of inforcing taxation, but you actually do have the option of not-paying.

Comment on

Do you configure your servarr docker containers from one docker-compose file, or individual ones?

Yes splitting them up is much better.

The only reason you should have secondary services there is if main service is using them exclusively.

Having a single compose file for multiple unrelated services sounds like a nightmare to stop, start and debug if one of your containers is acting weird.


Say for example you have something that needs a mysql server and you have no other use for it beyond that container, then it should go in there with the main seevice.

But then you eventually add another service which also needs a mysql backend. Do you add another mysql instance for that specific service? Or you could separate your existing one into its own compose file and just connect the two separate apps to the single instance.


Here's the way I have mine setup. https://github.com/DanTheMinotaur/HomeHost/tree/main/apps

I use an ansible job to deploy and run them.

Comment on

My city started rolling out electric buses

Does anyone feel like electric buses are a type of green washing?

I like EVs, but do they make sense for something that needs to be on the road all day? Is replacing a couple hundred diesel buses bringing thousands around a day really what should be getting targeted?

Every little helps and all, but doesn't seem like it should be considered a bug deal.

linux

Comment on

Help me ditch windows?

Just make a partition and install a distro: Try Bazzite(fedora); don't like it? Try Garuda(arch).

I just use fedora and install the stuff myself, which is probably similar to how Windows works since there's no "windows with steam and Nvidia drivers"

Don't use Debian on the gaming PC(or any "stable" or "lts" distro), everything will be out of date and Gaming on Linux typically needs the latest packages.


The big thing you probably will care about is the Desktop Environment; which is what you'll actually see when using the PC. There's Gnome, KDE and more, each distro will typically let you use pic which one to use.