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
| # ~/.inputrc | |
| # Filename completion regardless of case | |
| set show-all-if-ambiguous On | |
| set completion-ignore-case on | |
| # Search history backwards and forwards with Esc-p and up/down arrows | |
| "\ep": history-search-backward | |
| "\e[A": history-search-backward | |
| "\e[B": history-search-forward |
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
| # SUPER DARING APP TEMPLATE 1.0 | |
| # Originally By Peter Cooper | |
| # Modified by Jason Seifer | |
| # Link to local copy of edge rails | |
| inside('vendor') { run 'ln -s ~/Source/rails rails' } | |
| # Delete unnecessary files | |
| run "rm README" | |
| run "rm public/index.html" |
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 is my Rails Envy mp3 tagger script because I'm too lazy to do it every week manually. | |
| require 'rubygems' | |
| require 'id3lib' | |
| require 'optparse' | |
| require 'pp' | |
| app = Hash.new | |
| opts = OptionParser.new do |opts| |
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
| # Mephisto to Wordpress converter | |
| # | |
| # Create your database credentials in mephisto.yml and wordpress.yml | |
| # then run ruby converter.rb | |
| # | |
| require 'rubygems' | |
| require 'activerecord' | |
| require 'activesupport' | |
| require 'yaml' |
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
| Webrat.configure do |config| | |
| config.mode = :rails | |
| config.open_error_files = false | |
| end |
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
| # ever wanted capistrano talk to you? | |
| # this is used with ext/multistage and only works on a mac | |
| require 'capistrano_colors' | |
| before :deploy, :say_begin_deploy | |
| after :deploy, :say_end_deploy | |
| task :say_begin_deploy do | |
| `say deploying #{ARGV[0]}` | |
| end |
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
| On Feb 20, 2009, at 4:24 PM, "Olusegun A.A" <[email protected]> wrote: | |
| ** CRAIGSLIST ADVISORY --- AVOID SCAMS BY DEALING LOCALLY | |
| ** Avoid: wiring money, cross-border deals, work-at-home | |
| ** Beware: cashier checks, money orders, escrow, shipping | |
| ** More Info: http://www.craigslist.org/about/scams.html | |
| Hello, | |
| Do you still have this item available for sale at the moment? Get back asap. |
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
| gem install mislav-hanna |
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
| rdoc: --inline-source --line-numbers --format=html --template=hanna |
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
| sudo gem rdoc --all --no-ri |
OlderNewer