Spyke

Replies

Comment on

A guy went to adobe.com and told the truth

Reply in thread

If you want to do ANYTHING creative in a digital medium in 2026, you’ll be forced to pay them a monthly fee.

This is giving Adobe too much credit. They suck, for sure, and are monopolistic and have set the industry back, but if people want to do creative things, there are manageable options outside of Adobe. Especially if you focus on alternative software for a particular niche (photography, illustration, compositing, etc).

privacy

Comment on

Bankrupt 23andMe Just Sold Off All Your DNA Data

Hindsight is 20/20. ITT lots of folks proud of themselves for not falling into this trap, but try to understand, 23andme was named "invention of the year" by Time in 2008. That's before [edit: around the time] google and facebook had begun monetizing private data. Data privacy, or even the power of data itself, was hardly appreciated by private companies let alone in the public consciousness.

Orphans, people with absent parents, decedents of slaves, the list goes on for folks who would understandably go for an affordable way to access their genetic history. Sure, there were plenty of folks since then who had all the information and still went for it, but what about all those who became aware of it too late and when they requested their data be deleted were told it would be kept for 3 years!

I'm saddened to see more victim blaming here than anger at the ToS/privacy policy fuckery and a complete lack of consumer protection.

Comment on

Ads

But if you pay for YouTube premium you won't have ads... for the first couple of years until they corner the market, and change the terms of services several times to maximize profits. uBlock and donating to open source FTW. shout out to yt-dlp

Comment on

What's a handy terminal command you use often?

I went a little overboard and wrote a one-liner to accurately answer this question

history|cut -d " " -f 5|sort|uniq -c|sort -nr|head -5

Note: history displays like this for me 20622 2023-02-18 16:41:23 ls I don't know if that's because I set HISTTIMEFORMAT='%F %T ' in .bashrc, or if it's like that for everyone. If it's different for you change -f 5 to target the command. Use -f 5-7 to include flags and arguments.

My top 5 (since last install)

   2002 ls
   1296 cd
    455 hx
    427 g
    316 find

g is an alias for gitui. When I include flags and arguments most of the top commands are aliases, often shortcuts to a project directory.

Not to ramble, but after doing this I figured I should alias the longest, most-used commands (even aliasing ls to l could have saved 2002 keystrokes :P) So I wrote another one-liner to check for available single characters to alias with:

for c in a b c d e f g h i j k l m n o p q r s t u v w x y z; do [[ ! $(command -v $c) ]] && echo $c; done

In .bash_aliases I've added alias b='hx ${HOME}/.bash_aliases' to quickly edit aliases and alias r='source ${HOME}/.bashrc' to reload them.