Password things.
base64
/dev/urandom
head -c50 /dev/urandom | base64
mkpasswd --method=sha-512
mkpasswd --method=yescrypt
openssl passwd -6
python3 -c 'import crypt, getpass; print(crypt.crypt(getpass.getpass()))'