I'm a new programmer in college and was wondering if there are any bad habits to watch out for early on. Anything that you wish you knew to avoid when starting. Thanks.
|
55
|
|||||||||||||
|
|
|
Copy and paste programming is probably one of the worst habits that one can develop while starting to learn programming. Learning how to program is best achieved by writing code and understanding other people's code. If you copy/paste code without understanding what's going on, you are doing yourself more harm than good. |
||||||||||||||||
|
|
|
I start far too many hobby projects, and seldom manage to complete any one -- or even reach an intermediate milestone. |
||||||||||||
|
|
|
Using poorly named variables. |
||||||||
|
|
|
Not using source control. There are a few instances where it is feasable to skip the source control. If you can count the number of characters in the source file on one hand, It's probably ok to skip the source control. Otherwise, you need it. |
||||||||||||
|
|
|
I rewrite code I didn't write. |
||||||||||||
|
|
|
A mistake programmers often make at the beginning, is to try to write the Whole Program, then compile it and run it. They will be bombarded with 100 compile errors, and even when compiled their program probably won't do the right thing. The way beginners should start a project, is to make a small part of the program, compile and test it, and once it is working, move on to write the next part. Continuously re-running and testing your application, while you add or change only small pieces of code, is a great way to isolate any new problems in the recently changed code. |
||||
|
|
|
Don't optimise prematurely. Donald Knuth made the following statement on optimization: "We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil." |
||||||||||||||||||||
|
|
|
Not handling errors. Failing to check return codes, assert conditions or swallowing exceptions. Even in cases where it's "impossible", or "no one will ever use it again". |
||||||||
|
|
|
Not writing unit tests. |
||||||||
|
|
|
Not adhering to YAGNI is a big mistake. (YAGNI = you ain't gonna need it). Build what you need, not what you think you might need. It helps when retaining a focus on the important things and the bigger picture. Even at an API level, the intent of some functionality can be obfuscated by having multiple redundant additional methods or method overloads. Noise in a code base is annoying to work with. E.g. if you only need to load something in memory, don't provide an overload to load it from a file path "just because" you might need it in future. This is especially the case when it comes to bugs. Unit testing finds a lot of bugs, but some will lay hidden until the functionality is actually used by someone. If you have code that is not being run, the bugs won't get found so quickly. Furthermore, when the bugs are discovered, that code might be ancient and the person who wrote it may not remember it, let alone be at the company any more. |
||||
|
|
|
I'm much too easily sidetracked. I want to write a program in Clojure, but first I'm going to create a Web site where the Cheat Sheet and API reference are cross-linked and extensible. But before I do that, I want to write a proxy so I can hear last.fm while I code yet another diversion... |
|||
|
|
Spending too much time on StackOverflow instead of actually developing! |
|||
|
|
learn these by heart so you know when you are repeating them http://en.wikipedia.org/wiki/Anti-pattern |
|||
|
|
It's always easy to be wary of anything that's Not Invented Here. I think Rands summed this up best:
|
||||
|
|
|
If I'm having a good day I might add |
||||
|
|
|
|
||||||||
|
|
|
I have a tendency to forge ahead with a poorly thought out implementation when a deadline approaches telling myself I'll go back and refactor... which, of course never, happens. |
|||
|
|
|
|
Definitely the lack of comments. Also, I often find myself afraid of using "ugly" solutions, preventing me from getting work done. Of course, in itself, this isn't a bad thing, but somethings you just have to do something to keep on moving with the project. |
|||
|
|
Writing monolithic routines is one of the worst things you can do. Try to write small, dumb code. Its harder to write code that looks like something anyone could write - that takes real skill. |
|||
|
|
Being anal and formatting other developer's code because it isn't "pretty". |
||||||||
|
|
|
Comments. Comment everything you do. You will thank yourself later, and so will your teammates. Besides, it makes documentation writing easier/unnecessary. |
||||||||||||||||||||
|
|
|
Refactor. Don't be afraid to re-do it. With proper design and good test coverage, this shouldn't be a problem. If it is, figure out why - you'll learn more from mistakes than successes. [Edit] Er, don't be afraid to refactor I guess is how it should start :) |
|||
|
|
Don't get too stuck into the computer mode of thought. It does you little good to brilliantly solve the wrong problem with elegant code. Customers are smart people, but they don't speak our language. And they pay our salaries. We need to come to them and learn to translate their requirements. |
|||
|
|
|
|
Don't get hooked on just one programming language, learn what that language is good for and what its not. Learn to use the right tool for the job. |
||||
|
|
|
Think 100x longer about the code before you write it. Don't just start spewing spaghetti |
||||||||||||||||
|
|
|
Quick list (in no particular order, but make sure you read about Occam's Razor) 1)stressing out is the worst thing you can possibly do, read up on the neuroscience here: Stress makes programmers dumber and the original series The Programmers' Stone 2)just keep doing and learning iteratively. Don't get too discouraged early on. Make time to look for prepackaged solutions that you can easily understand (try not to reinvent whenever possible). 3)don't blindly copy (cut & paste) "Copy and paste programming is probably one of the worst habits that one can develop while starting to learn programming. Learning how to program is best achieved by writing code and understanding other people's code. If you copy/paste code without understanding what's going on, you are doing yourself more harm than good." (from tvanfossen 4)Always set enough time aside for testing each piece of code that your write or connect to ("unit testing") codetoglory 5)look for common pitfalls in logic (antipatterns from deviant) 6)use appropriate named variables, whether long or short hypoxide 7)great one, don't optimize code before you have to, unless you know for sure the inner most loop call and the code isn't IO/memory limited originally from rob-kam. 8)catch error states. Die gracefully when you need to, pass back an error state otherwise (my personal far out web design top 10 designed them thinking about web content, but all are applicable to coding) |
|||
|
|
|
|
This should set a bad example, while this is more positive (and serious). |
|||
|
|
For small functions, I use
and the like. I know I shouldn't, but sometimes I can't think of a descriptive name, and ... oh well. |
|||
|
|
|
|
Don't duplicate behavior by copy and paste code. |
|||
|
|
|
|
Have a look at programming anti-patterns. |
|||
|
|
