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

Join 307,089 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 2,145 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
Beginning Flex in Other Language Tutorials (Last Comment: erik.price, Views: 122)
Code Snippets
Submitted: October 25, 2009        Views: 98
Java API for Wordnet Searching (JAWS) is an API which allows you to search through the Wordnet Dictionary and retrieve definitions, synonyms, antonyms, etc. This snippet will retrieve the definition of a word and write it out to a file
Submitted: October 19, 2009        Views: 37
Brute Force == slow. Simple snippet I wrote to solve a Project Euler problem about a year ago when first learning C.
Submitted: March 15, 2009        Views: 498
Submitted: May 4, 2009        Views: 429
Just like the title says, put in a degree, and out comes a radian
Submitted: October 15, 2009        Views: 10
A simple snippet I created when first learning C, so now that I'm learning Java, it seems appropriate.
Submitted: November 6, 2009        Views: 237
A method which will find the square root of a number, given the number to find the root of, as well as an adjustable precision
Submitted: November 6, 2009        Views: 213
Demonstrates the method for finding square root using the Newton Rhapson method, which is commonly used in calculators
Submitted: November 6, 2009        Views: 120
Finds the nth root of a number with a simple algorithm
Submitted: March 7, 2009        Views: 2057
Uses simple loop to find the number of digits in an integer.
Submitted: November 10, 2009        Views: 8
A fairly simple sorting algorithm. Best case O(n), worst case O(n^2)
Submitted: May 6, 2009        Views: 359
Another simple geometric formula. Heron's formula takes the three sides of a triangle and finds the area.
Submitted: October 15, 2009        Views: 10
A method for calculating the area of a triangle when you know the lengths of all three sides. Sounds fun, huh?
Submitted: May 5, 2009        Views: 275
Very basic metronome that uses '\a' (BELL) and text to keep the beat.
Submitted: October 15, 2009        Views: 18
As the title says, solves quadratic equations
Submitted: May 4, 2009        Views: 502
Converts radians to degrees
Submitted: May 3, 2009        Views: 137
Submitted: May 4, 2009        Views: 248
C defines cos() as a function, but that doesn't really help you understand whats going on
Submitted: May 4, 2009        Views: 229
Shows how sine is calculated, may be helpful when more precision is needed
Submitted: May 4, 2009        Views: 262
A somewhat messy, but effective approach to tangents
Submitted: October 23, 2009        Views: 151
If you're lazy like me, you will find this extremely useful.
Submitted: March 7, 2009        Views: 403
Function to get a file from the user, and then encrypt it with the user defined key