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

help-circle

  • Same company acquired two very similar apps.

    One required a $14/year subscription, the other $90/year

    So, why are you using a subscription at all, and not a free and open source app?

    You know what Blender is? It’s the industry standard. Why is it the industry standard? Because it’s free, open-source GPL, it can never be taken away from you, it can never be “acquired”, everybody’s using it, and everybody is contributing towards improving it. Nobody is bitching about how Blender is extracting millions of dollars from its users and reducing its feature set at the same time. (*cough cough* Photoshop *cough*)

    Free and open source software. Every. Single. Fucking. Time. Fuck subscriptions.




  • 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.