School Assignment? Project Due Tomorrow? Chat LIVE With A Programming Expert!
Welcome to Dream.In.Code
Become an Expert!

Join 306,937 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,805 people online right now. Registration is fast and FREE... Join Now!



's Contributions
Below are the tutorials, code snippets, and resources has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
No Tutorials Submitted.
Code Snippets
Submitted: January 14, 2009        Views: 660
Type in binary code (1s and 0s) and this script will convert it to a decimal number.
Submitted: September 14, 2009        Views: 234
Converts the input to the base you specify up to base-16 (hexadecimal).
Submitted: January 15, 2009        Views: 1213
Takes a decimal (base 10) number and converts it to binary (base 2).
Submitted: June 16, 2009        Views: 369
Finds all permutations of a string of numbers using the Johnson-Trotter algorithm.
Submitted: March 4, 2009        Views: 165
This finds prime numbers (much faster than checking one by one) using the Sieve of Eratosthenes. Prints the primes found (optional), the sum, and the number of primes found.
Submitted: January 25, 2009        Views: 457
Tells if the input is prime or not.