- 16 Posts
- 75 Comments
tko ( tko@tkohhh.social ) to World News•Bill Gates to give away $200 billion by 2045, says Musk is 'killing' world's poorest childrenEnglish14·2 months agoEven if that’s true, it doesn’t diminish the very real good that the foundation has accomplished, like Polio eradication or HIV/AIDS research. You can feel about Bill Gates whatever you want, but you cannot deny that his money has done very good things for humanity.
tko ( tko@tkohhh.social ) toLemmy Support@lemmy.ml•Where to freely post comments without being blocked?English1·3 months agoYou should try www.creedthoughts.gov.www\creedthoughts
tko ( tko@tkohhh.social ) to Asklemmy@lemmy.ml•What are your favourite songs with epic bass drops?English2·3 months ago“On Her Majesty’s Secret Service” by Propellerheads has an amazing bass drop in the middle of the song.
I’m also partial to “Empire Ants” by Gorillaz.
Parker, specifically the Jotter. I still have and use a stainless steel one that I bought in 1999 because I kept losing pens, and I thought that if I spent a little more on one I might take better care of it. It’s my favorite by far.
tko ( tko@tkohhh.social ) to Asklemmy@lemmy.ml•If someone doesn't wear a seatbelt and kills another person as a result who is wearing a seatbelt could that person face a manslaughter charge?English6·9 months agoI’m having a hard time imagining an accident caused by not wearing a seatbelt… I guess maybe being thrown from the vehicle and hitting a passenger in another car who was wearing a seatbelt?
tko ( tko@tkohhh.social ) to Asklemmy@lemmy.ml•Cloud storage/backup options [Linux]English2·10 months agoI run a Nextcloud instance on my Unraid server.
ahhhh yes, that makes perfect sense… thank you for pointing that out! Especially since I’m not good enough with
vi
to know how to bulk delete the first character in specific lines, I had to manually arrow and delete.
I successfully migrated postgres 15 to 16. I followed the general idea of the guide you posted, but I found it a little easier to do a slightly different process. Here’s what I did:
docker-compose down
for the lemmy instance
2. edit thedocker-compose.yml
file and comment out all of the services except postgres. In addition, add a new volume to the postgres service that looks something like this:- ./volumes/miscfiles:/miscfiles
- edit the
docker-compose.yml
file and add a new volume to the postgres service that looks something like this:- ./volumes/miscfiles:/miscfiles
docker-compose up -d postgres
(this starts just thepostgres
service from the docker compose file)docker exec -it [container name] pg_dumpall -U [username] -f /miscfiles/pgdumpall20240628
(I think this will work, but it’s not exactly what I did… rather, I randocker exec -it [container name] bash
, and then ranpgdumpall -U [username] -f /miscfiles/pgdumpall20240628
. The end result is a dumpall file saved in the./volumes/miscfiles
directory on the host machine)docker-compose down
mv ./volumes/postgres ./volumes/postgresBAK20240628
(move your existing postgres data to a new directory for backup purposes)mkdir ./volumes/postgres
(re-create an empty postgres data folder. make sure the owner and permissions match thepostgresBAK20240628
directory)- edit the
docker-compose.yml
and update the postgres image tag to the new version docker-compose up -d postgres
(you’ll now have a brand new postgres container running with the new version)docker-exec -it [container name] psql -U [username] -f /miscfiles/pgdumpall20240628
(again, I think this will work, but Ibash
ed in and ran the command from within the container. This also allows you to watch the file execute all of the commands… I don’t know if it will do that if you run it from the host.)docker-compose down
12. edit thedocker-compose.yml
and un-comment all of the other services that you commented out in step 2docker-compose up -d
Hopefully that helps anyone that might need it!
edited to reflect the comment below
Thank you, that’s super helpful!
tko ( tko@tkohhh.social ) to Asklemmy@lemmy.ml•What are Some Good, Recent, and Available Dumb Cars?English2·1 year agoUnderstood, but OP mentioned that he wanted something without a backup camera, so that’s why I was asking for clarification.
tko ( tko@tkohhh.social ) to Asklemmy@lemmy.ml•What are Some Good, Recent, and Available Dumb Cars?English11·1 year agoCan you clarify exactly what you mean by a “dumb car”? Do you just mean that it doesn’t have a screen in the cockpit? Or something else?
tko ( tko@tkohhh.social ) to Asklemmy@lemmy.ml•I love-hated Chinatown because the ending is so damn nihilistic. What are some other entertaining movies that have similar endings?English2·2 years agoI think Seven falls in that category.
Clarification question: Why would you expect somebody to DM you?
Said another way: the game is innovative (for a Mario game), NOT the game is innovative (for a platformer)
Don’t you think people just mean that it feels like a Mario game at the same time as feeling fresh? That’s certainly how I felt. It’s “innovative” in the sense that there are things that you didn’t expect, and that’s fun and exciting. I could be wrong, but I don’t think anybody means “innovative” in that it’s ground-breaking in the larger gaming world or even in the platforming genre.
tko ( tko@tkohhh.social ) to Asklemmy@lemmy.ml•What's your opinion on getting video game achievements with the help of a guide?English1·2 years agoYour lack of outrage is outrageous. Is this a game to you?
FYI, Lemmy apparently drops any text that looks like an html tag, even in an inline code block. grrr…
Federation is a tool to connect instances together. If one instance isn’t being run in a way that you like, you can and should create an account on a different instance that better aligns with your ideals. Or, if you can’t find any such instance, then you can create your own instance. This is the beauty of federation!