Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am tysonmalchow on github.
  • I am tysonmalchow (https://keybase.io/tysonmalchow) on keybase.
  • I have a public key ASDxPr5pMqCZi1H2r8hLp-ODd1o5VEXS9guCfSEJ0BwCDAo

To claim this, I am signing this object:

@tysonmalchow
tysonmalchow / install_jogl_maven.sh
Created January 17, 2012 04:09
install jogamp's JOGL and GLUEGEN jars to a local maven repository
#!/bin/bash
#filename specified
if [ $# != 3 ]; then
echo "usage: $0 distroUrl maven_repo version"
exit
else
echo "Processing: $1"
fi
@tysonmalchow
tysonmalchow / list delta.py
Created November 23, 2010 04:52
find the delta between 2 lists in python
import time
import string
import random
def print_timing(func):
def wrapper(*arg):
t1 = time.time()
res = func(*arg)
t2 = time.time()
print '%s took %0.3f ms' % (func.func_name, (t2-t1)*1000.0)