Skip to content

Instantly share code, notes, and snippets.

View secos's full-sized avatar

Matt Secoske secos

View GitHub Profile
require 'twitter'
require 'json'
require 'hashie'
client = Twitter::REST::Client.new do |config|
# get yer own
end
the_nought = {}
@secos
secos / gist:3788694
Created September 26, 2012 15:26
the beginning of the end...
class Array
alias :head :first
def tail
drop(1)
end
end