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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
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
jQuery(document).ready(function($){ | |
var getNav; | |
if (sdNav.type == 0 || sdNav.type == 1) getNav = sdNav.tb1; | |
else if (sdNav.type == 2) getNav = sdNav.tb2; | |
else if (sdNav.type == 3) getNav = sdNav.tb3; | |
var sdFATLinks = (function(){ | |
var link = [ | |
"Home", | |
"About us", |
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 | |
RECEIPT_FILE=/var/db/receipts/com.apple.pkg.DeveloperToolsCLI.bom | |
RECEIPT_PLIST=/var/db/receipts/com.apple.pkg.DeveloperToolsCLI.plist | |
if [ ! -f "$RECEIPT_FILE" ] | |
then | |
echo "Command Line Tools not installed." | |
exit 1 | |
fi |
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 | |
# get Xcode git version | |
GIT_VERSION=`xcrun git --version | awk '{print $3}'` | |
URL="https://raw.github.com/git/git/v$GIT_VERSION/contrib/completion/git-completion.bash" | |
PROFILE="$HOME/.bash_profile" |
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
Design Phase ================================================================= | |
Client Management ------------------------------------------------------------ | |
[ ] Have we received a design brief from the client? | |
[ ] Have we received sample content from the client? | |
[ ] Have we quoted the client? | |
[ ] Has the client signed off on the quote? | |
Infrastructure --------------------------------------------------------------- |
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
-- source: http://hints.macworld.com/article.php?story=2011030403522197 | |
-- from comment Authored by: regulus on Mar 04, '11 09:13:11AM | |
try | |
tell application "Finder" | |
set theSelection to the selection | |
set selectionCount to count of theSelection | |
if selectionCount is greater than 1 then | |
error "Please select only one Finder item before running this script." | |
else if selectionCount is less than 1 then | |
error "Please select one Finder item before running this script." |
NewerOlder