arrakark

joined 1 month ago
[–] arrakark@10291998.xyz 1 points 4 days ago

I'll give you 50c on the dollar!

[–] arrakark@10291998.xyz 28 points 5 days ago* (last edited 5 days ago) (3 children)

In the next 7 days I will get:

  • anxiety
  • anxiety
  • anxiety
  • anxiety

I got this.

[–] arrakark@10291998.xyz 4 points 1 week ago

This is the same logic that keeps coal on life support.

[–] arrakark@10291998.xyz 8 points 1 week ago

Good for them. Cyberpunk was an excellent game, and the Phantom Liberty expansion was dope. The multiple different endings made the game much more replayable. Some of the endings are some of the saddest in videogames lately.

[–] arrakark@10291998.xyz 18 points 2 weeks ago

Oh sorry, I didn't realize this was a shitpost 🤦‍♂️

[–] arrakark@10291998.xyz 21 points 2 weeks ago (4 children)

One of those canisters is equivalent to burning 178mL of gasoline. Or enough to power an average car for 2km. Most people burn through the equivalent of 30+ of these a day going to work and back.

[–] arrakark@10291998.xyz 1 points 2 weeks ago (1 children)

Yes, I agree on the alcohol tax re. Healthcare costs. However, I ferment my own drinks and I'd like to point out the irony of buying raw ingredients + yeast, vs buying a prepared drink. It's like you are getting taxed for convenience as a deterrent.

[–] arrakark@10291998.xyz 13 points 2 weeks ago (6 children)

Lol this is just a joke... Food should have always been completely tax free! Two weeks?!? What kind of circus is this?? Is he trying to buy votes for $250/pop? I'm amazed at what they come up with next.

[–] arrakark@10291998.xyz 2 points 3 weeks ago (1 children)

Just go for it bro /s

[–] arrakark@10291998.xyz 2 points 3 weeks ago (3 children)
 

It's interesting how different countries are dealing and are effected by the declining worldwide birth rates. The most astounding statistic to me is that wildlife populations have dropped +70% over the past 50 years. Frankly, if humans think that we are in the right to drop wildlife populations by such a staggering amount, a slight drop in human populations only seems like a fair way to balance the scales.

 

Hey; I just got a Lemmy instance up and running. I'd like to share some tips and things that helped me along the way.

I used the Ansible installer found here. Just following the instructions is pretty clear if you've ever set up a server before. I did have a couple of hickups though:

  • In the hosts config file, there's a like that says "myuser@example.com: replace with the destination you use to connect to your server via ssh."" There's a typo down below where there is no myuser@example.com, it actually says example.com instead. Do replace it with your username and domain.
  • The customPostgresql.conf DOES need to be tuned for your server memory and CPU; the default did not work for me
  • When it says Configure a DNS A Record to point at your server's IP address. it means you need an IPv4 address for your server. Unfortunately, this means you can't use the cheapest Vultr tier at $2.5/mo, but you have to use the $3.5/mo instance at least.
  • I used the $5/mo Vultr instance instead of $3.5 because 512MiB of RAM caused my server to run out of memory and start killing processes. For some reason nginx would be the first to go.
  • Speaking of nginx; it was not configured to start on startup for some reason. A quick sudo systemctl enable nginx fixed that.
  • To diagnose the memory issue; I had to go docker ps | grep postgres, get the hash/ID for postgres, then do sudo docker logs 5115641fc0b2 to see the logs
  • To see the server logs, the /srv/lemmy/<domain name here> is where the docker-compose.yml file is, so if you cd into this dir, only then can you run docker compose logs -f lemmy or docker compose logs -f lemmy lemmy-ui pictrs to see the lemmy logs
  • Sometimes, pressing a button in the config menu doesn't do anything. Generally, it's a backend issue and not a frontend one, but the front-end does not tell you that anything has gone wrong. If you "Inspect" and open up the console in your browser, you'll see the server request done and you can see the response.
  • I was surprised to learn that you can't make a federated AND private Lemmy instance. I guess it makes sense? I kind of want to save on server bandwidth/resourse by being the only user though...
  • My ISO of Debain did not have a swap file or partitioned any swap space. Create a swap file and make it permanent through the following commands: sudo fallocate -l 1G /swapfile sudo chmod 600 /swapfile sudo mkswap /swapfile sudo swapon /swapfile and then edit sudo nano /etc/fstab and add the line /swapfile none swap sw 0 0. Without the swap Lemmy would crash the server.

Anyways, hope these notes help someone! If you've got any tips I'd love to hear.

view more: next ›