Adapted from a recipe by Mark Sullivan, Chesapeake Real Ale Brewers (CRAB) from "More Homebrew Favorites", by Lutzen & Stevens.
- 0.75 pounds Crystal 90L malt
- 0.5 pounds Roasted barley
# lines 11-14 of aol.rb from contacts gem | |
AOL_NUM = "32319-211" # this seems to change each time they change the protocol | |
CONTACT_LIST_URL = "http://mail.aol.com/#{AOL_NUM}/aol-6/en-us/Lite/ContactList.aspx?folder=Inbox&showUserFolders=False" | |
CONTACT_LIST_CSV_URL = "http://mail.aol.com/#{AOL_NUM}/aol-6/en-us/Lite/ABExport.aspx?command=all" |
#!/usr/bin/ruby | |
# Assassin - Random and fair pairing for a game of assassin of any size (defaults to 10) | |
# Takes number of players from args | |
num_players = ARGV[0].to_i == 0 ? 10 : ARGV[0].to_i | |
killers = (0..num_players-1).to_a | |
targets = killers.shuffle | |
puts "killers: #{killers.inspect}" |
PGError: server closed the connection unexpectedly This probably means the server terminated abnormally before or while processing the request. : SELECT id FROM address_books LIMIT 1 | |
/home/gordon/.rvm/gems/ruby-1.8.7-p302/gems/activerecord-2.3.8/lib/active_record/connection_adapters/abstract_adapter.rb:221:in `log' | |
/home/gordon/.rvm/gems/ruby-1.8.7-p302/gems/activerecord-2.3.8/lib/active_record/connection_adapters/postgresql_adapter.rb:520:in `execute' | |
/home/gordon/paperless/paperlesspost/paperless-post/app/jobs/address_book_importer.rb:8:in `perform' | |
/home/gordon/.rvm/gems/ruby-1.8.7-p302/bundler/gems/resque-status-0ad44dfe6987/lib/resque/job_with_status.rb:110:in `safe_perform!' | |
/home/gordon/.rvm/gems/ruby-1.8.7-p302/bundler/gems/resque-status-0ad44dfe6987/lib/resque/job_with_status.rb:87:in `perform' | |
/home/gordon/.rvm/gems/ruby-1.8.7-p302/gems/resque-1.10.0/lib/resque/job.rb:133:in `perform' | |
/home/gordon/.rvm/gems/ruby-1.8.7-p302/gems/resque-1.10.0/lib/resque/worker.rb:157:in `perform' | |
/home/gordon/.rvm/ge |
#include <stdio.h> | |
#define TOP_NUM 10 | |
// return whether or not an item is in an array | |
int inArray(int num, int nums[], int nums_size){ | |
int i; | |
for(i=0; i<nums_size; i++) | |
if(num == nums[i]) |
ruby -e "$(curl -fsSL https://raw.github.com/gist/323731/39fc1416e34b9f6db201b4a026181f4ceb7cfa74)" |
-# This comment can be | |
split up in multiple lines just | |
by indentation! | |
Mike | |
doesn't | |
like | |
these | |
comments | |
. |
$('form').live('submit', submitForm(e, $(this)) ); | |
var submitForm = function(e, $form) { | |
e.preventDefault(); | |
// make sure we want to do shit | |
doShit(); | |
// stuff we do after doing shit |
#!/bin/bash | |
# Update your tracked branch with the remote copy without adding a merge commit. | |
parse_git_branch(){ git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1 /'; } | |
branch=`parse_git_branch` | |
git remote update root | |
git rebase root/$branch |