test ical
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Richard Traube", | |
"label": "WordPress Developer", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "773-964-2941", | |
"url": "", | |
"summary": "In my 30 year library career I used mixed technology to help people become more productive, meet deadlines, and achieve objectives. I have never met a command line I didn't like. I am currently looking for work in IT, web development, data transformation, office administration, and higher education.", |
Keep your own offline codepen.
This shell script, a riff on https://github.com/umpox/TinyEditor , lets you prefill TinyEditor's text areas with files from a directory.
html="$(cat $1/html.html)"
css="$(cat $1/css.css)"
js="$(cat $1/js.js)"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sluggify One Liner | |
``` | |
echo "Abcd ; 200-2" | awk '{gsub(/[^[:alnum:]]/,"-");gsub(/-+/,"-");print}'| tr [:upper:] [:lower:] | |
``` |
OlderNewer