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
| delete-branch() | |
| { | |
| for i in `echo $*`; do | |
| echo "Deleting local and remote branch $i..." | |
| git push origin :$i | |
| git branch -D $i | |
| done | |
| } |
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
| This file contains any messages produced by compilers while | |
| running configure, to aid debugging if configure makes a mistake. | |
| It was created by mosh configure 1.1.3a, which was | |
| generated by GNU Autoconf 2.68. Invocation command line was | |
| $ ./configure | |
| ## --------- ## | |
| ## Platform. ## |
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
| essentials-push() | |
| { | |
| if [ $# -lt 1 ]; then | |
| echo "Usage: $0 '<pull request heading>'" | |
| return | |
| fi | |
| open `hub pull-request "$1" -b coverall:essentials` | |
| } |
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
| @font-face { | |
| font-family: 'FontAwesome'; | |
| src: url('<%= asset_path('fontawesome-webfont.eot') %>'); | |
| src: url('<%= asset_path('fontawesome-webfont.eot') %>?#iefix') format('embedded-opentype'), | |
| url('<%= asset_path('fontawesome-webfont.woff') %>') format('woff'), | |
| url('<%= asset_path('fontawesome-webfont.ttf') %>') format('truetype'), | |
| url('<%= asset_path('fontawesome-webfont.svgz') %>#FontAwesomeRegular') format('svg'), | |
| url('<%= asset_path('fontawesome-webfont.svg') %>#FontAwesomeRegular') format('svg'); | |
| font-weight: normal; | |
| font-style: normal; |
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
| switch ($province) | |
| { | |
| case 'AB': | |
| case 'MB': | |
| case 'NT': | |
| case 'NU': | |
| case 'PE': | |
| case 'QC': | |
| case 'SK': | |
| case 'YT': |
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
| # The following lines were added by compinstall | |
| zstyle ':completion:*' completer _complete _ignored _approximate | |
| zstyle ':completion:*' list-colors '' | |
| zstyle ':completion:*' menu select=long | |
| zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s | |
| zstyle :compinstall filename '/Users/patrick/.zshrc' | |
| autoload -Uz compinit | |
| compinit |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <!-- | |
| BBEdit Language Module for CoffeeScript | |
| Put this file in | |
| ~/Library/Application Support/BBEdit/Language Modules | |
| or equivalent. | |
| Based off of the examples shipped in the BBEdit SDK. |
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 'yaml' | |
| videos = [ | |
| { | |
| :title => "test 1", | |
| :url => "http://test1/" | |
| }, | |
| { |
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
| diff --git a/Makefile.in b/Makefile.in | |
| index db683ac..14ba5db 100644 | |
| --- a/Makefile.in | |
| +++ b/Makefile.in | |
| @@ -79,7 +79,7 @@ install_bin: .version screen | |
| -if [ -f $(DESTDIR)$(bindir)/screen ] && [ ! -f $(DESTDIR)$(bindir)/screen.old ]; then mv $(DESTDIR)$(bindir)/screen $(DESTDIR)$(bindir)/screen.old; fi | |
| rm -f $(DESTDIR)$(bindir)/screen | |
| (cd $(DESTDIR)$(bindir) && ln -sf $(SCREEN) screen) | |
| - cp $(srcdir)/utf8encodings/?? $(DESTDIR)$(SCREENENCODINGS) | |
| + cp $(srcdir)/utf8encodings/?? $(DSTROOT)$(SCREENENCODINGS) |