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/bash | |
### SVN Changelist-Maker | |
### Justin Carr : 8-31-2017 | |
### I miss git's `add -U` functionality ... and git in general. | |
breakLine=0; | |
function printUsage(){ |
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/bash | |
### SVN CHECKOUT HAMMER | |
### Justin Carr : 11/8/2016 | |
### A half-baked solution to SVN server timeouts. | |
## Globals | |
hammer=""; | |
url=""; | |
cleanTarget=""; |
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
module SdgStringSolver where | |
import Data.List | |
import Data.Char | |
help = "Run findTargetSubString against a test case such as test1 or test2." | |
target = "sdg" | |
test1 = ["SDGxx", "xxSDG", "xSDGx"] -- All results are true |
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
### Ubuntu 14.04, 64-bit | |
### Sencha Touch Environment Setup | |
# Update Java environment and tools | |
sudo apt-get update | |
sudo apt-get install openjdk-7-jdk | |
sudo apt-get install openjdk-7-jre | |
# Double-check version information | |
java -version |