I hereby claim:
- I am kalisjoshua on github.
- I am kalisjoshua (https://keybase.io/kalisjoshua) on keybase.
- I have a public key ASB0fmsuRsLx_spNBDE-j91MEdsUorgmX0BtdT20cWEybgo
To claim this, I am signing this object:
| const curry = (fn, ...args) => args.length < fn.length | |
| ? (...add) => curry(fn, ...args.concat(add)) | |
| : fn(...args) | 
| const compose = (...fns) => | |
| fns.reduceRight((g, f) => (...args) => f(g(...args))) | 
| const debounce = (fn, delay) => { | |
| let pending | |
| return function postponed (...args) { | |
| pending && clearTimeout(pending) | |
| pending = setTimeout(fn.bind(this, ...args), delay || 200) | |
| } | |
| } | 
I hereby claim:
To claim this, I am signing this object:
| const fs = require('fs') | |
| const file = './audit.log' | |
| const start = (q) => /^┌[─]+┬[─]+┐$/.test(q) | |
| const split = (q) => /^├[─]+┼[─]+┤$/.test(q) | |
| const close = (q) => /^└[─]+┴[─]+┘$/.test(q) | |
| const audit = fs.readFileSync(file, 'utf-8') | |
| .split(/\n/g) | 
This will be an adventure in navigating a Hypermedia API. This API will illustrate API standards that should be followed in all APIs.
GET /| package main | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| "os" | |
| "strconv" | |
| "time" | |
| ) | 
| (function () { | |
| console.clear() | |
| let body = window.getSelection().toString() | |
| const ignored = "able about across and for company more public team the that their they where with work world" | |
| .split(" ") | |
| if (!body) { | |
| alert("You forgot to select the text to search.") | |
| } else { | 
| class TestResult { | |
| value: any | |
| constructor (value: any) { | |
| this.value = value | |
| } | |
| } | |
| function assert (a: any, b?: any) { | |
| throw new TestResult(b ? a === b : a) | 
| /** | |
| * A helper function for adding content to the DOM. Using pretty standard DOM | |
| * functionality domaddic enables the creation of modules that are capable of | |
| * re-rendering themselves when they decide it to be necessary. Modules enable | |
| * information hiding through scope and function calls so that everything is | |
| * out of the global scope. | |
| * | |
| * Is this at all a good idea? Will it potentially be found to be a horrible | |
| * memory hog/leak? Who can tell. Let's see if this bird has wings! | |
| * |