I hereby claim:
- I am andyburke on github.
- I am andyburke (https://keybase.io/andyburke) on keybase.
- I have a public key whose fingerprint is 6362 988B 9F0F D59E 4937 BA38 839B 028C D976 364D
To claim this, I am signing this object:
REM enabledelayedexpansion allows variable reuse in the loops below | |
setlocal enabledelayedexpansion | |
@echo off | |
REM loop over a list of programs defined in strings as: | |
REM | |
REM <program path>[|<cwd>[|<override command>]] | |
REM | |
REM program path - the path to program you want to run |
const boolean = require( 'boolean' ); | |
... | |
// look at object-transmute as a helper for implementing this | |
parameterizer( [ { | |
inputs: [ 'limit', 'max' ], | |
output: 'limit', | |
default: 10, | |
min: 1, | |
max: 100, |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# see: http://stackoverflow.com/questions/3685970/check-if-an-array-contains-a-value | |
elementIn () { | |
local e | |
for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done | |
return 1 | |
} | |
if [ ! -f /data/dropbox/folder_list ] |
#!/bin/bash | |
echo "Updating server: ${HOSTNAME}" | |
echo "" | |
# pull latest image | |
docker pull float/auth:${CODE_BRANCH} | |
# get image id | |
NEW_IMAGE_ID=$(docker images | grep -E "^float\/auth.*?${CODE_BRANCH}" | awk -e '{print $3}') |
Verifying that +andyburke is my blockchain ID. https://onename.com/andyburke |
<div class=”item-list” data-item-list></div> | |
… | |
$( ‘[data-item-list]’ ).html( itemsHTML ); |
<div class=”item-list”></div> | |
… | |
$( '.item-list' ).html( itemsHTML ); |
<script type="text/javascript"> | |
emit.on( ‘foo’, function( event ) { | |
console.log( ‘got a foo event from: ’ + event.emitTarget ); | |
} ); | |
</script> | |
… | |
<a data-emit="foo">emit foo</a> |
#! /bin/sh | |
# RESOLVE and SET $ES_HOME | |
SCRIPT="$0" | |
# SCRIPT may be an arbitrarily deep series of symlinks. Loop until we have the concrete path. | |
while [ -h "$SCRIPT" ] ; do | |
ls=`ls -ld "$SCRIPT"` | |
# Drop everything prior to -> |