• 2 Posts
  • 308 Comments
Joined 2 years ago
cake
Cake day: June 6th, 2023

help-circle
  • I feel like DVDs/Blurays already disappeared 10 years ago and are now making a comeback. Same for CDs. Streaming services don’t let you own anything, and if they pull something down, you’re SOL. Self hosting Plex and ripping my own disks has given me a level of freedom not possible with netflix et. al. Especially since DVDs are considered garbage to most people now, you can set up your own streaming service for you and your friends and family for cheap. No piracy necessary.














  • Unfortunately, the windows bootloader issues are also ingrained in UEFI for many motherboards. Every few days I start my PC up and it has decided my grub entry is garbage and does me the favor of removing it and defaulting back to the windows bootloader.

    I’ve worked around this by adding a bootcfg entry to the windows bootloader that points at grub. Now any time this happens, I pick the grub entry from the windows bootloader, my PC reboots, and now it’ll keep defaulting to grub again until the next time it decides to wipe it.




  • It is not standard workflow in git to change the commit history for a branch on the remote. You have to use --force, and the next time someone pulls they also have to --force their any local tracking branch to follow the remote. Every git guide on the internet warns against pushing a rebase for this reason.

    Locally you can do whatever. I’m not familiar with Mercurial, but I assume it must work the same as git: I can do whatever I want locally, and only what I push matters. And when I’m doing stupid stuff locally as I organize my changes, rebase is handy.