At Apple some of the engineers were supposed to report how many lines of code they wrote... One of them cleaned up a project removing 2k of code and put down -2000 as the number of lines of code he wrote. www.folklore.org
ouch.. line count is about the most useless benchmark they could have come up with.
sounds like my brothers coding though, when he's given someone's code, first thing he does is go nuts removing things that don't actually DO anything.. i've seen him strip a program to a third its size, and not lose any functionality.
and then the code didn't use either variable or variable1 anyways. bad enough they defined it, didn't initialize it, assigned variable1 to be it, and then defined variable1 to be 0 anyways...
no subject
Date: 2005-08-24 11:47 pm (UTC)i put down basically everything i did tiny job by job.
my brother did: "worked" every 15 mintues or so.
Not long after, we were told not to bother with them.
no subject
Date: 2005-08-25 01:53 am (UTC)no subject
Date: 2005-08-25 03:37 am (UTC)They were both let go shortly after.
I'm the remaining computer person out of 4, and the workload actually went DOWN, because now i'm not babysitting people above me anymore.
no subject
Date: 2005-08-25 07:05 pm (UTC)no subject
Date: 2005-08-25 07:38 pm (UTC)sounds like my brothers coding though, when he's given someone's code, first thing he does is go nuts removing things that don't actually DO anything.. i've seen him strip a program to a third its size, and not lose any functionality.
no subject
Date: 2005-08-26 01:50 am (UTC)no subject
Date: 2005-08-26 01:55 am (UTC)dim variable as int
...
variable1 = variable
variable1 = 0
and then the code didn't use either variable or variable1 anyways. bad enough they defined it, didn't initialize it, assigned variable1 to be it, and then defined variable1 to be 0 anyways...
he sees a lot of stupid code like that.
or something like (again, from vague memory)
dim canadiantous as whatever
...
canadiantous = 1
if currency = "us"
variable=variable * exchangerate
else
variable=variable * canadiantous
endif
why bother doing the canadiantous thing?
another part in a different Access database converted a currency value from US to canadian.
three times in a row.. back when the dollar was around 1.50 to 1.. couldn't figure out why everything was off by a factor of 3.5...