Skip to content

Instantly share code, notes, and snippets.

View matthewford's full-sized avatar

Matthew Ford matthewford

View GitHub Profile
@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);
@matthewford
matthewford / gist:767850
Created January 6, 2011 12:56
mongodb replset crash
We couldn’t find that file to show.
@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",
[~/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 / 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'
@matthewford
matthewford / fixes.md
Created April 17, 2012 00:25 — forked from thbar/fixes.md
Getting rid of nokogiri segfaults

This readme is a mixture of everything I read on SO+nokogiri wiki, which ultimately worked out for me.

Here are the steps which worked for me to get rid of segfaults with Nokogiri 1.4.4, on both Lion and Snow Leopard, with Ruby 1.8.7 (patchlevel 334 and +).

First diagnose which version of libxml2 you're using:

bundle exec nokogiri -v

If you have 2.7.3 listed somewhere, you're in bad waters (known to segfault). Install this:

@matthewford
matthewford / nokogiri libxml homebrew lion
Created April 17, 2012 00:46 — forked from devpuppy/nokogiri libxml homebrew lion
How to fix: Nokogiri was built against LibXML version 2.7.3, but has dynamically loaded 2.7.8
FIXME:
WARNING: Nokogiri was built against LibXML version 2.7.3, but has dynamically loaded 2.7.8
or
libxml_ruby.bundle: dlsym(0x10fde1900, Init_libxml_ruby): symbol not found
gem uninstall nokogiri libxml-ruby
brew update
brew uninstall libxml2
def self.make_utf8_clean
mappings = [ ['α', 'α'],
['ß', 'β'],
['β', 'β'],
['’', '’'],
['“', '“'],
['â€\u009D;', '”'],
['â€', '”'],
['ö', 'ö'],
['®', '®']
<cluster-user>admin</cluster-user>
<cluster-password>mypassword</cluster-password>
Code:
https://github.com/alphagov/whitehall/tree/rails-upgrade