

In the US it is absolutely a tipped position, and has been for decades.


In the US it is absolutely a tipped position, and has been for decades.


There’s a reason songs like these exist:
Mississippi Goddam - Nina Simone
Here’s to the State of Mississippi - Phil Ochs
What’s Going On Down There - Malvina Reynolds


Advice from a long time sysadmin: You’re probably asking the wrong question. ncdu is an efficient tool, so the right question is why it’s taking so long to complete, which is probably an underlying issue with your setup. There are three likely answers:
sudo find $(grep '^/' /etc/fstab | awk '{print $2}') -xdev -type f -exec dirname {} \; | sort | uniq -c | sort -nr | head
This command doesn’t give an exact file count, but it’s good enough for our purposes.
sudo find # run find as root
$( … ) # Run this in a subshell - it’s the list of mount points we want to search
grep ‘^/’ /etc/fstab # Get the list of non-special local filesystems that the system knows how to mount (ignores many edge-cases)
awk ‘{print $2}’ # We only want the second column - where those filesystems are mounted
-xdev # tell find not to cross filesystem boundaries
-type f # We want to count files
-exec dirname {}; # Ignore the file name, just list the directory once for each file in it
sort|uniq -c # Count how many times each directory is listed (how many files it has)
sort -nr # Order by count descending
head # Only list the top 10
If they are temp files or otherwise not needed, delete them. If they’re important, figure out how to break it into subdirectories based on first letter, hash, or whatever other method the software creating them supports.
Depends on the type of stuffing. On a small, soft one like that, it’s generally fine. Larger stiffer stuffed animals may have a styrofoam core, in which case it depends on the strength of the vacuum pump.


Not in TFA, but in anather article it linked to:
Abbott called a second special session, which began immediately after the adjournment of the first one.


It’s just as clear it is impossible to veer right enough to scrape a single vote off the republican ticket. The left will criticize, but veer left and at least some will hold their noses and (protest sign in hand) vote anyway.
Guinea fowl even more so
Lack of ground contact also deters termites.
Probably not. It looks like it’s setting the fake address before reading the tunnel parameters, where the real address is stored. Probably a kludge in case the connection address is undefined so the program doesn’t crash. So check whether the address is included there.
Also check the function that establishes the connection. 10.1.1.1 is not a public subnet, so unless there is a VPN device listening at the local address, the tunnel should fail to establish and throw an error, triggering the exception clause in that code. Again, you’ll want to confirm that in the code.
Before going to Flatpak just for newer versions of software, consider APT pinning. You can actually use testing or Sid packages on more stable versions of Debian while still keeping the advantages of Debian-specific packages.