Won't this delete the two newest files, as opposed to everything except the two newest files?
I just looked up the man page, and actually head -n -2
means "everything up to but not including the last two lines", so this should always leave two files remaining.
Ah! This is a shell pipe! It's composing several smaller commands together, cool stuff.
-
ls -1
is the grep-friendly version of ls, it prints one entry per line, like a shopping list. -
head
takes a set number of entries from the head of a list, in this case ~~2 items.~~ negative two, meaning "all but the last two." -
xargs
takes the incoming pipe and converts it into extra arguments, in this case applying those arguments torm
.
So, combined, this says "list all the .dump files, pick ~~the first two,~~ all but the last two, and delete them." Presumably the first are the oldest ones and the last are the newest, if the .dump files are named chronologically.
Worth noting that Steam doesn't track playtime for non-Steam games. So this doesn't include Minecraft, Retroarch, or anything purchased through Itch, GOG, or Epic.
True... the trouble with open source is that nobody's getting paid to add features you want, huh.
I don't mind waiting a bit. If the system works, the users will come eventually.
Right, which defeats the purpose of the "fediverse" imo.
Can't you basically do this already by installing SteamOS on a normal PC?
Basically, repeat the experiment under a wide range of conditions, and show that the conditions for success, if any, are far beyond the original claim. I always loved the 'mythbusters' approach: if one bible can't stop a bullet, how about two bibles? ten? where is the cutoff between true and false?
If I were him I'd stand by that defense. It's a carefully worded and sane defense. He's not defending child abuse, he's saying, extremely clearly and plainly, that possession of evidence is not the same as committing abuse, and that the law shouldn't use possession as a scapegoat. Which, given that every attempt to censor the internet in the last 10 years has started with "protect the children", I'd say he was trying to cut that tactic off at the head.
Hear hear! I thought I didn't like the fediverse because Mastodon did such an awful job selling it to me. "Oh, I can't view other instances' local timelines without making accounts on them? What's even the point of federation then?" But on Lemmy you can easily browse communities outside your own instance. So it's not the fediverse's fault, Mastodon just doesn't have a clear audience.
And yeah, I can see how a lot of Mastodon's features are "privacy-focused", but I think it does TOO good a job, it's so private that you can't find anything!
That doesn't answer the question, they asked if it's open source. I agree, I don't want to replace one sketchy data-harvesting service with another, I'd be a lot more comfortable giving shutup10 control of my system if it was on github or gitlab.