For Morse:
$ echo "Your text here" | morse -s | sed 's/-/E/g;s/\./e/g' | fmt -99999
For binary, using the Python REPL:
$ python -q
>>> ' '.join(bin(ord(c))[2:].zfill(8).replace('0', 'e').replace('1', 'E') for c in "Your text here")
Top-level
For Morse: $ echo "Your text here" | morse -s | sed 's/-/E/g;s/\./e/g' | fmt -99999 For binary, using the Python REPL: $ python -q 4 comments
It exists mostly as a Twitter/Masto account for sharing ed(1) tips, tricks, and encounters of ed in the wild. I'm a little more lax on Masto, also including other CLI-related stuff like the above CLI stuff. |
@ed1conf @grishka is there actually an ed(1) conference because I would like to attend