
Some of the most irony-poisoned bullshit I’ve ever heard, given all the socialism that businesses are benefiting from https://www.cato.org/policy-analysis/corporate-welfare-federal-budget-0

Some of the most irony-poisoned bullshit I’ve ever heard, given all the socialism that businesses are benefiting from https://www.cato.org/policy-analysis/corporate-welfare-federal-budget-0
Thank you! Seeing a picture of Lawrence Krauss in a NYT article like this…god. It sustains me. See also this Rebecca Watson video: https://youtu.be/VNLdyWPAz18 wherein she talks about just how gross he is. Truly, we are lions led by donkeys. How these people manage to fail upward is really something to behold.


She has well and truly earned every stress-induced illness, every sleepless night, every mental breakdown she experiences. May she singularly feel all the hardship she has caused others.


I will never get tired of these people twisting themselves into knots trying to avoid saying the painfully obvious reason Trump is in the Epstein files (it’s because he’s a rapist pedophile).
MTG: he’s protecting a foreign government! https://www.independent.co.uk/news/world/americas/us-politics/mtg-trump-israel-epstein-files-b2866209.html
Massie: he’s protecting the billionaires! https://abcnews.go.com/Politics/massie-100-house-republicans-vote-release-epstein-files/story?id=127568864
Simultaneously I find the constant, insultingly stupid attempts at misdirection to be completely exhausting. They cannot be out of power soon enough.


Fuck that, lean in! Generate a fake profile with ChatGPT. You’re not an IT drone, you got a Wharton MBA. You spent 10 years volunteering as a street sweeper for Doctors Without Borders in Port-au-Prince before you got your big break in forensic accounting. In your spare time you enjoy carving tiny canoes out of toothpicks and staging mock naval battles with the bugs you catch as an amateur entomologist. LLMs can’t make our lives better, but we sure as shit can make them worse.
Gross as all 3 of these people are, this isn’t Bondi, according to Snopes: https://www.snopes.com/fact-check/trump-epstein-photo-bondi/
This is a real can of worms, as you can see from what other people have said. Let me chime in with two things: first, it depends on the partition and filesystem type, which usually depend on which distribution you’re using. For example, Debian, Ubuntu, and Linux Mint default to the ext4 filesystem, which is easy to grow and shrink. Most Fedora derivatives use btrfs, but Fedora Server uses xfs, which cannot be shrunk. So you’ll need to know what filesystem your system is running in order to proceed. The safest thing to do if you go this route is probably to backup everything and reinstall the OS, picking the new size from the installer. However, depending on the filesystem, resizing may be possible. Regardless, this is potentially dangerous and the first thing you do should definitely be to back. up. everything.
And second, if you’ve got a big filesystem that’s mostly empty, the easiest way to solve this may be to simply copy whatever’s filling up your smaller filesystem to the bigger one, rename the original, then symlink the location on the bigger filesystem to its original location on the smaller one. Then test to make sure whatever you changed didn’t break anything. If everything worked, you can delete the renamed original. So for example, from the terminal, I’d do:
# Assume the smaller filesystem contains /home and the larger is at /mnt/bigdisk $ cp -a /home/USER/.local/share/Steam /mnt/bigdisk $ mv /home/USER/.local/share/Steam /home/USER/.local/share/Steam.orig $ ln -s /mnt/bigdisk/Steam /home/USER/.local/share/SteamEven though this is probably what I would do, a word of caution: don’t do this if the stuff in question is required for the system to boot. And if you don’t know, don’t try it (or let it be a Learning Experience)! Generally, things under your home directory are safe, so if Steam’s installed there, that should be fine. Good luck!