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

Join 307,138 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,816 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
CSS Image Rollovers in CSS Tutorials (Last Comment: Dogstopper, Views: 582)
Code Snippets
Submitted: November 13, 2009        Views: 5
This snippet approximates Pi using Gregory's PI/4 progression series. This series takes 1 million iteration to get first 6 digits right.
Submitted: November 13, 2009        Views: 4
This snippet approximates Pi using Madhava-Leibniz progression series. This series takes 21 iterations to get first 12 digits right.
Submitted: August 15, 2009        Views: 299
This snippet shows how to make a very basic text editor with Tkinter
Submitted: September 20, 2009        Views: 131
This converts a base 10 number to binary.
Submitted: September 27, 2009        Views: 18
This converts a base 10 number to binary.
Submitted: August 14, 2009        Views: 53
This snippet adds up all of the ASCII values in any given string. This can be used to see if a file has been changed since it has been open.
Submitted: November 11, 2009        Views: 172
This takes in user input and the computer guesses it in the fewest number of tries as possible. When the number to find is between 0 and 50, the maximum number of tries is 6.
Submitted: July 28, 2009        Views: 60
This snippet is the the mathematical formula for finding one point based on an initial location, its speed, and its trajectory(clockwise). This could be used to move pixels across the screen in a game in a very accurate way.
Submitted: October 27, 2009        Views: 25
This converts a Base 10 number to a hex number
Submitted: August 15, 2009        Views: 158
This snippet shows an exampl of how menus can be implemented in Tkinter
Submitted: November 10, 2009        Views: 207
It prints out a multiplication table starting at a user-given number and ending at a user given number.
Submitted: October 27, 2009        Views: 16
This converts a base 10 number to an Octal number
Submitted: August 17, 2009        Views: 63
This snippet shows the 5 main methods in tkFileDialog