1 year ago in Tools
"jq is like sed for JSON data - you can use it to slice and filter and map and transform structured data with the same ease that sed, awk, grep and friends let you play with text"
 1 year ago in Online Tools

ASCIIFlow

ASCII diagram drawing tool
 2 years ago in Cheatsheets

Emoji as Favicon

<link rel="icon" href="data:image/svg+xml,<svg xmlns="http://w3.org/2000/svg" viewBox="0 0 100 100"> <text y=".9em" font-size="90">💩</text> </svg>" />
 2 years ago in Cheatsheets

align horizontally and vertically

.center {
	display: grid;
	place-items: center;
}