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

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

Social Life

link|flag
vote up 0 vote down

Participate in problem solving, analysis, and brainstorming with other programmers. This is so important, and why Stackoverflow is actually GOOD for your productivity.

Another thing I'm not seeing in the replies... Write tests. I don't always follow strict TDD or BDD practices, but writing tests helps you understand the code better, and it will absolutely find problems in your code (that you thought was solid.)

link|flag
vote up 0 vote down

Don't try and fix every bug. Pick your battles.

link|flag
vote up 3 vote down

Highly effective programmers create maintainable products that other people like and purchase.

link|flag
vote up 0 vote down

Maintain a desk/workspace that suits you. Whether this means a pristine desktop or piles of notes and books everywhere, the physical environment that you work in is very influential to how you do work.

link|flag
vote up 13 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 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 1 vote down

Create a comfortable work space that suits you. Whenever you don't feel like working do something else that cheers you up and brings your inspiration back.I don't know maybe you should take a walk, drink some coffee, talk to somebody it's up to you. I think this is the most important habit one should have on their minds. Because at some time you feel like not working at all if you don't do anything about it time will pass by and your work day will be over without doing anything worth in the office.

link|flag
vote up 1 vote down

Can code without a mouse, and know a lot of tips/hotkeys to use his operating system 2 or 3 times faster than a basic user.

link|flag
vote up 1 vote down

If you mean productive too, there are a lot of great tools. Two Windows tools that I use:

I would recommend The Productive Programmer as well. See, all the way to program, from starting the SO to the IDE can save you time and make you much more productive. Cant imagine working without multiple clipboards.

link|flag
vote up 0 vote down

Either be Jeff Atwood, or read his blog: http://www.codinghorror.com/blog/

Long footnote: Jeff Atwood is a creator of Stack Overflow, but I've been reading his website long before SO came into being. The things he discusses, and the way he presents them, provide for the best representation that I'd give to anybody who asked "what should I be doing?"

link|flag
vote up 0 vote down

Only a lot of refactoring and Unit tests can save your soul.

link|flag
vote up 1 vote down
  1. Theory - every day learning.Don't think like some people - I did enough of learning, now its time for pay day.If you don't learn every day, even the stuff distant from your main job, you will not understand the big picture of things, u will become borred and will start thinking in patterns.

  2. Try to be open minded. If X people did it one way, that doesn't mean that way is OK. It might be OK, but there can be better solutions. 1) is the double bladed sword - too much theory can make a man to think in patterns.

  3. Automate If you have to repeat things 3 times, don't. Make a program. What program, what language, that depends on 2) and 1)

  4. Don't underestimate newbies. Sometimes n00b can give you better advice then a pro :)

link|flag
vote up 2 vote down

I don't see these 3 very basic skills mentioned here in this order:

  1. Listen
  2. Understand
  3. Think
link|flag
vote up 1 vote down
  1. Always Comment! The more green, the better. Even if something is obvious, comment it anyway!

  2. Always test, even the smallest and least signifigant change. When testing, do unexpected things, like purposely hitting the wrong key or misclicking.

  3. Visio is your best friend. Chart out and diagram everything. If something needs to be changed later in the program, you should be able to visually see all changes that will be affected.

  4. Program lasagna code, not spaghetti code. Layer everything. Create your program so that a piece of it could be taken out or changed without affecting anything else in your program.

  5. Do not overengineer. If you find yourself using wierd loops or lots of nested IFs or that 4 letter 'G' word, "Goto", then you may want to rethink your logic.

  6. Do not obfiscuate your code by trying to make shortcuts. Once upon a time, computers only had like 4K of memory and compact code was essential. In this day and age, computers have plenty of RAM and hard drive storage. Do not try to "compact" your code or take shortcuts to programming.

  7. Write software, but do not write a software manual. OK, not literally. This may sound nuts at first, but the point is, make your software so intuitve that a manual is unnecessary. Put yourself in the customer's shoe. What would a really stupid person do?

link|flag
1  
Re. commenting: pointless comments that repeat the code add no value (and are just extra work to maintain). Explain why in comments, and if not needed don't comment. – Richard May 13 at 21:29
1  
commenting should only be done for things that can not be put in the code itself. Proper naming of variables (and intermediate results) can REALLY get you far. – Thorbjørn Ravn Andersen May 13 at 22:03
show 1 more comment
vote up 0 vote down

If a Windows user, DITCH, FORGET, ABANDON Windows Explorer. Start using a tool like Total Commander. "Total Commander is a shareware Orthodox File Manager (OFM) for Windows. Some features include a built-in FTP client, file compare, archive file navigation, and a multi-rename tool with regular expression support." (wikipeida)

I curse every moment I have to spend looking at fellow developers while they switch between a dozen of WE windows, drag-and-dropping, right-clicking, figuring out how to get simple tasks done (like looking inside a JAR file or previewing the contents of ANY file, etc...). It takes them forever to achieve what I can get done in seconds. And on countless occasions, my colleagues barely noticed when and how did I do dis-or-dat. "Neat," is what they say when I show them how effective I can be with TC.

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

Try to solve problems in the clearest, simplest way.

Don't waste time prematurely optimising. Only optimise something after your program is proven to be too slow and your profiler has isolated the root cause.

Comment everything you do clearly. You'll thank yourself a month later when you have to revist the code and work out what you did!

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 1 vote down
  • Keep things simple. Design patterns are guidelines not instructions.
  • Use source control for everything and check in early, check in often
  • Start you unit test project on day one. Don't leave it for version 2.
  • Code reviews - at least one hour twice a week even on a small project. Either online (using telephone/in person) or offline (e.g. using a tool like crucible)
  • Exception handling is for errors not a replacement for if statements
  • Profile your application regularly for performance hot spots.
  • Keep your coding standards simple and written down so they can be given to a new team member on day 1. Enforce them even if you don't always agree with them!
link|flag
vote up 2 vote down

Programming is about...

Keeping track of all the details

While programming you will see things in the code base and think about things that, if you tend to them there and then, would distract you.

This can be anything: telephone numbers to call, noting that a class needs refactoring or bug fixing, the next three things to do, test data, file names you also need to check, and what to talk about in Scrum.

These other things are important, but it's also important to complete whatever you're doing right now.

Keep track of all these things in a journal / a todo list / a scratch pad / a notebook / whatever.

This can be as simple as a text file where you separate your notes with some newlines. Actually, the simpler the better. Key here is the ability to extremely quickly offload your thoughts so you can come back to them later.

Sometimes this isn't the right place or format to store this information, but it's important to have a default place to write things down. You can always move it to a Wiki, shell script, document, source file later on.

The same way of working can be used for shell commands, SQL statements or anything else that would be more effort redoing the next time you need it. You're essentially cheating by copying the solution. From yourself.

Personally I use Emacs org-mode which, amongst other things, is an outliner. This way I can very easily keep track of which things are todo, just idling, and done. I can easily keep the important things expanded and visible, and hide things thath are irrelevant at this point, or already done.

link|flag
vote up 0 vote down

Know thy libraries - designing towards and using preexisting functions will increase the productivity and reduce the likeliness of bugs, just make sure that the libraries are good, and you've read the All the related the doc Before.

link|flag
vote up 0 vote down

Make it go, then make it better.

Avoid premature optimization.

Comment as you go along.

Use unit tests.

Each building block needs to be solid before integrating it.

When integrating add one thing at a time.

When debugging change one thing at a time.

link|flag
vote up 0 vote down

IMHO, in addition to all the above given tips like - keep up to date on technologies and trends, change of attitude (keep the end in mind before you start). I strongly suggest a time tracker tool plus a few simple diversion techniques (read Browser addons) to keep one from being distracted by the whole plethora of sites we are addicted to.
I have used Manic time tracker available here (which tracks all the windows and applications you have been working on throughout the day) and to tell you the truth - I was really shocked to see how much time goes to drain in my typical work day. In addition to this - I use simple scripts like "Take a Break" for GMail (another of my addictions) to keep me on track.

link|flag
vote up 0 vote down

Set up a black list for time-wasting web sites.

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

According to this article, heavy drinking is something every programmer should practice regularly.

link|flag
vote up 2 vote down
  • Planning
  • Take notes
  • Not putting things off
  • Be interested
  • Overdocument
  • Listen to other people
  • Have perspective
link|flag
vote up 0 vote down

Learn something new everyday. When you don't have time constraint, try to use a new tool to do the job. Use the right tool for anything else. Find a proof that it is the right tool.

Don't take for granted that your code is foolproof. You don't and can't know all.

The only advise that I should give is accept that programmers have flaws. Just hope that your team doesn't have the same flaws. And work on it.

Reread the 7 (now 8 habits)

link|flag
vote up 2 vote down

Some of the habits posted so far are fantastic. Here's mine:

Take mental breaks and listen to the perspectives of other programmers.

There's a scene in the movie Pi where the character Saul, an old mathematician, describes the story of Archimedes wrestling with the problem of measuring the mass of gifts given to the King to determine if they have real or fake gold in them. Frustrated, his wife tells him to go take a bath and relax. Archimedes takes a bath and solution occurs to him while soaking in the tub. Displacement of water can measure mass. He famously shouts "Eureka!". Saul finishes the story and asks the other character, Max, what the moral of the story is. Max replies: "that a breakthrough will come". Saul replies "Wrong! Listen to your wife, she will give you perspective! You need to take a bath!".

In other words, brute force rarely works well on finding the solution to vexing problems, but taking a break and discussing the problem with other folks, or even discussing something else, can do wonders for the background processes of your brain.

Many programmers here would agree there are diminishing returns to working extremely long hours and killing yourself while trying to be the hero programmer. Sometimes you just need to take a bath :).

link|flag

Your Answer

Get an OpenID
or

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