Earlier quoted context omitted.
I used GPT-4 to generate a non-cryptographic random 64 character string. It was faster to ask GPT-4 for the string than ask GPT-4 for the instructions to generate the string from my terminal. GPT-4 was faster than google.
Obligatory bash solution: $ random_bytes() { xxd -plain -c 0 -l "$1" /dev/urandom; } $ random_bytes 32 e6a4a7bbea69a0164cbb66c89f8f528af93c6d2459fd28d2640e2952c031b618
Hmm, I’ve been using /usr/games/fortune
Is this not a best practice?