Skip to content

Instantly share code, notes, and snippets.

View seyDoggy's full-sized avatar

Adam Merrifield seyDoggy

View GitHub Profile
@seyDoggy
seyDoggy / .gitignore.txt
Created August 10, 2012 14:47
.gitignore
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@seyDoggy
seyDoggy / sdFATLinks.js
Created July 28, 2012 15:00
jQuery for adding Font Awesome icons to toolbar 1
@seyDoggy
seyDoggy / remove_CLI_tools.sh
Created July 26, 2012 16:19
This is a tool to remove all the copies of CommandLine tools that it installs.
#!/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
@seyDoggy
seyDoggy / install-git-completion.sh
Created July 26, 2012 15:41 — forked from johngibb/install-git-completion.sh
Mac OS X - Install Git Completion
#!/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"
@seyDoggy
seyDoggy / checklist_site_launch.txt
Created September 23, 2011 18:40 — forked from tonious/checklist_site_launch.txt
New Site Checklist
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 ---------------------------------------------------------------
@seyDoggy
seyDoggy / Finder File Compression AppleScript
Created August 17, 2011 15:40
Drives me nuts that Finder doesn't have a hotkey for file compression. You can use this script triggered with Quicksilver/FastScripts/LaunchBar/Butler/Alfred...
-- 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."