I had to stop when the villians were monologuing right in the middle of a fight scene, in the most cliched way possible. And this was after some mid gameplay, with a clearly telegraphed rugpull plot point that seemed like it was going to be the centerpiece of the whole story.
p03locke
No, they'll still argue that whoever is the Democratic candidate is not perfect or not liberal enough, and stay home.
Or they'll vote for them in the presidential election, but not back them up during the even years with Congressional elections. Because, you know... a president ain't a king, which is the whole fucking point of the protest.
He already knows this, but of course, like everything else out of his mouth, he can't help but lie. There is no "saying the quiet part out loud", because 100% of what he says is a lie.
I've been using DDG for a bit, and honestly, it's kinda garbage. They are just borrowing data from Bing, and it shows.
Nothing is "an apocalypse" for anything.
JFC, people, stop pushing these extreme opinions on AI. It is not simultaneously the solution to everything and the end of the world. It's just a goddamn tool.
Well, it's a good thing I'm on the anarchist Lemmy instance.
It does not. They are poor as shit because of who they vote for. Full stop.
Nope, Outer Wilds.
It's The Outer Worlds. It will.
The first game was shit. The game it was confused with became the greatest game ever made. Go buy that one instead.
It's almost as bad as the opposition's comparison of it to Skynet. People are never going to understand technology without applying some fucking nuance.
Stop hyping new technology... in either direction.
The Americans who spout off about things like standing up to tyranny and how much they love having guns are not the same people participating in this protest
And this is part of the problem. Maybe we should be the people bitching about tyranny and loving guns.
You can do some wild shit with pipes:
head -10 /var/log/syslog
- Look at the first ten lines of one of your log files, with timestamps on the frontcat /var/log/syslog | cut -d' ' -f1
- Splits the lines by a space delimiter (the-d' '
part), and grabs the first "field" (the one with the timestamp, using-f1
)cat /var/log/syslog | cut -d' ' -f1 | cut -dT -f1
- Splits the timestamp at the "T", and leaves only the datecat /var/log/syslog | cut -d' ' -f1 | cut -dT -f1 | sort | uniq -c
- Gives you a count of each dategrep systemd /var/log/syslog | cut -d' ' -f1 | cut -dT -f1 | sort | uniq -c
- For only the lines with 'systemd' on it, gives you a count of each dateThe standard GNU toolkit has a ton of utilities like that for doing stuff with text files.