This file has been truncated, but you can view the full file.
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
| xcodebuild | |
| === BUILDING AGGREGATE TARGET ffmpeg Static Libraries OF PROJECT Perian WITH THE DEFAULT CONFIGURATION (Deployment+Debug) === | |
| Checking Dependencies... | |
| PhaseScriptExecution "/Users/patrick/Coding/XCode3.1/Perian/build/Perian.build/Deployment+Debug/ffmpeg Static Libraries.build/Script-11BA39A70A61E450008AF206.sh" | |
| cd /Users/patrick/Coding/XCode3.1/Perian | |
| setenv ACTION build | |
| setenv ALTERNATE_GROUP patrick | |
| setenv ALTERNATE_MODE u+w,go-w,a+rX |
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
| tell application "Path Finder" | |
| set selection_list to selection | |
| repeat with one_item in selection_list | |
| -- Do some voodoo to comply with Zettt's original script | |
| set a_path to POSIX path of one_item | |
| tell me to set a_path to POSIX file a_path | |
| tell application "Finder" to set a_file to file a_path | |
| -- Using the rest of Zettt's script here | |
| -- http://www.zettt.de/2009/07/mac-dateien-automatisch-umbenennen/ |
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
| [alias] | |
| co = checkout | |
| st = status | |
| ci = commit | |
| [apply] | |
| whitespace = fix | |
| [color] | |
| status = auto | |
| diff = auto | |
| branch = auto |
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
| #!/usr/bin/ruby | |
| # Dropzone Destination Info | |
| # Name: Install Application with Backup | |
| # Description: Drop an application disk image and it will be mounted, the old .app (if already existing) backed up, installed and ejected. The application will then be launched. | |
| # Handles: NSFilenamesPboardType | |
| # Creator: Patrick Mosby | |
| # URL: http://www.schreiblogade.de | |
| # IconURL: http://aptonic.com/destinations/icons/applications.png |
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
| set completion-ignore-case On | |
| set show-all-if-ambiguous on | |
| "\e[A": history-search-backward | |
| "\e[B": history-search-forward | |
| # Cycle through completions by pressing tab | |
| "\t": menu-complete |
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
| export PATH=/Users/patrick/Applications:/usr/local/git/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/opt/local/bin:/opt/local/sbin:/usr/local/mysql/bin:./cake/console:/Applications/xampp/xamppfiles/htdocs/cake_1.2_rc2/cake/console:$PATH | |
| export TERM=xterm-color | |
| export CLICOLOR=true | |
| export LSCOLORS=exfxcxdxbxegedabagacad | |
| export LC_CTYPE=en_US.UTF-8 | |
| export EDITOR="mate -w" | |
| export CVSEDITOR="mate -w" | |
| export SVN_EDITOR="mate -w" | |
| export PKG_CONFIG_PATH="/Library/Frameworks/Mono.framework/Versions/1.9.1/lib/pkgconfig:/opt/local/lib/pkgconfig" |
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
| (require 'cl) | |
| (defun twm-make-full-screen () | |
| (when (and (featurep 'aquamacs) (not (frame-parameter nil 'fullscreen))) | |
| (aquamacs-toggle-full-frame))) | |
| (defun twm-focus-window () | |
| "assumes the largest window is the focus window" | |
| (get-largest-window)) |
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
| #!/usr/bin/env python | |
| """ | |
| This small script takes the URL to one of your Pownce Export XML-files | |
| and downloads it including (as far as I can tell) all your files into a | |
| folder, which you can specify with the -o option:: | |
| $ python pownce-files.py <url_to_export> | |
| Requirements: Python >= 2.5, < 3.0 | |
| """ |
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
| # | |
| # bash completion support for core Git. | |
| # | |
| # Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
| # Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). | |
| # Distributed under the GNU General Public License, version 2.0. | |
| # | |
| # The contained completion routines provide support for completing: | |
| # | |
| # *) local and remote branch names |
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
| RED="\[\033[0;31m\]" | |
| YELLOW="\[\033[0;33m\]" | |
| GREEN="\[\033[0;32m\]" | |
| BLUE="\[\033[0;34m\]" | |
| LIGHT_RED="\[\033[1;31m\]" | |
| LIGHT_GREEN="\[\033[1;32m\]" | |
| WHITE="\[\033[1;37m\]" | |
| LIGHT_GRAY="\[\033[0;37m\]" | |
| COLOR_NONE="\[\e[0m\]" | |