vote up 60 vote down star
55

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.

flag
4  
All programmers should review this question... ;-) – Frank May 4 at 14:43
10  
Wasting too much time on stack overflow :p – Sam Saffron May 5 at 10:12
4  
Not wasting enough time on stack overflow – Min May 18 at 19:02

99 Answers

1 2 3 4 next
vote up 113 vote down check

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.

link|flag
8  
Yeah, even when I'm just copying someones code example, I"ll still type it out by hand to learn it more thoroughly. – CookieOfFortune May 3 at 22:27
40  
There's two aspects to this -- copy/pasting other people's code, and copy/pasting your own code. Both are bad. If you find yourself copy/pasting your own code in the same program, you're doing something wrong. Refactor it. – Andrew Coleson May 3 at 22:45
7  
@Andrew: 90% of the time, it's bad. But when doing things like initialization, or creating a new class, sometimes copy and paste is the way to go. – Andrei Krotkov May 4 at 1:23
2  
Most of the time when I copy and paste my own code it isn't business logic, but just the cruft that is necessary when coding in that language, like Andrei says, the code for declaring a new class is a decent example. – thomasrutter May 4 at 5:15
show 8 more comments
vote up 75 vote down

I start far too many hobby projects, and seldom manage to complete any one -- or even reach an intermediate milestone.

link|flag
1  
This is actually why I don't start many side projects - I refuse to start something unless I believe there is a reasonable chance of completing it. – Tom Ritter Nov 20 at 16:04
5  
I think one of the fundamental problems with hobby projects is we never give ourselves a professional specification. Which means there is no end to the project. It goes on as far as our hearts allow, which is forever. "Ooh I could add this... it could do this...". Then, before it's even finished "[Technology X] is out of date? I'd better refactor it with newer, better [Technology Y]!". Aside from the obvious facts that we can't feel pressure from ourselves, and no money is involved to hurry us on to an actual completed product... – joshcomley Nov 20 at 16:11
1  
@Greg - I have a bit of both every time. The thought process is a little bit like this: "Ooh there should be a website/bit of software that does X... I could probably make it... I could give my friends the link, I bet they'd love it! Plus, I've been meaning to learn Technology Y for ages, this gives me a great platform to learn it!" – joshcomley Nov 20 at 16:28
show 7 more comments
vote up 58 vote down

Using poorly named variables.

link|flag
1  
Also, it's better to use a bad naming convention and stick with it than it is to not use a naming convention. If you don't like your naming convention, refactor - or just use a new one next time. – Dean May 13 at 2:27
3  
Don't abbreviate. In the age of autocompletion there's no need to write unreadable code just to save a few characters. – JC May 20 at 1:47
show 1 more comment
vote up 55 vote down

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.

link|flag
2  
+1 but I'd add "correctly" after "Not using source control" The book Pragmatic Version Control really opened my eyes to some things that I'd been missing out on. – SnOrfus May 4 at 4:58
5  
Actually, manual source control sounds like making your own dogfood from old car tires, and then wonder why the dog gets sick. – sleske May 4 at 15:08
1  
I found that this was a particularly common trait among my classmates when I was in school. Adopting source control for class projects would have saved them lots of heartache. There were constantly people who were freaking out right before a project was due because they'd introduced some bug, and didn't know how to get back to a known good state. It's a pity that more CS programs don't teach version control in their intro classes as a basic programming tool. – Scotty Allen May 5 at 5:38
show 6 more comments
vote up 44 vote down

I rewrite code I didn't write.

link|flag
3  
Ah yes good one, I do that. If I didn't write it, for some reason it looks really bad. And when I did write it, it looks really... – joshcomley Nov 20 at 15:51
1  
@mookid - Or you misunderstood that the code was perfectly well written in the first place! – joshcomley Nov 20 at 16:33
2  
Of course if the original code was horrible (illegible, uncommented, poor algorithm, too much duplication, etc.), that's a virtue. – Loadmaster Nov 20 at 17:39
show 5 more comments
vote up 43 vote down

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.

link|flag
1  
I agree that it should done in increments, so you do not compound your early error. I like to write chunks of code while the program is running, you get even more feedback than what is available through simple intellisense. I suspect I'll get strong responses why this is bad and promotes sloppy code that isn't well planned. I would disagree & say that if used well, it is another tool in your belt and should not be avoided for idealistic reasons. 20 yrs ago, my boss told me that I over relied on what was at the time an advanced debugger and that it encourages bad code. I think she was nuts. – Chadworthington May 6 at 4:47
show 4 more comments
vote up 42 vote down

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."

link|flag
1  
I like that 97% qualification, because most of the time people just say "don't optimise prematurely" and leave it at that. A seasoned programmer knows what is worth optimising and what isn't, and most code isn't. – thomasrutter May 4 at 5:19
18  
I actually think this is some of the worst advice that gets passed around. Most developers these days seem to confuse programming efficiently with premature optimization. If you're Knuth or one of his colleagues, this is great advice. Otherwise, it's often used as an excuse for sloppy programming. – Travis May 4 at 5:45
1  
Travis has an excellent point. There are order-of-magnitude differences between algorithms you'll see students write in an intro programming course - e.g., unneeded triple nested loops, recursion without caching, etc. A colleague looking for CS grad student help at a major university (with a good CS department) gave candidates some simple tests - he had people writing O(n^3) algorithms for problems that were O(n log(n)). You don't want this kind of poor design to be excused because you "shouldn't optimize prematurely." – Mike Kantor May 4 at 13:29
13  
Yes, you do. O(n^3) doesn't matter if n=5. It really depends on the combination of algorithm, input and available resources. And that is hard to predict, which is just Knuth's point. See also stackoverflow.com/questions/474714/… . – sleske May 4 at 15:12
1  
Neko makes a good point. There is a difference between designing for efficiency and optimizing for efficiency. Good design should always be done, but optimizations are only useful when your code has been shown to not be fast/small/whatever enough. – Joren Nov 20 at 18:01
show 1 more comment
vote up 42 vote down

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".

link|flag
5  
Especially in cases where it's "impossible"... – sleske May 4 at 15:08
1  
The problem with beginner programmers is that they still think "impossible" has the real-world meaning of "won't happen", while in practice "impossible" in programming means "will happen only after releasing the product and/or demo-ing it" – Neko Aug 12 at 11:11
vote up 36 vote down

Not writing unit tests.

link|flag
10  
I wish somebody was there to tell me in school several years ago..some how this aspect is totally lost in our schools and universities. – CodeToGlory May 3 at 23:33
9  
Even though vital for high-quality software, this practice generally clashes with real-world pressures and deadlines. In open source, totally - but good luck convincing business people that you have been doing something other that "create". A lot of us "just do it", on our own time, but that can get old if you are not billing by the hour, eh? – Andrei Taranchenko May 4 at 0:13
show 4 more comments
vote up 36 vote down

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.

link|flag
4  
Agree. Don't start by writing the "library" code. Start the project by writing the main() method, inventing nice names for the things you will need, as you write. Once you have written the main() method, just implement all the functions and objects it used and your application will be finished! – joeytwiddle May 3 at 23:36
vote up 28 vote down

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...

link|flag
show 3 more comments
vote up 28 vote down

Spending too much time on StackOverflow instead of actually developing!

link|flag
show 2 more comments
vote up 26 vote down

learn these by heart so you know when you are repeating them http://en.wikipedia.org/wiki/Anti-pattern

link|flag
show 1 more comment
vote up 26 vote down

It's always easy to be wary of anything that's Not Invented Here.

I think Rands summed this up best:

NIH ("Not Invented Here")

Term to describe behavior where an engineering team will not consider working with anyone's code except their own. It's not that the external code is good or bad, it's just foreign which means it must be reviewed, reformatted... oh, what the hell. LET'S REWRITE THE WHOLE DAMNED THING. Billions of dollars have been lost to NIH. I mean it. Billions.

link|flag
2  
Very true. Often also referred to as "Reinventing The Wheel". We're all guilty. The risk is - if something goes wrong fixing it is likely to be more costly, so on our (reasonable) assumption that stuff always goes wrong that it must be more dangerous! – joshcomley Nov 20 at 15:58
vote up 24 vote down
try {
    myCodeHere();
    doSomethingElse();
} catch (Exception e) {
    // TODO: Handle this intelligently later.
}

If I'm having a good day I might add e.printStackTrace();.

link|flag
1  
cntrl+1 in eclipse does it all for you. How could you resist? – Stefan Kendall Nov 20 at 16:17
show 3 more comments
vote up 20 vote down
try {
    ...
}
catch( Exception ex ) { }
link|flag
1  
This type of thing is infuriating. Just thinking about it now is making me unbalanced and insane! – Harry Lime May 6 at 7:38
1  
try { /*...*/ } catch {} // The lazy dude doesn't need to type "( Exception ex )" – jrcs3 May 28 at 22:21
show 3 more comments
vote up 20 vote down

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.

link|flag
vote up 20 vote down

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.

link|flag
show 2 more comments
vote up 19 vote down

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.

link|flag
show 1 more comment
vote up 19 vote down

Being anal and formatting other developer's code because it isn't "pretty".

link|flag
4  
Prettiness can lead to legibility, so this isn't necessarily a vice. Depends whether it was perfectly pretty before, but just not to your taste :) – joshcomley Nov 20 at 16:01
1  
Get your company to define an eclipse formatting document, and make everyone use it. Cntrl+shift+f. You should never be manually formatting code. Ever. – Stefan Kendall Nov 20 at 16:19
show 3 more comments
vote up 18 vote down

Comments. Comment everything you do. You will thank yourself later, and so will your teammates. Besides, it makes documentation writing easier/unnecessary.

link|flag
22  
Better to write code that doesn't need comments to be understood. – tvanfosson May 3 at 22:57
3  
my opinion is that properly written properly unit tested code will need 1 comment for every 20 lines; you're just adding a second set of code to maintain -- that's not compiled and is only vaguely coupled to what the actual code is doing – jcollum May 3 at 23:24
30  
Comments Lie. If your comments are explaining the how, then they are not good comments. Instead of explaining the code in comment form, refactor it so that it is more understandable. The comments should ONLY express the WHY, as in 'why would anyone want to do this?' or 'why did you use this algorithm instead of that' or 'why does this even work at all?' – TokenMacGuy May 3 at 23:27
4  
90% of the time you find yourself writing a comment to explain what some function does or what some variable is for, it means you picked a poor name for that function or variable. Name things so as to make their role obvious. – glenra May 4 at 3:20
5  
I write a comment for every method/function describing in brief what it does and what it returns, good for documentation afterwards, otherwise it probably averages a single comment every 10 to 20 lines. – thomasrutter May 4 at 5:24
show 5 more comments
vote up 15 vote down

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 :)

link|flag
show 1 more comment
vote up 14 vote down

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.

link|flag
vote up 13 vote down

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.

link|flag
1  
Agreed, you don´t wanna have just a hammer in your toolbox. – Decio Lira May 5 at 12:53
show 2 more comments
vote up 12 vote down

Think 100x longer about the code before you write it. Don't just start spewing spaghetti

link|flag
10  
I disagree with this. If your code starts becoming spaghetti, then you need to refactor and move on. Some of the coolest things I've worked on, started as a mess of methods just to prove it could be done but then was refactored into a robust extensible thing... – Josh May 3 at 23:28
3  
I am traditionally tasked a project long before I start it and I think about how I will implement it and the new features weeks before I actually do which results in cleaner code and increase in productivity. Sorry you don't agree. It's more of a statement about newbies anyways and so many NOT thinking before coding. But I am probably unusual and OCD about code. – Chad Grant May 4 at 3:09
3  
+1 - So many problems seem obvious and avoidable when given some proper thought. You could save a day of refactoring (and a day of writing the original) if you just think for 20 mins before 'coding from the hip.' – SnOrfus May 4 at 5:00
1  
+1. The 100x is an obvious hyperbole. It's much better to think about the problem and the solution before diving right in. – Min May 4 at 15:00
show 2 more comments
vote up 11 vote down

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

9)OCCAM's RAZOR

(my personal far out web design top 10 designed them thinking about web content, but all are applicable to coding)

link|flag
vote up 9 vote down

This should set a bad example, while this is more positive (and serious).

link|flag
show 1 more comment
vote up 9 vote down

For small functions, I use

  int tempval = ...

and the like. I know I shouldn't, but sometimes I can't think of a descriptive name, and ... oh well.

link|flag
vote up 8 vote down

Don't duplicate behavior by copy and paste code.

link|flag
vote up 8 vote down

Have a look at programming anti-patterns.

link|flag
1 2 3 4 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.