Skip to content

Instantly share code, notes, and snippets.

View jefftrudeau's full-sized avatar

Jeff Trudeau jefftrudeau

View GitHub Profile
a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
evens = [i for i in a if i % 2 == 0]
odds = [i for i in a if i % 2 == 1]
@jefftrudeau
jefftrudeau / gist:735777
Created December 10, 2010 04:24
Jeff Trudeau's "Engine Yard Lucky 13 Content Entry"
// Copyright Jeff Trudeau
require 'json'
require 'net/http'
require 'uri'
puts 'Welcome, a bet of -1 will end the game.'
earnings = 0
while (true)
puts 'Your earnings are '.concat(earnings.to_s).concat('. Please place your bet.')
bet = gets.to_f