I hereby claim:
- I am juniorbird on github.
- I am kaizendad (https://keybase.io/kaizendad) on keybase.
- I have a public key ASDADvJ-ismCZ4K8ZJeHQhT1OBHQGk0Gf5nbVRy4SQFnAwo
To claim this, I am signing this object:
<iframe src="https://juniorbird.github.io/quotes-for-taco/" frameborder="0" width="100%"></iframe> |
let storiesList = prompt('Paste your comma-separated story list here'); | |
let target = document.getElementById('en-note'); | |
let storiesArr = storiesList.split(',').sort(); | |
let nodes = storiesArr.map(story => makeEvernoteHeading(story)); | |
nodes.forEach(node => { | |
target.appendChild(node); | |
target.appendChild(makeEvernoteSpacer()); |
setw -g mode-keys vi | |
# split panes using | and - | |
bind \ split-window -h -c "#{pane_current_path}" | |
bind - split-window -v | |
unbind '"' | |
unbind % | |
# require I name windows and sessions | |
bind-key S command-prompt -p "Name of new session: " "new-session -s '%%'" |
function getFirstRepeatingCharacter(someString) { | |
let len = someString.length; | |
let cache = {}; | |
for (let i = 0; i < len; i++) { | |
let currentLetter = someString.charAt(i); | |
if (cache[currentLetter]) return someString.charAt(i); | |
cache[currentLetter] = true; | |
} | |
let utils = {}; | |
utils.memoize = function(fn) { | |
let cache = {}; | |
return function(...args) { | |
let key = [...args].join(','); | |
if (cache[key]) return cache[key]; | |
I hereby claim:
To claim this, I am signing this object:
[ | |
{ | |
"type": "escape", | |
"width": 64, | |
"align": "left" | |
}, | |
{ | |
"type": "illuminationDown", | |
"width": 40, | |
"align": "left", |