Tip #1: Don't let your lines go over 80 characters wide.
Tip #2: Don't break up your functions using //================ use 2-3 carriage returns
Tip #3: Functions should start with a lower case letter and capitalize the first letter of each word.
Tip #4: package names should ALWAYS be in lower case.
Tip #5: Class names should be more about what it does rather than what your program is, for example. CountMyFiles becomes FileCounter.
Tip #6: I could think of more, but you're talking to me on the IRC and I'm intrigued...