I hereby claim:
- I am remyrd on github.
- I am remyrd (https://keybase.io/remyrd) on keybase.
- I have a public key ASCFXoTVc1Jev1PYmHbSqJnD9bieN3-34fqdw0dThZitcgo
To claim this, I am signing this object:
{ | |
"basics": { | |
"name": "Remy Rojas", | |
"label": "Software Developer @ JUXT", | |
"image": "https://avatars1.githubusercontent.com/u/8048511?v=4", | |
"email": "[email protected]", | |
"url": "https://remy.rojas.cz", | |
"summary": "Professional Clojure Developer.\nBriefly Semantic Web / Linked Data researcher.\nEspresso processing automata.", | |
"profiles": [ | |
{ |
I hereby claim:
To claim this, I am signing this object:
(require '[ajax.protocols :as pr]) | |
;; effecting with re-frame-http-fx | |
{:http-xhrio {,,, | |
:response-format {:content-type "image/png" | |
:description "PNG image" | |
:read pr/-body | |
:type :arraybuffer} |
##### TODO list -- add this to your ~/.{bash|zsh|fish}rc or source it | |
# Your TODOs in your terminal. | |
# Incomplete TODOs carry over to the next day. | |
# A TUI (default fzf) helps with completion | |
# USAGE | |
# $ todo break this by typing a non alphanumeric such as single quote | |
# $ complete-todo | |
# $ check-today-todos |
##### TODO list | |
TODOPATH=$HOME/todo | |
TODO_COMPLETE_CMD=fzf | |
TODAY="$(date -I)" | |
function colorize(){ | |
sed 's/TODO/\\033\[30;41mTODO\\033\[0m/' | sed 's/DONE/\\033\[30;42mDONE\\033\[0m/' | |
} |