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 | |
#ID='A16FF353-8441-459E-A50C-B071F53F51B7' # Xcode 6.2 | |
#ID='992275C1-432A-4CF7-B659-D84ED6D42D3F' # Xcode 6.3 | |
ID='7FDF5C7A-131F-4ABB-9EDC-8C5F8F0B8A90' #Xcode 6.4 | |
#ID='AABB7188-E14E-4433-AD3B-5CD791EAD9A3' # Xcode 7.0 | |
PLIST_BUDDY=/usr/libexec/PlistBuddy | |
function add_compatibility() { |
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
typedef NS_OPTIONS(NSUInteger, LSRBorderSide) { | |
LSRBorderSideNone = 1 << 0, | |
LSRBorderSideLeft = 1 << 1, | |
LSRBorderSideRight = 1 << 2, | |
LSRBorderSideBottom = 1 << 3, | |
LSRBorderSideTop = 1 << 4 | |
}; |
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
#################################### | |
# BASIC REQUIREMENTS | |
# http://graphite.wikidot.com/installation | |
# http://geek.michaelgrace.org/2011/09/how-to-install-graphite-on-ubuntu/ | |
# Last tested & updated 10/13/2011 | |
#################################### | |
# Incomplete list of packages used | |
sudo apt-get install --assume-yes \ | |
python-django-tagging python-ldap python-memcache python-txamqp \ |