Look what I found!! This is an archive of what my site/life was about 4-5 years ago. For the modern JobyBednar.com, try here.
JobyBednar.com
To be pleased with one's limits is a wretched state.
- Johann Wolfgang von Goethe

Ruby Development
/root
  ./apple I
  ./articles
  ./code
  ./decode
  ./hobbies
  ./mac
  ./pics
  ./ruby
  ./www



 Use OpenOffice.org
./Ruby/Gaming Dice
class Fixnum
   def d(s)
      Array.new(self).map { rand(s)+1 }
   end
end

USE: n.d(m) ==> array of n random values between 1 and m

3.d(6) ==> [1,5,3]