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
test: | |
adapter: jdbcmysql | |
username: root | |
password: | |
host: localhost | |
encoding: utf8 | |
database: myapp_test |
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
[~] zsh | |
[~] source ~/.rvm/scripts/rvm | |
/Users/jasonmorrison/.rvm/scripts/utility:10: condition expected: =~ | |
/Users/jasonmorrison/.rvm/scripts/cli:32: condition expected: =~ | |
/Users/jasonmorrison/.rvm/scripts/gems:10: condition expected: =~ |
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
[~/dev] sudo gem install rvm -- INSERT -- | |
Successfully installed rvm-0.0.60 | |
1 gem installed | |
Installing ri documentation for rvm-0.0.60... | |
Unrecognized directive 'major' in lib/VERSION.yml | |
Unrecognized directive 'minor' in lib/VERSION.yml | |
Unrecognized directive 'patch' in lib/VERSION.yml | |
Installing RDoc documentation for rvm-0.0.60... | |
Unrecognized directive 'major' in lib/VERSION.yml | |
Unrecognized directive 'minor' in lib/VERSION.yml |
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
jason-morrisons-macbook% pwd | |
/Users/jasonmorrison | |
jason-morrisons-macbook% cat .zlogin | |
cat: .zlogin: No such file or directory | |
jason-morrisons-macbook% cat .zshrc | |
if [ -f ~/.rvm/scripts/rvm ] ; then source ~/.rvm/scripts/rvm ; fi | |
jason-morrisons-macbook% ls .z* | |
.zcompdump .zsh_history .zshrc-backup-for-rvm | |
.zlogin-bak-for-rvm .zshrc .zshrc-bak | |
jason-morrisons-macbook% zsh |
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
# pasted for a comment on http://bkocik.net/2009/05/07/testing-twitter-oauth-with-cucumber-webrat-and-fakeweb/ | |
Given /^I am signed in as "@(.*)"$/ do |twitter_username| | |
@twitter_username = twitter_username # used inside #fixture_file by #stub_:method - see http://gist.github.com/125281 | |
stub_post('https://twitter.com/oauth/request_token', 'access_token') | |
stub_post('https://twitter.com/oauth/access_token', 'access_token') | |
stub_get('https://twitter.com/account/verify_credentials.json', 'verify_credentials.json') | |
visit path_to('the login page') | |
visit path_to('the oauth callback page') | |
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
[/tmp] git clone git://github.com/jasonm/vlad.git | |
Initialized empty Git repository in /private/tmp/vlad/.git/ | |
remote: Counting objects: 43, done. | |
remote: Compressing objects: 100% (36/36), done. | |
remote: Total 43 (delta 9), reused 35 (delta 6) | |
Receiving objects: 100% (43/43), 39.79 KiB, done. | |
Resolving deltas: 100% (9/9), done. | |
[/tmp] cd vlad | |
[master][/tmp/vlad] rake gem | |
(in /private/tmp/vlad) |
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
[~] curl http://projectsmartlab.org/ | |
<html> | |
<head> | |
<META HTTP-EQUIV="Pragma" CONTENT="no_cache"> | |
<title>Site Temporarily Unavailable</title> | |
</head> | |
<h1>Site Temporarily Unavailable</h1> | |
We apologize for the inconvenience. Please contact the webmaster/ |
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
javascript:void($('body').toggleClass('showgrid')); |
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
130 CC-BY icons for iPhone applications | |
http://glyphish.com/ | |
teehan+lax's iPhone GUI PSD 3.0 | |
http://www.teehanlax.com/blog/?p=1628 |
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
# Based on http://gist.github.com/108144 by Jon Hoffman | |
# and adapted for use with mbleigh-twitter-auth | |
# via http://groups.google.com/group/twitter-development-talk/browse_thread/thread/2985c36158742455/6a179766f32f4d50?pli=1 | |
# Hella untested. That doesn't mean it's untried :) | |
# | |
# Usage: | |
# | |
# gem 'twitter-auth', :lib => 'twitter_auth' | |
# | |
# oauth = TwitterOAuthViaBasic.new('beerfireapp', 'fisherman1') |