Skip to content

Instantly share code, notes, and snippets.

View matthewford's full-sized avatar

Matthew Ford matthewford

View GitHub Profile
@matthewford
matthewford / Gemfile
Created March 9, 2012 18:59
sidekiq/web stack trace
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'
[~/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
@matthewford
matthewford / twttr.BANNED_PASSWORDS.js
Created July 16, 2011 23:27
banned password list (twitter)
["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",
@matthewford
matthewford / gist:767850
Created January 6, 2011 12:56
mongodb replset crash
We couldn’t find that file to show.
@matthewford
matthewford / test-ad-click.html
Created December 5, 2010 23:23
detecting a click on ads in an iframe/flash banner
<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);
<!-- 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");
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(-)
@matthewford
matthewford / Rails
Created June 15, 2009 13:21
Debugging Cheat Sheet
Moved to http://github.com/matthewford/agile_debugging_rails/
@matthewford
matthewford / Beginning Ruby on Rails Resources
Created June 15, 2009 12:47
Beginning Ruby on Rails Resources
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
function linkify(s) {
var entities = {
'"' : '&quot;',
'&' : '&amp;',
'<' : '&lt;',
'>' : '&gt;'
};
return s.replace(/[A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+/g, function(m) {
return m.link(m);