This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# OPTIONS_GHC -Wall #-} | |
module RMSTask | |
( | |
RMSTask, | |
sufficientSched, | |
necessarySched | |
) | |
where |