This file contains 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
xctool test -workspace MyProject.xcworkspace/ -scheme MyScheme -configuration UnitTest -sdk iphonesimulator -destination "platform=iOS Simulator,OS=8.1,name=iPhone 4s" -destination-timeout 1 |
This file contains 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
/* | |
MAG3110 Breakout Example Code | |
by: Aaron Weiss, aaron at sparkfun dot com | |
SparkFun Electronics 2011 | |
date: 9/6/11 | |
license: beerware, if you use this code and happen to meet me, you | |
can by me a beer | |
The code reads the raw 16-bit x, y, and z values and prints them |
This file contains 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
# from https://wiki.archlinux.org/index.php/Color_Bash_Prompt | |
# Reset | |
Color_Off='\e[0m' # Text Reset | |
# Regular Colors | |
Black='\e[0;30m' # Black | |
Red='\e[0;31m' # Red | |
Green='\e[0;32m' # Green | |
Yellow='\e[0;33m' # Yellow |
This file contains 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
export CLICOLOR=1 |
This file contains 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
YELLOW='1;33' | |
export GREP_OPTIONS='--color=auto' | |
export GREP_COLOR=$YELLOW |