morriscox to [email protected] • 1 year agoHow did you pick the name of your child/children?message-square62arrow-up190arrow-down16
arrow-up184arrow-down1message-squareHow did you pick the name of your child/children?morriscox to [email protected] • 1 year agomessage-square62
minus-square@[email protected]linkfedilink48•1 year agoI just run cat /dev/urandom | strings | head -10 Until I find something that slaps.
minus-square@[email protected]linkfedilinkEnglish13•1 year agoAre you checking out the competition Elon?
minus-square@[email protected]linkfedilink6•1 year agoTIL you can generate random character strings like that
minus-square@[email protected]linkfedilink5•1 year agoThere’s room for improvement, as strings in this configuration will output arbitrary lengths, so it’s very likely to result in 10 lines with 1 char, or one line with a length of 100+
I just run
cat /dev/urandom | strings | head -10
Until I find something that slaps.
Are you checking out the competition Elon?
TIL you can generate random character strings like that
There’s room for improvement, as strings in this configuration will output arbitrary lengths, so it’s very likely to result in 10 lines with 1 char, or one line with a length of 100+
grep ‘[[:alpha:]]{3,16}’?