2022-01-20

A free markdown editor

So realized I needed a "ghostwriter."  Not that kind of ghostwriter.  So having most of my info-tech notations in text made me suddenly realize occasionally I will need a "markdown editor."  And "Ghostwriter" is a free "markdown editor." 
https://github.com/wereturtle/ghostwriter

No comments:

Post a Comment

Script to see network interface connection speed

cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1   network-speed ...