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
All programmers are playwrights and all computers are lousy actors.
- Unknown

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



 Use OpenOffice.org
./Ruby/Prime Factoring
#PRIME FACTOR

num = 3954867435
primes = []
print "\nPrime Factor of #{num}: "
i = 2
numlimit = Math.sqrt(num).round
while(i <= numlimit)
	while(num > 1 && num/(i.to_f) == (num/(i.to_f)).round.to_f)
		primes << i
		num = num/i
		numlimit = Math.sqrt(num).round
	end
	i += 1
end
primes << num
primes.delete(1)
puts primes.join('*')



OUTPUT:

Prime Factor of 3954867435: 3*3*5*547*160669