I realize that this one is a lot of people favorite thing to do, but it is always wrong. <h3>Commented out code</h3> We are in an age when it is easy to setup a source code versioning system. If code is worth keeping, then check it in, it is saved now and forever. If you want to replace it with a new version delete it: - The old version will be around if you need it. - Commented out code makes code hard to read since it still looks like code, and takes up the same space as real code. - After a few changes to the original code, the commented out version is way out of date I once saw a function that had over a hundred lines of commented out code, when I removed the commented out code, it was only 2 lines long. Sometimes we comment out code during debugging and development. This is ok, just make sure to delete it before it is checked in.