Skip to content

Instantly share code, notes, and snippets.

// by dave whyte @ bees & bombs >:)
// use gifsicle to assemble frames into gif
int[][] result;
float t;
float ease(float p) {
return 3*p*p - 2*p*p*p;
}
@idlehands
idlehands / card.rb
Created October 24, 2012 23:29 — forked from dbc-challenges/card.rb
FlashCardinator
class Card
attr_reader :term, :definition
def initialize(term, definition)
@term = term
@definition = definition
end
def to_s
"#{term}: #{definition}"
# Put your answers here!
Last login: Sat Oct 6 16:04:39 on ttys001
JEFFREYs-MacBook-Pro:~ jeffrey$ rvm list
rvm rubies
ruby-1.8.7-p370 [ i686 ]
ruby-1.9.2-p290 [ x86_64 ]
ruby-1.9.3-p194 [ x86_64 ]