Skip to content

Instantly share code, notes, and snippets.

@tcrayford
tcrayford / 03-a-whole-new-world.md
Created September 24, 2012 18:36 — forked from jasonrudolph/00-about.md
Rough Notes from Strange Loop 2012

A Whole New World

Gary Bernhardt

Abstract

--- rough notes ---

Gary introduces an side project that Gary has been working on part-time for an little over an year, including ...

@tcrayford
tcrayford / sketch.rb
Created June 29, 2012 16:03 — forked from mattwynne/sketch.rb
sketch for Matt Wynne
class RubbishController
protected
def redirect_to(path)
puts "redirecting_to #{path}"
end
def render(renderable)
puts "rendering #{renderable}"
end
def current_user
class Generation < Struct.new(:members)
def to_a
members
end
def sort
members.sort! do |a,b|
a.score <=> b.score
end
self