/* tslint:disable-next-line */ | |
let stringifyObj = function (obj: object): any {}; | |
if (!DEBUG) { | |
stringifyObj = (obj: object): string => { | |
const placeholder = "____PLACEHOLDER____"; | |
const fns: Function[] = []; | |
let json = JSON.stringify( | |
obj, | |
function (_, value: any): any { |
function timeoutify(fn,delay) { | |
var intv = setTimeout( function(){ | |
intv = null; | |
fn( new Error( "Timeout!" ) ); | |
}, delay ) | |
; | |
return function() { | |
// timeout hasn't happened yet? | |
if (intv) { |
man -P 'less -p ^READLINE' bash |
groff -man -T html $(man -w man) > $TMPDIR/man.html | open -f -a 'Google Chrome' $TMPDIR/man.html |
# From http://vim.wikia.com/wiki/Using_vim_as_a_man-page_viewer_under_Unix | |
export MANPAGER='col -bx | vim -c ":set ft=man nonu nolist" -R -' |
There's no need to fully parse the xml of entire clearleap api responses to JSON. And there doesn't seem to be a compelling reason to use xml2json, unless api responses need to be rendered on the back end in an isomorphic app. Usually, we just want to pluck certain values out, massage them a bit, and add them as properties of an object/structure better suited to presentation.
At its simplest, this can be done with a function that takes an instance of Node
, performs DOM querying logic to retrieve and aggregate values from elements and attributes, and then returns a single value.
This gist shows a way to reuse and compose pure functions of this variety to converge parsing operations for invidual values into a final object. Because only pure functions are involved, presumably parsing could be parallelized with web workers (https://adambom.github.io/parallel.js/). Each pure function involved is also automatically memoized and passed wi
var pubsub = {}; | |
(function (q) { | |
var topics = {}, | |
subUid = -1; | |
q.subscribe = function (topic, func) { | |
if (!topics[topic]) { | |
topics[topic] = []; | |
} | |
var token = (++subUid).toString(); | |
topics[topic].push({ |
git_is_dirty() { | |
if [[ $(git status --porcelain 2> /dev/null | tail -n1) != "" ]] | |
then | |
echo 'ERROR: branch dirty' | |
exit 1 | |
fi | |
} |
python -m SimpleHTTPServer |