(Justin)

Tech nerd from Sweden

  • 2 Posts
  • 474 Comments
Joined 2 years ago
cake
Cake day: June 10th, 2023

help-circle




  • yeah, the jeans I bought weren’t recycled, but they do have a system for recycling them when they’re worn out.

    I bought a 1942 army great coat off of ebay, lots of them up there. I bought a 1980’s navy peacoat at a random vintage store somewhere around Alphabet City in NYC. Be aware that most people size those coats 4-6 down because they’re meant to go over multiple thick shirts, blouses, and midlayers in military use, but with a normal shirt and sweater you don’t need them so large.


  • I think it depends on exactly what item you’re looking for. Plenty of vintage coats out there, I just bought two 40+ yo military wool coats this season since my old jacket is wearing out and isn’t that stylish. There’s probably local jeans manufacturers that also recycle fabric, like Jeansverket in Sweden. Rose Anvil on YouTube is a good source for finding boots that will last decades.

    There is definitely enshittification out there, but it’s not impossible to find BIFL out there.


  • Of the services OP is asking about, I’ve only run Lemmy, but I will say that running fediverse services are quite advanced, which is exactly what k8s is made for - Running advanced web applications.

    I’m firmly on the “k8s at any scale” team. If you can figure out how to run the k3s install command and are willing to look at some yaml documentation, you will have a much easier time setting up database and networking, running backups, porting your infrastructure to other providers, and maintaining everything, than with legacy control panels or docker compose. The main reason why Docker Compose is so much more accessible for self-hosters is because of the quantity of noob-focused documentation for Docker Compose, But learning either system requires learning the same concepts of containers, IP adresses, storage, etc. Docker Compose also has some disk and networking shortcuts for single-server workloads, but they also have their downsides (what is a macvlan?).

    The main reason why I think Kubernetes is critical for this specific workload is the number of production-critical databases that OP will need to run. OP will be running something like 4-8 postgres databases, with high uptime and 100% durability requirements. Trying to do that manually with Docker compose just isn’t feasible unless you’re willing to code. Kubernetes makes all of that automated with CNPG. See how easy it is to create a database and have automated backups to S3 with Kubernetes

    The biggest challenge for kubernetes is probably that the smaller applications don’t come with example configs for Kubernetes. I only see mastodon having one officially. Still, I’ve provided my config for Lemmy, and there are docker containers available for Friendica and mbin (though docker isn’t officially supported for these two). I’m happy to help give yaml examples for the installation of the applications.