• 17 Posts
  • 543 Comments
Joined 2 years ago
cake
Cake day: June 23rd, 2023

help-circle
  • People want to charge $15-20 for a CD, and if I did that for every album I listened to on Spotify, I would have spent at least a luxury car’s worth of music. I’m not going to ever pay that much again. Concert prices are already bad enough.

    Piracy or streaming, pick one. Because the choices we had before that sucked.

    The real problem is oversaturation, and the general worth of music. Good music is everywhere. People are making it every day and putting it out there, on Spotify, Bandcamp, wherever, and it’s all free or very cheap to listen to. Why should I specifically pay attention to Yee or Lil Shitstain or whatever is the college rock band of the week that got insanely popular?



  • 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 front
    • cat /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 date
    • cat /var/log/syslog | cut -d' ' -f1 | cut -dT -f1 | sort | uniq -c - Gives you a count of each date
    • grep 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 date

    The standard GNU toolkit has a ton of utilities like that for doing stuff with text files.











  • I asked ChatGPT and got a few wild ideas:

    • Timefall Symphony - You play a deaf conductor in a future where time is tied to music. You must sneak through collapsing timelines by conducting symphonies that rewind or fast-forward reality. Meta Twist: The game’s soundtrack is dynamically composed by the player’s performance and affects NPC memories.
    • Agent Ø: The End of The Author - You play an AI agent in a post-literature world where all creative writing is outlawed. Your job is to assassinate remaining authors hiding in simulated story-worlds. Meta Twist: At a key moment, the game deletes its own script and asks you to write the ending — but the NPCs begin resisting your choices.
    • Neon Genesis Logout - Set in a VR world where logging out is illegal, you’re a rogue program trying to find the “Exit Protocol,” which is rumored to cause the death of your real-world body. Meta Twist: The game links with your real-world social media data and uses it against you as blackmail from in-game NPCs.
    • Cognitive Espionage: Synapse Eater - You are a “Neuroleptic Diplomat” — an interdimensional agent hired to broker peace between collapsing timelines by entering sentient thought-constructs that have gained independence and now wage war against their original hosts. These constructs — known as Ideovores — eat ideas, replicate memories, and begin overwriting reality. Your mission: infiltrate mental realms that believe they are real, neutralize rogue ideas, and plant “cognitive malware” to reestablish consensus reality. At a critical point, the game begins reinterpreting your dialogue choices from hours ago as if they were implanted ideas — and characters confront you for “things you never said.” The main antagonist turns out to be your own future self, who defected and now works for a rogue nation of self-aware conspiracies. Final boss: defeat your own consciousness before you come up with it — a battle in “Pre-Thought Space,” where thinking too hard makes the level collapse.

    I mean, any of these are probably more coherent than a Kojima plot.