vote up 3 vote down star
1

Has anyone ever heard of developers being paid per line of code written?

A friend tells me that many were paid this way in the 60s and early 70s.

I was around then, but have to admit that I've never heard of such a thing.

flag
I understand all the discussion about the silliness of it all, and I agree. But does anyone know of an actual, real case where developers were "paid by the line"? – Joe Strazzere Nov 18 '08 at 20:59
I've only heard of it in Daily WTF – Cameron MacFarland May 29 at 5:49
Just wanted to ask the same question. xD – Arnis L. Jul 22 at 20:05

20 Answers

vote up 0 vote down
$ rails webapp

and that's $5,128 please...

link|flag
vote up 0 vote down

Hmmm, choosing right metric for the coders workload is still not solved problem, yet. Some employers are paying per features, some perfer per hours. I would pay per KBs if there were no such (useful) things as comments and long identifiers.

link|flag
vote up 2 vote down

You all may laugh, but I remember the days when IBM evaluated their developers based on the KLOC's metric (that's thousand lines of code). They didn't necessarily get paid by the line, but that was one of the metrics that they used to determine how productive each developer was being.

This became fairly infamous in the development community for a number of years afterward as the stupidity of it all began to become apparent ... even to the MANAGERS!

I can laugh at it now, but I get a shudder when I think that there are still people who think this is a good idea.

link|flag
Yeah, IBM lead the way in function points, a significant improvement in program size, but isn't easily automatable... – torial Nov 18 '08 at 21:51
vote up 0 vote down

One of my developers once asked, jokingly, if he could be paid for lines of code developed. I had told him, also jokingly, that it wouldn't be a problem if he didn't mind taking a pay cut based on his defect rate.

On of the IT Directors at a company I used to work for had mentioned getting paid per-line. Of course, that probably was in the 60's to 70's timeframe and was related to COBOL reports that he was generating.

link|flag
vote up 0 vote down

aha... and you can make even more money then...

for
(
int
i
=
0
;
i
<
10
;
i
++
)
{
printf
(
"%"
"s"
"\n"
,
"t"
"h"
"i"
"s"
" "
"i"
"s"
" "
"a"
" "
"s"
"t"
"u"
"p"
"i"
"d"
" "
"m"
"e"
't"
"r"
"i"
"c"
)
;
}
link|flag
vote up 0 vote down

Actually this would explain a lot about MS Widnows.

link|flag
vote up 3 vote down

@Paul Tomblin

for 
(
int
i
=
0
;
i
<
10
;
i++
)
{
printf
(
"%s\n"
,
"this is a stupid metric"
)
;
}
link|flag
You could improve this with concatenation of strings. :) – Arnis L. Jul 22 at 20:11
vote up 0 vote down

i once, in mid 90's met a customer that was so full of air, (thinking his std-def video capture cards were usefull instead of scanners, or claiming he would wire them with a radar to 'digitize' ship operations...) anyway, he boasted that he'd love to hire me, and pay US$2 per line, "like they all do on developed countries" (i'm peruvian).

he soon retracted when i did the first assignment in 3 days and roughly 960 lines (mostly C code, and some Bison). if he had kept his word, it would be more than i earn monthly today!

i showed him the code, and walked away. glad to never see him again.

link|flag
vote up 2 vote down

It would definitely encourage use of StringBuilder more often for String Concatenation:

Paid by the program @ $5 per program:
Console.Write("Good Morning " + name.ToString() + ", how are you?");

($5 earned)

Paid by the line @ $1 per line:
StringBuilder sb = new StringBuilder();
sb.Append("Good Morning");
sb.Append(" ");
sb.Append(name.ToString());
sb.Append(", ");
sb.Append("how are you?");
Console.Write(sb.ToString());

($7 earned)

If anyone asks... tell 'em: "Well... duh... Strings are immutable so this way's more efficient. < cheeky grin >

link|flag
And, of course, the more efficient way is not - the compiler will create the string builder code for you in the first version and the byte code will be nearly identical in both. – Software Monkey Nov 18 '08 at 20:07
vote up 1 vote down

If this was the case, Visual Basic would have turned out to be the dominant language of .NET instead of C#... (ducks brick thrown)

-Oisin

link|flag
vote up 3 vote down
for (
  int i = 0;
  i < 10;
  i++)
{
  printf(
    "%s\n",
    "this is a stupid metric");
}
link|flag
vote up 11 vote down

You

owe

me

five

dollars

link|flag
vote up 10 vote down

This isn't about paid lines of code, but it does reflect the value lines of code had:

-2000 Lines of Code

link|flag
1  
Great link. He should've entered Math.Abs(-2000); – Atomiton Nov 18 '08 at 19:00
vote up 1 vote down

IIRC, Jon Bentley makes a slightly flippant reference to this in 'Programming Pearls', although I'm not sure if that was a quip or not.

On a more serious note I have seen this being used as a metric a while back even though it should really be used as an inverse metric IMNSHO. I believe Joel mentioned this before, but every performance metric tends to be gamed (especially by geeks) sooner or later and LOC is a particularly bad one to start with.

link|flag
vote up 0 vote down

Not exactly, but I HAVE heard of monitoring of keystrokes as a measure of productivity.

Word is, the developers wrote scripts to simulate keystrokes and up their score!

link|flag
vote up 8 vote down

I have always proposed one get paid for the lines of code removed.

link|flag
Some languages allows to write everything in one line. xD – Arnis L. Jul 22 at 20:10
vote up 12 vote down

Origins of SLOC

At the time that people began using SLOC as a metric, the most commonly used languages, such as FORTRAN and assembler, were line-oriented languages. These languages were developed at the time when punch cards were the main form of data entry for programming. One punch card usually represented one line of code. It was one discrete object that was easily counted. It was the visible output of the programmer so it made sense to managers to count lines of code as a measurement of a programmer's productivity. Today, the most commonly used computer languages allow a lot more leeway for formatting. One line of text no longer necessarily corresponds to one line of code.

http://en.wikipedia.org/wiki/Lines_of_code

link|flag
vote up 0 vote down

A friend of mine had performance targets to reach, and the manager decided lines of code would be the best thing to measure. The problem was, it was this year!

link|flag
That's one way to get the developers to comment their code! – Paul Tomblin Nov 18 '08 at 18:33
vote up 0 vote down

My goodness. If that ever existed, just imagine how horrible that would be.

We should be implicitly paid to have code be as efficient as possible, not to encourage MORE code!

That's also like being paid to Type...paid by the word.

Just imagine if a novelist were paid by the word, instead of the work!

link|flag
uh...most magazines pay by the word... – Steven A. Lowe Nov 18 '08 at 18:24
to be fair, there's usually a limit. – Bedwyr Humphreys Nov 18 '08 at 18:24
and they used to be... hence Moby Dick's length – warren Nov 18 '08 at 18:25
We are not columnists. – Ed Swangren Nov 18 '08 at 18:28
I once read that Dickens was paid by the word.... – Thomas Owens Nov 18 '08 at 18:29
show 1 more comment
vote up 5 vote down

hah! if so, it should be a negative amount

link|flag

Your Answer

Get an OpenID
or

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