vote up 69 vote down star
80

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

1 2 3 4 next
vote up 139 vote down check

Don't be satisfied with an apparent fix; full understanding is the standard.

link|flag
7  
Absolutely, if you can't explain it or don't understand what caused it and where in the code, you didn't fix it! – torial May 2 at 2:30
show 6 more comments
vote up 108 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
85  
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 86 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 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 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
vote up 47 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 31 vote down

close and kill any e-mail reader program/clients

that really saved lots of time

link|flag
1  
and cut off your network , phone and cellphone , close and lock the door(if you have a separate room), wear your earphone and start learning/coding! – linjunhalida May 1 at 8:04
show 1 more comment
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 22 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 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 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 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 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 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 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 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 12 vote down

Don't overengineer

Edit: For me, it means, don't overdo something. Make only what's needed to be done and trust yourself for the future. Also, keep the complexity at the bare minimum. For example, don't use interfaces or proxy or whatever pattern you have on your mind on a beautiful day just for the sake of it. Keep it simple !

More info: SO: overengineering-how-to-avoid-it

link|flag
2  
Blade: This really needs more elaboration, not just a link, as good as that link may be. – Arafangion May 12 at 22:47
show 2 more comments
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 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 8 vote down

Produce Value

Don't spend time working on something that doesn't have business value. For example, doing something in the latest fancy technology just because you want to, when there's a quicker way to achieve the same result with well understood tools. Note, I'm definitely not saying don't make progress and don't move forward.

Effective programmers don't get carried away with the technology and the means of producing something as a thing in itself, they get excited about actually producing something that's of high value to someone.

Focus on this, and objectively reflect on whether you're currently doing the thing that will produce most value. Programming takes a long time, so there isn't time to waste working on something that isn't the most useful thing you could be working on!

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 7 vote down

The best habits of highly effective programmers have nothing to do with programming. People assume that programmer's grow by learning new algorithms and languages. This is true to an extent, but let's not forget that problem solving is the basis for our entire profession. In my opinion, the best habit of a highly effective programmer is to be well rounded such that they can learn how other people solve problems that are unrelated to the programmer's field. Get out and take photographs, learn an instrument, become an arm-chair nutritionist. There are many things that we all can do that will help us grow in ways that we would other wise have not found.

link|flag
vote up 6 vote down

Obligatory Programmer-Fiction References - Caffeine and Hot Pockets

Serious/Semi-Serious Answers - Never willing to settle for what you know at this very moment.

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 6 vote down

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

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