>>29716In the imperial core your baseline threat model always consists of automated data collection and the real-world places it feeds back into. This means you can either give up and hope you're median enough to effectively fly under the radar or always apply your best to remain private, anything else puts you at an unnecessary risk. Compromises, especially concerning financial services, are natural, but privacy should never be given up lightly.
I save all my passwords on an encrypted partition btw, this is my generator script:
#!/bin/rc
if(~ $#* 1) {
c='A-Za-z0-9$~&%[{}(=*)+]!#`;:,<.>''"@^/?\|\-_'
k=$1
}
if not if(~ $#* 0) {
c='A-Za-z0-9$~&%[{}(=*)+]!#`;:,<.>''"@^/?\|\-_'
k=32
}
if not {
c=$1
k=$2
}
dd -if /dev/random|tr -cd $c|dd -count $k -bs 1