vote up 58 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

100 Answers

vote up 54 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 1 vote down

Jumping straight into writing code without thinking about what you're trying to achieve and how you're gonna do it usually leads to inconsistent code that needs to be re-written again and again.

Also, don't get too attached to a particular paradigm. There are many ways to approach a certain task and one of the most important things you can learn is to choose the right tool for the job. Don't be afraid to step outside your box.

link|flag
vote up 2 vote down

Believing (without question) what you've been told, or "common wisdom".

What others tell you may be true, but often it is just an attractive idea that started somewhere and keeps traveling, like a virus.

Your brain is yours. Use it. Think for yourself.

link|flag
vote up 2 vote down
  • Always document your code
  • Use correct tab spacing
  • Name you variables and classes something of meaning
link|flag
vote up 5 vote down

While it's true that thinking about a problem before approaching it is very important, if you're not a seasoned programmer, sometimes you just need to start writing code. You can't foresee everything, and going over concepts in your head only gets you so far.

If you're anything like me, you'll find out that the code evolves and validates in your mind as you write it. Sometimes something that made sense on paper will turn out to be a terrible idea as soon as you write a function implementing it.

If you don't want to risk breaking existing code, start a Test project and try out the ideas and concepts for solutions there. It's sort of like TDD, but for people who like to experiment first, and then plan.

link|flag
show 1 more comment
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 3 vote down
  • Functions & methods should only do one thing!

  • Avoid writing functions that are bigger than needed by breaking them into smaller pieces - look for duplicate code and place this in a helper function.

  • Try to break up functions & methods with more than a few dozen lines into smaller functions - this will greatly increase readability and make maintenance and testing easier.

link|flag
vote up 1 vote down

If you run into something not working the way you expect, it is possible that it is the framework's fault, but not in your (or my) case, check, double check, and triple check your code, then sleep on it and then check your code again... see it was your code and not the framework :)

link|flag
vote up 2 vote down

Be careful about charging ahead in your own direction when five minutes talking to somebody might save you a day of effort. It's usually worth just asking somebody.

link|flag
vote up 1 vote down

Using the debugger (and ONLY the debugger) to fix bugs or code. It's really handy and easy to do this sometimes that you end up spending more time with the debugger than thinking about the design or logic.

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

Shotgun programming. That's where bugs are fixed by randomly changing things here and there hoping one of them will solve the problem. Shotgun programming takes many forms:

  • If the compiler says you're missing a parenthesis, throw in a parenthesis. Anywhere. If you're especially observant, you'll read the rest of the error message and throw it in on the line the compiler mentions. Then re-compile right away.
  • Same applies for any other syntax error: quotes, semicolons, braces, etc.
  • If the program compiles but gives incorrect results, change an expression or calculation.
  • If that doesn't work, add some more parentheses or braces. Or take some away.
  • Still not working? Add some more variables. You can never have too many.

But never, never actually analyze your code. That takes too much effort. Just make changes and re-compile!

link|flag
vote up 0 vote down

Code first, think later.

link|flag
vote up 2 vote down

If you start a new programming task don't jump directly into the code. Great programming starts on paper (or in the UML-editor if you wish).

Think before you code - it will save you a lot of time by not having to throw away solutions that didn't work out.

link|flag
show 1 more comment
vote up 1 vote down
  • copy and paste
  • ignoring error handling
  • using PHP
  • meaningless variable/function/method/class names
  • lack of comments/documentation makes it difficult to find out the intent of the program
link|flag
show 1 more comment
vote up 1 vote down

The number 1 thing I wish had been emphasized in school was design patterns. The std. Design patterns have given me a new perspective on OOP and I wish my college had presented it. I've also started to try to invent my own design patterns based on rules the book outlined (mentioned below).

That book is (I think it is great): http://oreilly.com/catalog/9780596007126/

Head First Design Patterns

Also, take a look at: http://en.wikipedia.org/wiki/Design_pattern_(computer_science)

link|flag
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 3 vote down

The one thing that has always been painful is failing to spend time designing the program before writing any code. I've regretted it every single time.

link|flag
vote up 0 vote down

No matter what approach you take to writing a program, it will likely take longer than you originally anticipate, especially when you are new to it. Learn to budget your time.

link|flag
vote up 0 vote down

I agree with many of the above, but I would like to add three more; the first from "Unix Principles" that were compiled back in the early days of computing which are amazingly pertinent to today. That is create each program to

Do one thing and do it well

Look at such things as grep or awk. Many programs today try to be all things to all people and they are difficult to figure out and probably horrible to debug. This does not mean that you have to apply it to the top level application, but apply it in functions, methods etc.

The second thing is

** Do some planning on paper before starting to write code, even if you have a hot idea in your head about how you are going to write it. **

The reason for this is that you will tend to think of modifications to the basic design as you are writing the code. This means that you have to step back and re-design some of the code that you have already written. A little design brainstorming will make the whole process go better.

Pre-factor before you re-factor

The third thing is: **

Don't use a database for just a few records of a simple data structure

**

If you are using a random access record file of say 10 or 100 or even 10,000 records of some simple structure that doesn't need to cross reference another database just "roll your own" random access file or use xml and then access the data through your own code. I have had to install database programs of different types just to handle some insignificant amount of data. Databases are great for businesses that have millions of customers and a lot of tables are involved that have to access one another. But they are bloat for a few thousand or less simple records of say "Name, Address, City, State, Zip code"

link|flag
vote up 0 vote down

Not getting an agreed requirements/specification document (or similar), signed off before writing any code.

It will kill your enthusiasm for coding rapidly when you discover that you have not hit the objective and have to re-write everything.

link|flag
vote up 1 vote down

Things to avoid to me :

  • Not putting comments in code, this behaviour can become a dead end faster then you can imagine
  • Avoid difficulties by writting an extended code that does the same : BAD! You better learn how to do it right the first time so the next time you'll do it well the first time and you won't have to refactor it.
  • Do bread programming, explication : No indentation in code, everything is at the same level. You MUST put indentation in your code to help the comprehension, and also for other peoples who might get their hands on your code

Things I encourage :

  • Don't be affraid of learning new technics, going further than what you learn at school will difinitely pay off on your grades
  • Have a problem? Google is your friend. You can, with the good keywords, nearly solve every problem you can encountered with google.

This is my first tought on it, I might add some stuff later ;)

Hope this help you ;)

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

Realizing that as a developer, you're going to have expectations placed on you to solve problems that you have no clue of how to fix. You'll never stop learning new things.

Runner up: Model-View-Controller (MVC).

Also-- get used to having weeks and even months worth of dedicated hard work completely thrown away by your manager b/c she decided to change direction on a project just before its deadline.

link|flag
vote up 1 vote down

Make sure that you get your code reviewed from your peers. It always helps!

link|flag
vote up 6 vote down

Writing code that's hard to read and needs lots of comments is a bad habit to avoid. Instead, you should write code that documents itself and doesn't need comments.

Here's an (artificial) example:

BAD:

if(!node.GetChildren().Size()){ // leaf node
  ProcessNode(node, false); // false means not internal node
}
else{
  ProcessNode(node, true); // internal node
}

BETTER:

bool is_leaf = node.GetChildren().Size() == 0;
if(is_leaf){
  ProcessLeaf(node);
}
else{
  ProcessInternalNode(node);
}
link|flag
vote up 5 vote down

Not programming deliberatly. Many programmers don't know what they are doing, they don't know why their code is working, and hence they don't understand when it suddenly doesn't work. Read "Pragmatic programmer" by Andy Hunt, it's full of good programming habits. This habit is from that book.

link|flag
vote up 1 vote down

Coding first

This may sound obvious, but coding before thinking through a task/problem beforehand is still more common than you'd think. It may even be behind the lack of useful comments in code - they're harder to add later, except maybe throughversion control.

I've itched this scratch and suffered occasionally from it with logic errors that cost more time debugging since the code give results but solves the wrong problem or in the wrong way.

I'm not saying you should contemplate universal implications or have a formal definition of things, . But, a simple diagram or checklist helps provide a mental model to revisit and confirm. Mind mapping tools can help for many projects, for design as well as collaboration and documentation.

In programming exercises for beginner students, I usually recommend that they transcribe or paraphrase the homework problem text to serve as comments for their code.

This reminds me of recommendations for checklists in operating rooms because they significantly reduce surgical errors and patient mortality.

link|flag
vote up 2 vote down
  • If you are doing something really special then it has 90% chance to be a hack. Don't over complicate simple things.
  • Use a pen and paper! Write down a short description of your original idea, then list the features one by one. Give priorities and schedules. After that you can use a UML program to design the components of your program. Only then code.
  • Read about top-down and buttom up design. Choose what's best for the language you use.
  • Don't relay on the internet as your only source of learning. Get books and read, they often elaborate more on your langauge.
  • Get to know well with the standard library of the language you're using. Don't re-do what's already done for you. It is probably done better anyway.
  • Take breaks between coding sessions, I often find that when I'm stuck doing something else helps a lot.
  • Sleep! Some coders tend to be obsessed to solve a problem when their code isn't working. While you're sleeping your brain still process thoughts and problems, just think about your problem before you fall asleep. I had sereval occasions where I woke up in the morning with the solution for a bug or a new feature that I didn't know how to implement.
  • Read about coupling, design patterns, coding standards.
  • Read blogs of programmers, you learn great things from first hand.
link|flag
vote up 0 vote down

Not writing unit tests for your code is a horrible habit to get into. Learn a unit testing framework for your language of choice and try out Test Driven Development for a couple of weeks you'll never go back. The tests help you design better APIs and actually change and improve your code without fear of breaking things.

link|flag
vote up 1 vote down

Also, trying not to blatantly repeat the many good ideas above

Avoid global variables. Write every with reuse in mind. Identify common patterns and implement them as parameterized routines.

link|flag
vote up 2 vote down

One terrible habit I still encounter in the companies I work for is the lack of will to extend their knowledge. Most programmers learn a specific technology and stay there. Don't evolve. Others think that the company should pay them to take a course to recycle their knowledge. I don't think that's the way to go. We, personally, must have a conscience that we need to continuous learn.

The bad habit is: don't ever stop learning!

link|flag

Your Answer

Get an OpenID
or

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