Github Gists and Cheat Sheets

This is a list of Github Gists that I use to remember noteworthy stuff… feel free to fork and extend!

Note to myself: here is the command that gives me all my gists as JSON

curl 'https://api.github.com/users/michaellihs/gists?per_page=100' | jq '[ .[] | {url: .url, description: .description}]'

and here is the VS Code replace regex to format them into Markdown

\{\n.*(https.*?)".*\n.*"description": "(.*?)"\n\s+\},
* [$2]($1)