Skip to content

Instantly share code, notes, and snippets.

View andyburke's full-sized avatar

Andy Burke andyburke

  • Otto Financial
  • Los Angeles, CA
  • X @andybrk
View GitHub Profile
@andyburke
andyburke / flightsim.bat
Created February 15, 2023 01:29
this is the batch file I use to spin up my flightsim setup. near the top is some explanation. you should be able to change the list of desired programs fairly straightforwardly.
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
@andyburke
andyburke / parameterizer_concept.js
Last active May 21, 2016 02:05
parameterizer concept
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,

Keybase proof

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:

@andyburke
andyburke / auto_exclude.sh
Created September 17, 2015 20:24
Auto exclude folders from dropbox
#!/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
@andyburke
andyburke / gist:8cb602f75e9bb9bcab4e
Created December 30, 2014 21:36
selecting with data attributes
<div class=”item-list” data-item-list></div>
$( ‘[data-item-list]’ ).html( itemsHTML );
@andyburke
andyburke / gist:d12b5c1268e48474492e
Created December 30, 2014 21:35
old selector example
<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>
@andyburke
andyburke / elasticsearch
Created October 17, 2014 12:38
OSX Yosemite 10.10 elasticsearch service wrapper fixed for 64 bits
#! /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 ->