Text
Fizz Buzz
Status: Complete
Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”.
Reverse a String
Status: Complete
Enter a string and the program will reverse it and print it out.
Pig Latin
Status: Incomplete
Pig Latin is a game of alterations played on the English language game. To create the Pig Latin form of an English word the initial consonant sound is transposed to the end of the word and an ay is affixed (Ex.: "banana" would yield anana-bay). Read Wikipedia for more information on rules.
Count Vowels
Status: Incomplete
Enter a string and the program counts the number of vowels in the text. For added complexity have it report a sum of each vowel found.
Check if Palindrome
Status: Incomplete
Checks if the string entered by the user is a palindrome. That is that it reads the same forwards as backwards like “racecar”
Count Words in a String
Status: Incomplete
Counts the number of individual words in a string. For added complexity read these strings in from a text file and generate a summary.
Text Editor
Status: Incomplete
Notepad style application that can open, edit, and save text documents. Optional: Add syntax highlighting and other features.
RSS Feed Creator
Status: Incomplete
Given a link to RSS/Atom Feed, get all posts and display them.
Quote Tracker (market symbols etc)
Status: Incomplete
A program which can go out and check the current value of stocks for a list of symbols entered by the user. The user can set how often the stocks are checked. For CLI, show whether the stock has moved up or down. Optional: If GUI, the program can show green up and red down arrows to show which direction the stock value has moved.
Guestbook / Journal
Status: Incomplete
A simple application that allows people to add comments or write journal entries. It can allow comments or not and timestamps for all entries. Could also be made into a shout box. Optional: Deploy it on Google App Engine or Heroku or any other PaaS (if possible, of course).
Vigenere / Vernam / Ceasar Ciphers
Status: Incomplete
Functions for encrypting and decrypting data messages. Then send them to a friend.
Regex Query Tool
Status: Incomplete
A tool that allows the user to enter a text string and then in a separate control enter a regex pattern. It will run the regular expression against the source text and return any matches or flag errors in the regular expression.