2
282
Emma_Gold_Man

@lemmy.dbzer0.com

Emma_Gold_Man 8 points 2 hours ago

And since each company can own 350 homes, they'll just spin up a new subsidiary that "outsources" property management to the original company and keep buying.

path: 0 24390545 24391111 24391653, hotness: undefined, score: 8, children: 1
Emma_Gold_Man 105 points 2 years ago

That wasn't luck - it was best practice backup strategy.

path: 0 10008490, hotness: undefined, score: 105, children: 0
Emma_Gold_Man 72 points 4 months ago

yellow box containing three bricks with a sign that says "BE SEEN Grab a Brick 1. Grab 2. Look 3. Wave 4. Cross"

path: 0 22412542 22413137, hotness: undefined, score: 72, children: 1
Emma_Gold_Man 63 points 3 years ago path: 0 2395786 2397579, hotness: undefined, score: 63, children: 0
Emma_Gold_Man 50 points 2 years ago

(Assuming US jurisdiction) Because you don't want to be the first test case under the Computer Fraud and Abuse Act where the prosecutor argues that circumventing restrictions on a company's AI assistant constitutes

ntentionally ... Exceed[ing] authorized access, and thereby ... obtain[ing] information from any protected computer

Granted, the odds are low YOU will be the test case, but that case is coming.

path: 0 6898167, hotness: undefined, score: 50, children: 5
Emma_Gold_Man 48 points 2 years ago

Why are we posting corporate advertising in News now?

path: 0 10184496, hotness: undefined, score: 48, children: 0
Emma_Gold_Man 47 points 2 years ago

Nah. Replacing the kernel is probably planned for the next point release - it'll just be GNU/systemd

path: 0 9754064 9756111, hotness: undefined, score: 47, children: 1
Emma_Gold_Man 47 points 3 years ago

Probably because one of his alts was on dbzer0 and was banned for transphobia

path: 0 2420049 2422012, hotness: undefined, score: 47, children: 8
Emma_Gold_Man 45 points 10 months ago

I would say exactly the opposite - it proves the point. The sameness of the two dogs and the lack of the corresponding marriage ceremony in the background rob the image of most of its significance, and the background is a copy that wouldn't exist if the original hadn't existed.

path: 0 19239421 19239538, hotness: undefined, score: 45, children: 13
Emma_Gold_Man 44 points 2 years ago

That's an easy one - no. You can look back to various periods during middle ages Europe for examples. An even stronger one would be China from about 400 CE-800 CE

Of course, those weren't capitalist economies - but they were economies. Capitalism's instability is what requires constant growth to maintain. The better (and harder) questions would be what to transition to that avoids the issues of feudalism and how to transition with a minimum of societal upheaval (violence and death).

path: 0 10091336, hotness: undefined, score: 44, children: 0
Emma_Gold_Man 42 points 2 years ago

That may make the teeth-kicking less satisfying. It doesn't make it any less necessary.

path: 0 6794300 6794932 6797286, hotness: undefined, score: 42, children: 4
Emma_Gold_Man 41 points 10 months ago

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:

  1. This drive is used on a server specifically to store very large numbers of very small files. This probably isn't the case, as you'd already know that and be looking at it in smaller chunks.
  2. You have a network mount set up. Use the -x option to ncdu to restrict your search to a single filesystem, or --exclude to exclude the network mount and your problem will be solved (along with the traffic spike on your LAN).
  3. You have a single directory with a large number of small files that never get cleared, such as from an e-mail deadletter folder or a program creating temp files outside of the temp directories. Once a certain number of files is reached, accessing a directory slows down dramatically. The following command will find it for you (reminder - make sure you understand what a command does before copying it into a terminal, DOUBLY so if it is run as root or has a sudo in it). Note that this will probably take several times as long to run as ncdu because it's doing several manipulations in series rather than in parallel.

sudo find $(grep '^/' /etc/fstab | awk '{print $2}') -xdev -type f -exec dirname {} \; | sort | uniq -c | sort -nr | head ::: spoiler explanation 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.

path: 0 19184596, hotness: undefined, score: 41, children: 0
Emma_Gold_Man 41 points 2 years ago

Sorry, it was Solaris - you just blew it up (the minus is invalid on many Unix versions of tar)

path: 0 8363293 8363471, hotness: undefined, score: 41, children: 2
Emma_Gold_Man 41 points 10 months ago path: 0 18854898 18856568, hotness: undefined, score: 41, children: 0
Emma_Gold_Man 40 points 2 years ago

Assuming this is USA, the phrase you're looking for is "Am I being detained, or am I free to go?"

For a more detailed answer, this is what the ACLU has to say.

path: 0 7279009, hotness: undefined, score: 40, children: 2
Emma_Gold_Man 40 points 3 years ago

No. He's been real clear about that. Neither will Trump.

Short of armed insurrection, US subjects have no control on this one. The ones that are arming for insurrection also support the genocide. FML

path: 0 5936987 5939932, hotness: undefined, score: 40, children: 0
Emma_Gold_Man 38 points 2 years ago

The cost-of living crisis is so bleak that some Gen Zers genuinely fear becoming are homeless

FTFY

path: 0 10027126, hotness: undefined, score: 38, children: 4
Emma_Gold_Man 35 points 2 years ago

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.

path: 0 9224458, hotness: undefined, score: 35, children: 6
Emma_Gold_Man 32 points 3 years ago

I think there's an exception to be made in your argument for abandonware. There are classic arcade games that wouldn,'t exist any more but are widely available due to MAME support.

path: 0 5914276 5918075 5918711, hotness: undefined, score: 32, children: 2
Emma_Gold_Man 29 points a month ago

Oddly enough, the US is almost the only country in the world that allows you to renounce without having another citizenship.I wouldn't recommend it, bit technically you don't need another citizenship first.

(Seriously, don't do this.)

path: 0 23725729 23727551, hotness: undefined, score: 29, children: 0

thanks for using Leebra!

go to feed...