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:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| #filename specified | |
| if [ $# != 3 ]; then | |
| echo "usage: $0 distroUrl maven_repo version" | |
| exit | |
| else | |
| echo "Processing: $1" | |
| fi |
| 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) |