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

Join 307,096 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 2,035 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
Code Snippets
Submitted: November 8, 2009        Views: 15
Decrypt an encrypted string using Caesar's Cipher.
Submitted: November 10, 2009        Views: 8
Decrypt a string that has been encrypted using Caesar's Cipher. This is NOT the same as the encrypt snippet, this decrypts a string encrypted using that (reverses it back to the original message).
Submitted: November 6, 2009        Views: 89
Encrypt a given string using Caesar's Cipher.
Submitted: October 17, 2009        Views: 256
This calculates an exponent with a specified power without using the Math class.
Submitted: September 29, 2009        Views: 427
This method checks how many times a character occurs in a string.
Submitted: September 21, 2009        Views: 16
How to check if a string is palindromic. This is not the same snipped as the other palindrome checker.
Submitted: September 29, 2009        Views: 274
This method counts the number of vowels in a string.
Submitted: September 22, 2009        Views: 9
Reverses a string without using string.reverse.
Submitted: September 8, 2009        Views: 343
This snippet of code scans an online file (updatefile) using System.Net, WebClient, and DownloadString. Then, if the web page contains "1" (feel free to change), it says an update is available. Then creates a directory (dir) for you to download into. Next, it downloads the file (program) and places it in the directory (dir) and the file name (file). If all went well: it gives the success message. Otherwise, it gives the error message.