morriscox to [email protected] • 11 months 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] • 11 months agomessage-square62
minus-square@[email protected]linkfedilink48•11 months agoI just run cat /dev/urandom | strings | head -10 Until I find something that slaps.
minus-square@[email protected]linkfedilinkEnglish13•11 months agoAre you checking out the competition Elon?
minus-square@[email protected]linkfedilink6•11 months agoTIL you can generate random character strings like that
minus-square@[email protected]linkfedilink5•11 months 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}’?