vote up 4 vote down star
2

Ok, the question is usually, how can one measure a programmer's productivity.

But I want to put a slight twist on the question. How does one measure one's own productivity when coding? Do you measure yourselves by problems solved, questions answered versus asked, or the dreaded "lines of code"?

flag

7 Answers

vote up 2 vote down check

The right measure is the accuracy of delivery vs. prediction. If you say that you will deliver X features by Y date at Z cost, the variance of actual X, Y, Z is what measures your quality as a programmer.

Whenever you make a commitment to someone, write it down, then go back and look at how accurate your commitments and estimates are. Refine your process to make them as realistic as possible.

link|flag
vote up 7 vote down

This is one of the banes and unsolvable problems in our profession. It is a landmine and quagmire.

The real measure is the quality of the product - and that can take years to evaluate.

There are so many problems with lines of code or other measurements. Developers, knowing they are being measured by some metric, will produce for that measurement.

This is not ideal. Lots of lines of code is NOT good compared to fewer lines, but if you are measured by lines of code you will produce lots of lines of code.

Very early in my career I asked my manager about when I could feel like I could go home - basically your question of productivity.

He said to me something like:

"If you feel you accomplished something - then it was a good day"

link|flag
3  
Landmine + quagmire = quagmine. It's a quagmine! – JS Bangs Jul 21 at 19:00
I meant minefield. Now I can't edit and fix it... – tim Jul 21 at 19:21
vote up 2 vote down
  • "WTFs per minute" of code review (one looks at a part of the code and doesn't get what it does)
  • bug count (time spent redoing stuff that should be done)
  • LOC (bad one, though)
  • test coverage (and quality, if possible)
  • client satisfaction (that's what brings more money long term, right?)
link|flag
vote up 2 vote down

I measure by the done things that come back to haunt me. The less the better.

link|flag
vote up 1 vote down

You might want to see the answers to this question What is a fair productivity measurement technique for programmers?

Also take a look at books like Peopleware (or indeed anything by Tom DeMarco) - measuring productivity of knowledge workers is inherently difficult.

link|flag
vote up 1 vote down
  • Lines of code
  • Number of check-ins
  • Hours in the office
  • WTFs per minute
  • Number of daily page visits to stackoverflow.com
link|flag
Are visits to stackoverflow.com good or bad? A high count could be that the developer is a slacker and never does any real work, or it could be that she is highly motivated to improve her knowledge and skills. – Paul Stephenson Sep 21 at 13:36
@Paul - I would say your analysis is correct. My original thought was your first argument i.e. you can't simultaneously be doing work and browsing SO, but yes if you log on every once in a while during your downtime then I would say that makes you even more productive. – John Rasch Sep 21 at 14:53
vote up 0 vote down

In defense of lines of code... Maybe we could say, productivity is directly proportional to the lines of code you create, given that the lines are all necessary and not superfluous. Like, nothing can be removed.

But that type of statement defeats the easiness given by counting lines of code.

link|flag
lines of code is a useful metric to measure the product (how much maintenance, how much testing, where defects are, etc) but it is a nightmare if you want to attribute them to developers/people. – tim Jul 21 at 19:39

Your Answer

Get an OpenID
or

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