Meowdy purrdnurr
Meowdy purrdnurr
I think it started with Linus and Luke of Linus Tech Tips doing a 30 day linux challenge to see what it’s like daily driving linix. Jeff of Craft Computing did one recently as well.
Zsh + oh-my-zsh
I was disappointed that he didn’t pull a heel-face turn in 3 because of all the abuse he received. I’d have him try and leech all of his sister’s power to kill her even if it ended up killing him as well due to power overload. The leeching wouldn’t kill her but it’d be enough for the vault hunters to have a chance to finish her off.
I hope the writing is better than 3’s.
It never even occurred to me to consider the height of the boxes lol
Why is the bar for Windows as long as the bar for cats?
Okay that’s good to know, thanks!
Is Spotify an electron app? I’ve noticed on my laptop (with intel gpu) that in Discord the screen flickers when selecting a gif and Discord is an Electron app I’m pretty sure.
How would I find out this patch is in, say, Fedora?
In Rimworld you can click on a pawn and see all of its health stats, stuff like heart blockages, leg and arm injuries, immunity progress of diseases and other things like that. It would make things so much easier. I’d look at my health panel and see “Common Cold (87% immunity)”
Untouched and pristine, just like God intended.
Maybe apatheism?
My socks are moist! You bastard!
I’ve been using TST for years and while it can be a bit buggy at times I couldn’t imagine going back to the default tab system.
An HDMI to DVI cable should work. I have a monitor that I connect to my PC using an HDMI to DVI cable that I can try tomorrow.
I use Wayland on my laptop running fedora 39 kde spin and it mostly runs fine. When I browse gifs in discord the screen flashes white and I can’t maximize jellyfin on connected TVs but other than that no major issues.
Burnout Paradise (not remastered), Dicey Dungeons, backpack hero, peglin, cat quest, pokemon infinite fusion (not on steam), broforce, Cassette Beasts, distance, enter the gungeon, Streets of rogue
I made my own solution since I wasn’t impressed by projects I had found. There’s two parts, the backup image and the restore image.
I use it like so:
services: restore_sabnzbd: image: untouchedwagons/simple-restore:1.0.5 container_name: restore_sabnzbd restart: no environment: - BACKUP_APPEND_DIRECTORY=/docker/production/sabnzbd - BACKUP_BASE_NAME=sabnzbd - FORCE_OWNERSHIP=1000:1000 volumes: - sabnzbd:/data - /mnt/tank/Media/Backups:/backups sabnzbd: image: ghcr.io/onedr0p/sabnzbd:4 container_name: sabnzbd restart: unless-stopped user: 1000:1000 volumes: - sabnzbd:/config - /mnt/tank/Media/Usenet:/mnt/data/Usenet depends_on: restore_sabnzbd: condition: service_completed_successfully networks: - traefik_default backup_sabnzbd: image: untouchedwagons/simple-backup:1.1.0 container_name: backup_sabnzbd restart: unless-stopped environment: TZ: "America/Toronto" BACKUP_APPEND_DIRECTORY: "/docker/production/sabnzbd" BACKUP_BASE_NAME: "sabnzbd" BACKUP_RETENTION: "24" BACKUP_FREQUENCY: "0 0 * * *" volumes: - sabnzbd:/data:ro - /mnt/tank/Media/Backups:/backups networks: traefik_default: external: true volumes: sabnzbd:
The restore container looks for a file called RESTORED in
/data
and if one isn’t found it’ll try to restore the latest backup (if available) and then create a RESTORED file. The backup container ignores this file during backup.