Skip to content

Instantly share code, notes, and snippets.

#!/bin/sh
GLOBAL_OUTDIR="`pwd`/dependencies"
LOCAL_OUTDIR="./outdir"
LEPTON_LIB="`pwd`/leptonica-1.71"
TESSERACT_LIB="`pwd`/tesseract-3.03"
IOS_BASE_SDK="7.0"
IOS_DEPLOY_TGT="7.0"
@kevincon
kevincon / sleeptime.sh
Created December 5, 2012 05:13
CS144 Lab 5 Sleeptime script
#!/bin/sh
#Change this to be your SUID
SUID=YOUR_SUID
#Change this to be the path to your ec2_script/ folder on myth
EC2_SCRIPT=~/ec2_script
#kinit only works if you've followed instructions at
#http://cs.stanford.edu/people/mbostock/kerberos.html
@kevincon
kevincon / worktime.sh
Created December 5, 2012 05:12
CS144 Lab 5 Worktime script
#!/bin/sh
#Change this to be your SUID
SUID=YOUR_SUID
#Change this to be the path to your ec2_script/ folder on myth
EC2_SCRIPT=~/ec2_script
#kinit only works if you've followed instructions at
#http://cs.stanford.edu/people/mbostock/kerberos.html
@kevincon
kevincon / RMSTask.hs
Created June 26, 2012 20:33
Determining Schedulability of Tasks for a Rate-Monotonic Scheduling System
{-# OPTIONS_GHC -Wall #-}
module RMSTask
(
RMSTask,
sufficientSched,
necessarySched
)
where