View Finder File Compression AppleScript
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
-- 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." |
View checklist_site_launch.txt
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
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 --------------------------------------------------------------- |
View install-git-completion.sh
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
#!/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" |
View remove_CLI_tools.sh
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
#!/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 |
View sdFATLinks.js
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
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", |
View .gitignore.txt
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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
View MIT-LICENSE.txt
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
Copyright (c) 2011 ZURB, http://www.zurb.com/ |
View frehmwerk-blog-filesharing-fontawesome.js
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
/* Pages Functions | |
================================================== */ | |
var div_blog_entry = jq.add('div.blog-entry'), | |
div_plugin_sidebar = jq.add('div#plugin_sidebar'), | |
group_plugin_sidebar = div_plugin_sidebar.find('div#blog-categories, div#blog-archives, ul.blog-tag-cloud, div#blog-rss-feeds'), | |
div_filesharing_item = jq.add('div.filesharing-item'); | |
var pages_fn = (function () { | |
// when blog page (main content) |
View frehwerk-blog-fontawesome-styles.css
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
div.narrow div#plugin_sidebar div#blog-categories div.before, | |
div.narrow div#plugin_sidebar div#blog-archives div.before, | |
div.narrow div#plugin_sidebar ul.blog-tag-cloud div.before, | |
div.narrow div#plugin_sidebar div#blog-rss-feeds div.before { | |
background-color:%colour_narrow_background - 0.01%; | |
border-color:%colour_narrow_background - 0.1%; | |
color:%colour_narrow_text+0.2% | |
} |
OlderNewer