My Recent Pastes (3 and counting)

Pastes by Mike Skalnik (3 and counting)

Below are the 3 most recent pasties by Mike Skalnik.

December 27, 2008
11:11PM EDT
by Mike Skalnik

  has_many :phone_numbers
  has_many :addresses
  has_many :conversations
  has_many :pictures

August 16, 2008
3:51PM EDT
by Mike Skalnik

#!/usr/local/bin/ruby
class Array
  def randomize
    new_arr = []
    until self.empty?

July 20, 2008
4:04AM EDT
by Mike Skalnik

#!/usr/bin/ruby
@LIMIT = 150_000
@is_prime, @omega = Array.new(@LIMIT, false), Array.new(@LIMIT, 0)
def sieve
  @is_prime[2] = true