vote up 70 vote down star
81

I guess that many of you have read 7 habits of highly effective people. They're great, but still too general.

Can you suggest some good habits of a highly effective programmer? The habits that make you more productive in work? Faster in learning?

flag
40  
how could you link to something that uses the word synergize? :( – Zeus Apr 30 at 13:09
8  
"Synergize" is commonly regarded as an "industry buzzword" with little practical meaning/usefulness, so using (or advocating the ability to synergize) detracts credibility as an implied byproduct of too much marketing-speak. – Andrew Coleson Apr 30 at 18:35
6  
"Synergize" did become an "industry buzzword", but it does have meaning. it's a 1+1=3 kind of thing. I tell you my idea, you expand on it, which sparks ideas with me, which sparks ideas with you, etc... at the end of the day we're both better off for cooperating. I hate buzz words too, but don't let it blind you to it's value. – John MacIntyre May 12 at 23:57
5  
How does this have a bounty? It's not like there is a correct answer. – Zifre May 14 at 20:33
show 4 more comments

92 Answers

vote up 3 vote down

Social Life

link|flag
vote up 7 vote down

Use other ways to visualise a problem - I've lost track of how many times I've been stuck on something, or procrastinating about something complicated, and found that by just drawing a simple diagram or flow chart of the code I was able to quickly see what the problem was, or how I could improve my code.

I think the problem is that because I spent 8+ hours a day on a keyboard, I forget to pick up the pen/pencil next to me occasionally.

link|flag
vote up 9 vote down

Dig deep into the question when a client requests something. Don't assume because they ask for a program they actually NEED a program. Be willing to ask questions until you get down to the actual business problem they want to solve. Then look at ALL the possible solutions, including those that don't even require a computer.

Not every problem is a programming problem.

-R

link|flag
vote up 14 vote down

Keep in mind "80/20" rule and constantly ask your self: "Do I really want to do this that way?".

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

If you're interested in getting some books on general development best practices, I suggest these:

They're much quicker reads than some of the traditional best practices texts (Code Complete, I'm looking at you), and offer specific techniques that can help you improve.

link|flag
vote up 0 vote down

Adding to what has been said already...

  • don't add too much between compiles
  • check-in often when working on multi-developer teams
  • use CI and set a threshhold for code coverage and stick to it
  • understand how to build your code without the IDE, otherwise the IDE becomes a crutch
  • train yourself to spot reoccurring design patterns
  • learn the standard data structures and when to use them
  • don't be afraid to write your own utilities - even if you end up buying comercial solutions later
link|flag
vote up 6 vote down

I don't know if this qualifies as a habit, but communication is key to being an effective developer, imho. If you cannot communicate your ideas, intent, and even source code to other people, your skills will never be fully valued.

To get hired by a good company, work on a contributing team, and work on worthwhile projects, you need to be able to deal all sorts of different people.

Unfortunately, many of us, including myself, are the epitome of introversion. Effective developers seem to be able to conquer this.

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

split problems into smaller, more understandable tasks.

try to design a solution in your favorite editor about the problem before coding - get rid of the feeling that if you do not code you are not being productive

always have unit tests, its a life saver.

try to keep things as simple as possible, verify this by explaining your design to somebody else - doesn't even need to be a programmer!

never be afraid to ask questions

never assume anything whether it is assuming knowledge by manager or end customer

don't take verbal requirements, all requirements need to be written (even though they may change, it is good to have them written down to better understand them)

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

Don't have mercy to delete all your source code!

link|flag
1  
But don't go overboard: joelonsoftware.com/articles/fog0000000069.html/… – Runcible May 11 at 17:37
vote up 1 vote down

Habits? Okay, here are my suggestions for the 7 most important habbits of a programmer:

  • dont think too complicated

Most of the times a solution for a problem is much easier than u would expect. Try to find this easy way.

  • be critical to yourself and about your skills

If u stop being critical to yourself, u will stop making improvements.

  • accept your own mistakes, and try to prevent them the next time!

Everyone makes mistakes. Dont try to abadon them.

  • Use what you ahve learned

Just because u know that you should write comments, use principles like KISS or somethin else doesnt mean that u are a good programmer, until u do it.

  • be interested in new technologies

especially at the moment, its important to be interested in new technologies, if u are not, u wont be going on as a developer for too long

  • always have coffee near u if u are programming

very important. no coffee, no ideas^^

  • dont sleep too much

more than 6 hours of sleep are lethal for your programming skills :D

link|flag
vote up 13 vote down

Take ownership, willing to accept mistakes, positive attitude..

Follow principles like DRY, KISS..

Never stop learning..

link|flag
1  
DRY--that would be my #1, a programmer must be completely unwilling to duplicate himself--every copy/paste should feel like a knife wound in the shoulder. – Bill K May 16 at 4:58
show 1 more comment
vote up 0 vote down
  • Learn the tricks of the language, but do not be too eager to jump to a particular trick or design when writing code, try to find reasons for using that trick or design. What are the drawbacks of using that trick or that design?
  • Keep It Simple Stupid, is your code going to be readable with a simple glance?
  • Break up the feature into smaller simpler chunks where implementation will be easier
  • Refactor your code whenever you see the chance, less code is always better than more code
link|flag
vote up 14 vote down

“Try not. Do, or do not. There is no try.” - from my buddy Yoda.

link|flag
14  
That's the comment I put in empty catch clauses. – Joshua May 1 at 1:27
vote up 4 vote down

Be accepting of change

I've suggested several improved processes or ideas - like let's try to organize our Classes uniformly, or let's add security testing to our standard testing procedures. But I'm often met with a "we've always done it this way" or a "you can't expect everyone to follow that rule" response. Devs get stuck in their ways too often and it can bog down progress. Especially when people have some long-standing but out-dated techniques. For example, many of our projects continue to get developed in classic ASP, because "you can't expect everyone to learn .Net".

link|flag
vote up 13 vote down

Minus promitte, nivus perfice.

Loosely translated: under promise, over deliver. Your customer wants a widget that does x; promise him x, but give him X, a better, more configurable widget that solves a few problems that are related.

link|flag
1  
Just don't give him the documentation for the extended feature set until he asks you to extend it... then you can look like the wizard adding the extras when really all you've gotta do is write the documentation for those features... which you already have waiting on the sidelines to insert into the production documentation. – BenAlabaster May 11 at 17:41
1  
Most of the time, the customer will be happy with LESS than what they ask - they often don't realise just how much they ask for! – Arafangion May 12 at 22:49
show 1 more comment
vote up 0 vote down

nomenclature / language and terminology.

how you name your classes and methods / functions is a critical measurement for how well you yourself understand your design. AND how easily others will be able to interpret it...

|K<

link|flag
vote up 3 vote down

Be a pessimist

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

The 'original' 7 habits adapted for programmers...

Be Proactive: Take initiative, both in understanding and in problem solving.

Begin with the End in Mind: What problem are you solving? What is the best solution? How will you know when it is solved?

Put First Things First: Set priorities. Use good judgement. "Premature optimization is the root of all evil" - Knuth.

Think Win/Win: During design/collaboration, what is the best solution for all parties involved?

Seek First to Understand, Then to be Understood: First understand the problem and/or the person for whom you are solving the problem.

Synergize: Work with others to gain a greater understanding.

Sharpen the Saw: Always be learning. Learning about new technologies. Learning about the business, and the business of software.

link|flag
vote up 23 vote down

Don't assume it - prove it. In other words: don't base your work on assumptions. Make sure the foundation is sound.

link|flag
9  
Assumptions are only dangerous if they are not documented and brought out in the open. There will always be assumptions. – Robert Gowland Apr 30 at 17:14
show 2 more comments
vote up 18 vote down

Understanding that the answer is always "It depends".

link|flag
vote up 6 vote down

Learn your tools - especially the functionality in your IDE that will help you be more productive - the debugger, refactoring shortcuts, profiling tools. These are small investments which will pay off big in productivity.

link|flag
vote up 16 vote down
  1. Be fascinated in transforming problems into data structures and algorithms
  2. Check all available tools for every task, select only the best for your work
  3. Learn different programing languages and do the same in all of them for practice
  4. Understand that the computer is always right (this is the key for bugfinding)
  5. Make use of other people code but understand how it works
  6. Find something to balance your mind (like sports and art)
  7. Never accept that something "seems to work".. understand why it does! always!
link|flag
1  
ty for the correction. I am german and sometimes have a hard day in writing good enough english :) – OderWat May 2 at 14:31
show 1 more comment
vote up 48 vote down

Fix Broken Windows.

link|flag
7  
even when they are really boring to fix. – dr. evil May 12 at 13:58
vote up 6 vote down

Questioning your own solutions and looking for ways to do things better.

link|flag
vote up 24 vote down

From my experience:

  • Makes things work first
  • Refactors and keeps his code clean

And

  • distinguishes important things from trivial things
  • doesn't get lost in details
  • does the minimum to solve problems, does not produce exorbitant solutions
link|flag
vote up 6 vote down

Discuss what you have modelled/written/thought with others, even though (and most likely if) you are sure of what you did.

link|flag
vote up 68 vote down

Always willing and able to learn...

If you don't keep up with the times, you won't be a developer very long.

link|flag
25  
+1, either "you won't be a developer very long" or you will be a crappy developer for a very long time. – Brian Ensink Apr 30 at 12:44
show 3 more comments
vote up 110 vote down

Learn how to close SO and get to work...

Seriously though, working with a computer brings around a lot of distractions, and that is something I fight a quite a bit. One solid habit that good programmers have is that they work on focusing. I don't personally believe that this is easy for any programmer, so it becomes a habit that you have to embed in you.

link|flag
2  
That's very true! Damn, I need to get back to work... – John Topley Apr 30 at 12:36
87  
StackOverflow has been THE single biggest distraction from my job ever. – TheTXI Apr 30 at 12:38
3  
So true. Thank god for the 200 rep limit. :) – Emil H Apr 30 at 12:42
4  
i think we should work without internet connectivity !! – Yassir May 11 at 0:04
1  
I was going to say exactly that: I am so much more productive if I have to work without any internet connection, it's incredible... – none May 11 at 17:32
show 4 more comments
vote up 17 vote down
  1. Writes software with few bugs.
  2. Writes unit tests.
  3. Delivers code on time.
  4. Shares knowledge with team.
  5. Communicates well.
  6. ...
  7. Washes.
link|flag
4  
'Writes unit tests' should (and normally does) come before 'Writes software with few bugs' – Matt Lacey Apr 30 at 12:43
2  
+1 for Washes! Up until half a year ago I took this for granted. Nothing distracts more than an olfactory disturbance in the room. – pi Apr 30 at 15:14
vote up 49 vote down

Master use of Google. It's a programmer's best friend. The quicker you can find what you're looking for, the better.

Edited for clarification: What I was really getting as was the ability to be resourceful and self-sufficient. Google is just the first tool that came to mind. I wasn't implying that one should use Google to build their application, but, as an example, the ability to find a specific snippet of code quickly can come in handy on a few occasions.

link|flag
2  
is it jus me or are 50% of answers = Google Oo – n00ki3 Apr 30 at 12:34
41  
I don't know. You should Google up some statistics. – Grant Apr 30 at 12:52
4  
You don't get maintainable code just by using google. In my experience, bad maintainability is the main reason why productivity becomes really poor. Google "has" all the answers, but you have to know what you are looking for, so you almost know it yourself and just look up the details. – Stefan Steinegger Apr 30 at 13:02
2  
I would add that being able to find resources by yourself makes you a better asset in general. The real skill in using code out in the wild is being able to evaluate that code and to graft it into your codebase. Anyone can copy and paste. – Min Apr 30 at 14:56
1  
If Google makes your application, than it's poor programming! Hopeless, I would say! – DaDa Apr 30 at 16:47
show 3 more comments

Your Answer

Get an OpenID
or

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