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
cat > /etc/inputrc << "EOF" | |
# Begin /etc/inputrc | |
# Modified by Chris Lynn <[email protected]> | |
# Allow the command prompt to wrap to the next line | |
set horizontal-scroll-mode Off | |
# Enable 8bit input | |
set meta-flag On | |
set input-meta On |
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 | |
inputfile=$1 | |
outfile=$2 | |
temp1=$$.wav | |
exitcode=0 | |
if [ ${inputfile: -4} == ".mp3" ] | |
then | |
lame -S --decode $inputfile $temp1 | |
else |
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 | |
active_interface=`netstat -rn | grep 'default' | awk '{print $6}'` | |
ifconfig | grep -A 1 $active_interface | grep 'inet ' | awk '{printf $2}' |
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 | |
curl -s http://automation.whatismyip.com/n09230945.asp |
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
==> Downloading http://ftp9.us.postgresql.org/pub/mirrors/postgresql/source/v9.0 | |
File already downloaded in /Users/warthurton/Library/Caches/Homebrew | |
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/fileutils.rb:243: command not found: uuid-config --cflags | |
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/fileutils.rb:243: command not found: uuid-config --ldflags | |
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/fileutils.rb:243: command not found: uuid-config --libs | |
==> ./configure --disable-debug --prefix=/usr/local/Cellar/postgresql/9.0.4 --en | |
checking build system type... x86_64-apple-darwin11.1.0 | |
checking host system type... x86_64-apple-darwin11.1.0 | |
checking which template to use... darwin | |
checking whether to build with 64-bit integer date/time support... yes |
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
(function() { | |
// Change `silent` to true to invoke the promptless, self-closing | |
// version of the bookmarklet. | |
var silent = false; | |
var url = location.href; | |
var title = document.title; | |
// Look for a single hAtom entry on the page, and iff one is found, extract | |
// the entry-title in place of the document title: |
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
# Require any additional compass plugins here. | |
project_type = :stand_alone | |
# Publishing paths | |
http_path = "/" | |
http_images_path = "http://cdn.warthurton.com/images" | |
http_fonts_path = "http://cdn.warthurton.com/fonts" | |
css_dir = "http://cdn.warthurton.com/public/stylesheets" | |
# Local development paths |
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
# Make it use C-a, similar to screen.. | |
unbind C-b | |
unbind l | |
set -g prefix C-a | |
bind-key C-a last-window | |
bind-key a send-prefix | |
set -g base-index 1 | |
# Reload key |
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
public boolean isBooleanFalse(boolean value) { | |
boolean response = false; | |
if (value == true) { | |
response = false; | |
} else { | |
response = true; | |
} | |
return response; | |
} |
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
(?:^|,)(\\\"(?:[^\\\"]+|\\\"\\\")*\\\"|[^,]*) |
OlderNewer