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
source :rubygems | |
gem 'rails', '3.0.3' | |
gem 'mongo', '1.6.0' | |
gem 'bson_ext', '1.6.0' | |
gem 'mongoid', '~> 2.2.4' | |
gem 'devise', '~> 1.5.3' | |
gem 'formtastic', '~> 1.2.4' |
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
[~/Documents/Dev/tastyrepo]$ bundle exec rails s *[master] | |
=> Booting WEBrick | |
=> Rails 3.2.1 application starting in development on http://0.0.0.0:3000 | |
=> Call with -d to detach | |
=> Ctrl-C to shutdown server | |
/Users/matt/Documents/Dev/tastyrepo/config/environments/development.rb:38: warning: already initialized constant VERIFY_PEER | |
[2012-02-23 15:14:11] INFO WEBrick 1.3.1 | |
[2012-02-23 15:14:11] INFO ruby 1.9.2 (2011-07-09) [x86_64-darwin11.2.0] | |
[2012-02-23 15:14:11] INFO WEBrick::HTTPServer#start: pid=3387 port=3000 |
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
["000000", "111111", "11111111", "112233", "121212", "123123", "123456", "1234567", "12345678", "123456789", "131313", "232323", "654321", "666666", "696969", "777777", "7777777", "8675309", "987654", "aaaaaa", "abc123", "abc123", "abcdef", "abgrtyu", "access", "access14", "action", "albert", "alberto", "alejandra", "alejandro", "alexis", "amanda", "amateur", "america", "andrea", "andrew", "angela", "angels", "animal", "anthony", "apollo", "apples", "arsenal", "arthur", "asdfgh", "asdfgh", "ashley", "asshole", "august", "austin", "badboy", "bailey", "banana", "barney", "baseball", "batman", "beatriz", "beaver", "beavis", "bigcock", "bigdaddy", "bigdick", "bigdog", "bigtits", "birdie", "bitches", "biteme", "blazer", "blonde", "blondes", "blowjob", "blowme", "bond007", "bonita", "bonnie", "booboo", "booger", "boomer", "boston", "brandon", "brandy", "braves", "brazil", "bronco", "broncos", "bulldog", "buster", "butter", "butthead", "calvin", "camaro", "cameron", "canada", "captain", "carlos", "carter", "casper", |
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
<html> | |
<head> | |
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.4.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function() { | |
var ad = $("#ad-1"); | |
var pos = ad.offset(); | |
var adWrapID = ad.next().attr('id'); | |
var adWrap = $('#'+adWrapID); | |
adWrap.offset(pos); |
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
<!-- include jQuery and jCheck and default styles --> | |
<link rel="stylesheet" type="text/css" href="/stylesheets/jcheck.css" /> | |
<script type="text/javascript" src="/javascripts/jquery-1.4.2.min.js"></script> | |
<script type="text/javascript" src="/javascripts/jcheck-0.7.1.min.js"></script> | |
<!-- Define Form Validation --> | |
<script type="text/javascript"> | |
var f = $("#user_new").jcheck({field_prefix: "user"}); | |
f.validates_format_of("email", {"with": "email"}); | |
f.validates_confirmation_of("password"); |
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
From 6ce245386ef213c903fcb5fb9b1ba7a6d0c7ee6d Mon Sep 17 00:00:00 2001 | |
From: Matthew Ford <[email protected]> | |
Date: Sun, 1 Aug 2010 18:03:20 -0700 | |
Subject: [PATCH] update zinter and zunion to zinterstore and zunionstore | |
--- | |
lib/redis-client.js | 4 ++-- | |
test/test.js | 4 ++-- | |
2 files changed, 4 insertions(+), 4 deletions(-) |
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
Moved to http://github.com/matthewford/agile_debugging_rails/ |
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
Ruby: | |
http://tryruby.hobix.com/ | |
http://pragprog.com/titles/ltp2/learn-to-program-2nd-edition | |
http://poignantguide.net/ruby/ | |
Rails: | |
http://guides.rubyonrails.org/ | |
http://pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition | |
The Rails Way - http://www.amazon.com/Rails-Way-Addison-Wesley-Professional-Ruby/dp/0321445619 | |
http://pragprog.com/titles/achbd/the-rspec-book |
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 linkify(s) { | |
var entities = { | |
'"' : '"', | |
'&' : '&', | |
'<' : '<', | |
'>' : '>' | |
}; | |
return s.replace(/[A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+/g, function(m) { | |
return m.link(m); |