Skip to content

Instantly share code, notes, and snippets.

View n3h3m's full-sized avatar

nehem n3h3m

  • Sydney, Australia
View GitHub Profile
@CMCDragonkai
CMCDragonkai / markdown.js
Last active May 27, 2020 17:02
OMetaJS: Simple Markdown
var text =
"hi\
=== \
### hi hi\
another\
--------\
\
hello\
\
\
@evanscottgray
evanscottgray / docker_kill.sh
Last active November 7, 2023 03:40
kill all docker containers at once...
docker ps | awk {' print $1 '} | tail -n+2 > tmp.txt; for line in $(cat tmp.txt); do docker kill $line; done; rm tmp.txt