Here's a small list of tips for new programmers.
- Read new books on software
Browse the local bookstore's software section. See what's new. Don't just read the latest Cookbooks on how to use technology, but peruse theory books.
- Watch Important Blogs
Blogs like Eric Gunnerson's for C#, Martin Fowler's and the TheServerSide for general info. Visit software web sites likepragmaticprogrammer.
- Be an active member in a local user/professional organization.
Join the local Java User's Group and .Net groups. You'll meet new and interesting, sometimes scary, people.
- Keep a daily record of major events during the day in a file.
Things like the phone numbers of people you talk with, significant bug fixes, code snippets, URLs, email addresses. It is important to keep it in a file and not just on paper, so that it can searched, transferred and backed up easily.
- Keep a library of interesting code that you've written and things you've learned.
The best way is to just publish this on the web somewhere. That way you can always locate it and your knowledge can help others.
- Remember - It's all about people
It's easy to forget during the crush of time pressures of a particular project that your relationship with your coworkers is the single most important long term issue. Don't ruin relationships just to get a single project done. Those same people are critical to the success of your next project. Besides, those people give you recommendations and job offers after your current company folds.
- As you code, think of maintenance.
Try to downgrade the skills needed to maintain your system. For example, to change a parameter use an init file instead of a java class, so someone with only text editing skills can update your program.
- When you finally track down that hard to find bug, don't fix it immediately.
Write a unit test that exposes the error. Change your code so that the error message is more descriptive. Then related bugs will be easier to find and fix. For example, if your servlet fails and the only indication is the " page cannot be displayed" message on a browser, change it so that it writes a page to the browser explaining the error, "Cannot find the file 'Config/Messages-en-US.txt'". Test your error message page, and then fix the original bug.
- Don't try to make your code modules reusable for some future mythical system.
To make a module reusable takes three times as long as for single use. The odds of you, or your friends, reusing the module is really low. Don't waster your employers money doing something that may never be used. If you find a use for that module later on, then make it reusable if it makes sense.
- Don't spend time optimizing before all is working:
"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil." - Donald Knuth
- Realize methodologies are just guidelines.
Don't follow methodologies blindly. Just because Object Oriented Programming is a great methodology, it doesn't imply you should always follow it. In rare cases speed or memory constraints force a good programmer to go against OOP.
The same with Domain Driven Design. It is not appropriate for very small applications.
"More computing sins are committed in the name of efficiency (without necessarily achieving it) than for any other single reason - including blind stupidity." - W.A. Wulf
- Constantly improve your skill level.
Always be learning. Talk to other software people about their problems and solutions. Be alert, the next software revolution often happens with very little warning.
- Testing
I like this quote from a Rational brochure: "Continuous, automated testing that covers the entire development life cycle. It's the only way to manage the constant flow of changes, errors and general chaos."
Invest in a high level of automated testing. I like JUnit for Java and NUnit for .Net. If possible, write your tests so that the input is an XML description of objects. This way your testers can write your tests, instead of programmers.
- Post-Installation Test for Enterprise Software
In the administration portion of your application have an "installation test" section where all the major components get exercised. Have a link to test that the databases are connected, any web services, and that key configuration items have values. Installation is such a pain and you can relieve some of that with good tests and explanations when something is not quite cricket.
- OHIO/DRY
Remember what Ray Ozzie calls the OHIO principle (Only Handle Information Once.) "If information must be entered in two places, it won't be."
(AKA 'DRY' Principle: Don't Repeat Yourself). - Push Complexity Down
You should push complexity down to lower objects and not clutter the higher objects with details.
- Push Complexity To Smaller Objects
If all things are equal, put new complexity in the smaller objects.
- Command Query Separation (CQS)
Bertrand Meyer presented it as:
"every method should either be a command that performs an action, or a query that returns data to the caller, but not both. In other words, asking a question should not change the answer" -Wikipedia - Your biggest enemy professionally is your pride
Don't be afraid to say "Hmmm. David, I've never heard about that before; what is it?", or "Hey Frank, could you look over this code and see if there's a better way to do this.". Don't assume you know the best way to design or code something. We can all learn from each other in this voyage called life. Don't fear constructive criticism. "Faithful are the wounds of a friend."
- Coding Tidbits
- My Favorite Quotes about Programming
- "The only proof of working software is working software." - James McGovern
- "Everything knows nothing about anything." - a perfectly object-oriented system.
- "Every line of code is a liability." - Taka Muraoka
- "Software has the shelf life of bannanas." - Scott McNealy
- "It might be that the key to Ant's success is that it didn't try to be successful. It was a simple solution to an obvious problem that many people were having." -James Duncan Davidson, the creator of Ant .
At our local Java Users Group James said if he had done a full requirements analysis and tried to build the perfect tool for everyone's need, he probably would have failed. Instead he just built a little tool for himself and gradually added features that his friends really wanted right then.
- "It has been said that the great scientific disciplines are examples of giants standing on the shoulders of other giants. It has also been said that the software industry is an example of midgets standing on the toes of other midgets." -Alan Cooper, About Face
- "Measuring programming progress by lines of code is like measuring aircraft building progress by weight." -Bill Gates
- "The most amazing achievement of the computer software industry is its continuing cancellation of the steady and staggering gains made by the computer hardware industry." - Henry Petroski
- "If I had asked people what they wanted, they would have said faster horses." vaguely attributed to Henry Ford
- "There is nothing so useless as doing efficiently that which should not be done at all." - Peter Drucker
No comments:
Post a Comment