vote up 172 vote down star
194

What are in your opinion the worst subjects of widespread ignorance amongst programmers, i.e. things that everyone who aspires to be a professional should know and take seriously, but don't?

flag
11  
I've just seen the word "single" in the question. Does that mean I shouldn't have submitted 5 answers (so far)? – Jon Skeet Jan 8 at 13:17
89  
@ Jon Skeet - That would be the pet peeve of coding a solution before understanding the requirements? – Dan Malkinski Jan 8 at 15:08
22  
Of course we all know that when Jon Skeet codes the requirements re-write themselves to match his output. :-) There must be a bug in SO because the question hasn't changed... – Dan Malkinski Jan 9 at 17:07
2  
@Dan Malinksi: but is has, look again ;) – Joel Coehoorn Jul 10 at 15:12
2  
Just being a pedant, but if it is a 'peeve', surely the word 'favourite' is a bit misplaced – lagerdalek Sep 23 at 19:26
show 7 more comments

189 Answers

prev 1 2 3 4 5 7 next
vote up 42 vote down

I am a programmer and I do not need to know how to write a gramatically correct email. I also do not need to communicate with a customer on the phone - it is someone else's job. The only skills that matter are related to programming and nothing, nothing else.

Hate this!

link|flag
6  
what do you mean about grammar it doesn bother me atall – JasonFruit May 22 at 20:20
show 4 more comments
vote up 41 vote down

Programmers who build XML using string concatenation.

link|flag
6  
Start with an infinite lazy string and remove the characters you don't need. – Pete Kirkham Jan 20 at 22:53
1  
@Greg D: I hope you fixed it to use XmlWriter or another XML API. "XML is not String - note the difference in spelling" is a good motto. – John Saunders Mar 15 at 10:09
1  
+1! I'd add to that and say "Programmers who build Javascript, SQL, HTML, or any other 'plain-text' content" as well. – Jacob Jun 20 at 23:12
show 5 more comments
vote up 41 vote down

Believing that catching and ignoring exceptions means preventing a bug. In most cases the exception means that there is a bug in the code. Ignoring the exception is just like looking the other way. This is especially true if the code catches the base class Exception.

Or to put it another way: some people seem to be more willing to let the application continue in a undefined and possible illegal state than accepting the fact that there's a bug in the code, which should be addressed.

link|flag
1  
This is acceptable if the data is transient or unimportant - for example I have a program that analyses the "differences" in motion between two webcam frames. I doesn't matter if I don't do anything when I catch the exception when one of the pixels goes wrong because I don't necessarily need every single pixel correct. – Callum Rogers Jul 27 at 10:39
1  
@C Rogers: I should have stressed that this is often done by catching all exceptions and ignoring them. There are situations in which you may catch one or few specific exceptions and ignore those. I'll reword my answer. – Brian Rasmussen Jul 27 at 11:07
show 5 more comments
vote up 34 vote down

Quickly writing really bad code that works, with a plan to refactor later... when it's done e.g. 100 lines of a function that "i will break into 5 smaller later".

If you do that and then try to refactor after it's working, you usually find yourself in a situation when there are two ways: write it all again (because it's too hard to refactor to really nice code) or leave it this way because it's working... and in many cases it's just left in its crappy version.

link|flag
show 2 more comments
vote up 33 vote down

Ignorance of socially acceptable bathing habits.

link|flag
vote up 31 vote down

My pet peeve is developers who religiously attach to their language of choice.

As a practical matter, being a professional developer these days (in almost every space, not just web developers) should mean you are multi-lingual and capable/willing to explore other technologies. If you know your favorite language(s) well enough, you should also know where their limitations lay, and attempt to explore other options, instead of hammering a square peg into a round hole. A senior development position (or really, any development position) should come with the expectation that the developer can adapt and learn to fill the role as needed.

This is not just true of languages, but other technologies (app servers, frameworks, etc) as well.

link|flag
5  
+1 Dogma is a pet peeve of mine in all parts of life. Dogma makes you intellectually lazy and inflexible. – jcollum Jan 20 at 22:36
show 2 more comments
vote up 31 vote down

This is a real, live, production example that I uncovered in code that I needed to maintain in my professional capacity.

I printed it out and kept it on my wall as a trophy for some time.

function isValid(form){
    if(checkUser(form.username))
    {
//        if(checkPass(form.password))
//        {
            if(checkName(form.name))
            {
                if(checkCompany(form.company))
                {
                    if(checkCompany(form.email))
                    {
                        if(isNotEmpty(form.phone))
                        {
                            if(isNotEmpty(form.address))
                            {
                                if(isNotEmpty(form.city))
                                {
                            //        if(isNotEmpty(form.state))
                            //        {
                                        if(isNotEmpty(form.zip))
                                        {
                                            if(isNotEmpty(form.country))
                                            {
                                                if(isNotEmpty(form.url))
                                                {
                                                    if(isNotEmpty(form.payto))
                                                    {
                                                        if(checkForm(form.terms))
                                                        {
                                                            if(checkForm(form.spam))
                                                            {
                                                                //alert("Thank you form is processing");
                                                                return true;
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                   // }
                                }
                            }
                        }
                    }
                }
//            }
        }
    }

    //alert("processing failed");
    return false;
}
link|flag
8  
the true icing is the carefully commented close braces. – TokenMacGuy Mar 19 at 1:22
7  
Especially since, despite the obvious care taken, the outer set of commented braces doesn't match. – chaos Apr 30 at 20:51
3  
AAAAAAAAAAAAAHHHHHHHHHHHHHHH!!!!!!!!!!!!! – MusiGenesis Aug 28 at 16:38
1  
Oh my word. This could almost pass for obfuscation. – Kyle Rozendo Aug 30 at 20:48
2  
You sir, are a prince amongst men for not quitting on the spot. – SnOrfus Sep 2 at 19:06
show 8 more comments
vote up 30 vote down

I'm surprised by how many professional programmers are weak in math. Growing up I just thought that being good at math was a prerequisite for the job. Everyone I knew who was interested in computers was also good at math, so I just made a mental connection without realizing it.

link|flag
13  
I SUCK at math. It's WHY I am a programmer. I get the machine to do the math for me. – Genericrich Jan 11 at 6:15
13  
I must disagree here. There is no rule that says your math skills must be excellent to be a proficient programmer (or even an excellent one). I'd say that a logical mind, a keenness for problem-solving and patience have been far more valuable for me than mathematics. – Dave R. Jan 11 at 16:08
8  
I'll second this one, and add that I can't stand people who are proud of sucking at math. Those people end up producing convoluted or plain stupid solutions to problems which would benefit from a little mathematical thinking. – Rob Jan 17 at 7:32
8  
@jcollum: Logic is a branch of math, and you just needed to use it to try and declare that you don't need to use it. – Bill the Lizard Jan 28 at 3:15
5  
In 30 years of programming, I've needed very little math. But the last time was in a job interview - I've been told I can't code because I couldn't combine the properties of the integers with positional notation and permutations - all of which have been useless to me for 30 years. – John Saunders Mar 15 at 10:12
show 10 more comments
vote up 30 vote down

When a developer has no idea how to set up their own machine.

I've worked for a few companies now where a programmer is hired and the machine they are given is generic so it needs Visual Studio, SQL, etc. set up on it. Even when handed install media and/or a place on the network to get the installers from, many developers cannot figure out how to install the tools they need or have no idea what they need to install.

Worst case scenario this is proof that you have hired the wrong person, best case scenario they're actually a brilliant programmer who just so happens to have never had to install their own tools before. It pretty much cements the idea that they don't code at home.

Some of this though could be because I'm a snot who doesn't trust others to set things up right

IT: "So, what all do you need installed on this thing?"

ME: "Please just let me have the machine already, I'll put what I need on there"

link|flag
1  
It depends on where you work. When I first started my job, I sat around for the first day doing virtually nothing because I had to wait for the IT guy to come around and install all my software. I would have been happy if he had just left me the media and let me do it!! But the media is sacred, I guess, not just anyone is allowed to touch it! – Chris Dunaway Jul 27 at 14:49
6  
Never mind installing the software. The first company I worked at, the IT guy gave me a motherboard, a dirty cream IBM PC/AT case, 8 MB (!) of RAM, a mouse/keyboard with dust on them, and pointed at a shelf with some old hard drives on it... I ordered another 8 MB so I could try out this new "NT" thing. Also I treated myself to an 80 MB (!!!) harddrive. Kids today, you've no idea what it was like. – Earwicker Jul 29 at 11:20
show 3 more comments
vote up 29 vote down

Use of inheritance when composition or external functions are more appropriate

(I would have thought someone else would have brought this up by now, but I browsed through the four pages already up and didn't see it - apologies if I missed it.)

It is still so common to see someone think along the lines of, "I need a string that also lets me do X", so they inherit from string and add their X method.

Or, I want a queue class that works in a multithreaded environment. Inherit from Queue (or whatever you have) and added overloads that aquire and release locks.

In the first instance it is more appropriate to have an free function (or static a method in languages that don't have free functions) that takes the string as a parameter (along with any other parameters) and work with the public interface.

In the second, write your threaded queue as a new class that contains the raw queue class, and expose the interface that is appropriate. Sometimes this involves a lot of forwarding methods - but that in itself should not be the reason for chosing inheritance.

Inheritance should be reserved for the case where your new class has a superset interface (could be the same), and for callers who only see the static type of the base class the behaviour should make sense (so it is substituteable in the Liskov sense). Furthermore, at least some (some would say all) of the method would necessarily depend on some of the protected state/ interface. That is - if you could implement all new methods using only the public interface, you are not changing the behaviour of existing methods for base class clients, and no new state is introduce, why do you need to inherit?

As an aside, some languages support constructs such as C#'s extension methods, which can also be more appropriate in some cases, and also open to mis-use - but that's another subject.

link|flag
show 2 more comments
vote up 28 vote down

One of my biggies is that many programmers don't understand internationalization. Even when an app is supposedly built with it in mind, it's usually not done right.

  • There will be string concatenation to form sentences that might work fine in English, but the word order is wrong in other languages (should be using some kind of templated substitution). Or they'll blindly add "s" to the end of a word to make it plural -- that doesn't even work well in English, much less other languages.
  • They'll support multiple currencies (and currency symbols), but assume the decimal marker is always a period or that the currency symbol always goes at the front of the number.
  • Dates will be written in an ambiguous order (usually the American way of month/day/year).
  • I know I've seen more of these, but I can't think of them right now... maybe I'll edit it as I think of them.

I didn't have time to read more than the first page of answers, so please pardon me if this is a duplicate.

link|flag
2  
2009-06-18T23:06EST – Ape-inago Jun 19 at 3:06
vote up 26 vote down

Inability to take pride in making mistakes. Instead of simply admitting them and moving on, people go to great lengths to cover their tracks.

Mistakes happen. If you meet a "senior something", then that means (before anything else) that this person has made a whole lot of mistakes and learned from them.

So a few years back, I made the hard decision to stand tall for my blunders and it has worked pretty well so far. When I can't find a bug after staring at the screen for more than an hour, I admit defeat and ask a colleague. This helps to avoid creating a bigger mess by "fixing" the bug by hiding it behind a new one.

"He who asks a question is a fool for five minutes. He how doesn't ask a question stays a fool." -- Old Chinese proverb

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

The web is stateless and the browser isn't part of your app.

I find a lot of programmers get caught up in their framework of choice and they ignore, forget, or never understood that each request to a web application is like a brand new program running. We (or our framework) have to do a lot of work to maintain state and simulate a "logged in" experience. Some of that work involves having the browser store stuff and give it back to us, but we cannot rely on the browser doing the right thing.

Plus too many programmers don't even know the difference between code that runs on the server and code that runs in the browser. I have had arguments with programmers who insist that ColdFusion, PHP, or VBScript code that is inline in an HTML page is run in the browser.

--
bmb

link|flag
4  
"Ouch" to the second one! – Nelson LaQuet Mar 7 at 5:40
17  
I came in to "help" with an existing project where the primary developer would do string concatenation in PHP to display email addresses (previously 3+ parts, in variables) so that "web/spam crawlers can't read them". Stuff like: echo $prefix . "@" . $domain . ".com"; – anonymous coward May 14 at 14:08
2  
I hate to blame the programmers for this, however blameworthy it may be; I think a large part of the problem is when you have frameworks and development tools that try to let you pretend you can control what happens on the browser. I'm talking to you, Visual Studio; I've watched developers who should know better be confused by the magic you almost succeed in doing. – JasonFruit May 22 at 20:31
2  
Just an FYI, but VBScript that is inline in an HTML page CAN be run in the browser (if it's IE). – Jason Baker Jun 12 at 23:27
show 2 more comments
vote up 24 vote down
...the single worst subject of widespread ignorance amongst programmers...
  • "the business domain doesn't matter" aka "the business reasons don't matter" aka "the business is none of my business"
link|flag
1  
@[jcollum]: i assume you're joking - failure to understand the business domain can be catastrophic; a good understanding of the business domain will make you and your work much more valuable ;-) – Steven A. Lowe Jan 21 at 3:23
1  
@Steven - what is perhaps more shocking is the extent to which the people who run businesses often have exactly the same attitude. Anyone with an MBA can supposedly run any division of any business - no understanding of the domain required! – Earwicker Jul 28 at 22:12
show 2 more comments
vote up 20 vote down

Hello, my name is Nathan and I am a recovering "No" developer. ( <-- current pet peeve)

I used to hear a request for a feature and I'd say "No!". Then I'd say, "It cannot be done!", or "that's not how the product works".

Finally, worn down as the business guy convinces me that if we cannot do this we'll go out of business, I decide to think about it for a minute and code it up while he's going on and on trying to convince me about why this is such a good idea. I tell him, it'll be in the next release, and he leaves exasperated but happy.

Now, I try to be a "Yes" developer.

note: The business guy is often the developer on your team that wrote the framework you have to use that doesn't quite fit the bug you just got assigned.

link|flag
2  
Great answer. I agree with you here, however, I've never accepted NO from a programmer, even when I was QA, and manegement. I see it that we are "DEVELOPERS". We can DO ANYTHING. We write the code!. But, there's always that pesky time and cost issue, etc... :) – LarryF Jan 8 at 20:29
4  
I saw the other side of this at my last company. Every time a client requested a feature, it was implemented - and the resulting bloat effectively killed the product. – Ethan Jan 8 at 21:37
5  
Nathan, try not to come too far the other direction. Saying YES to everything can get you into a lot more trouble. ;-) – John MacIntyre Jan 9 at 1:04
2  
Yes but it will take (X) period of time. Is it more imortant than already planned features? Which do you want to bump? Would this be ok in a later release when we can devote the (X) period of time to it that it really needs. That's the angle I try to take. – railsninja Jun 28 at 12:15
show 8 more comments
vote up 19 vote down

Another Java/.NET one (this SO question is just great for letting off steam...)

Myth: "Value types live on the stack, reference types live on the heap"

Reality: It's more complicated than that.

C# doesn't actually differentiate between the heap/stack behaviour, and the CLR could potentially do funky things with objects which can never escape from the current method. However, taking existing C# behaviour and ignoring special cases like stackalloc and captured variables for anonymous functions and iterator blocks.

First let's talk about variables. Variables have a context - either they're local to a method, or they're static, or they're instance variables as part of either a value type or a reference type.

  • Static variables are always on the heap.
  • Local variables are always on the stack. (Remember I'm ignoring captured variables here :)
  • Instance variables live in the context of their container. For a reference type this will always be on the heap. For a value type it depends...
  • The value of a variable is never an object. If it's a reference type variable, the value of the variable is a reference. The reference may well be on the stack (e.g. if it's a local variable) but the object it refers to (if it's non-null) will be on the heap.
  • Value parameters are on the stack.
  • Reference parameters (i.e. those with ref/out) will vary by caller.

The value of the variable is stored wherever the variable conceptually lives. So an integer variable which is part of an object will always be on the heap (contrary to the myth). A variable which is part of a value type will live wherever that value type instance lives - which may be on the stack (e.g. if the containing instance is the value of a local variable) or on the heap (e.g. if the containing instance is the value of an instance variable in an object).

That's probably a very confusing explanation because I'm rushing to get to lunch, but basically the myth is far too simplistic, partly because it doesn't talk about variables (or more generally expressions) at all. The context is very important.

link|flag
1  
Why do you (again) say "in Java and C#" and then only showing examples of how C# can trip you up? Could you show an example of how this common misunderstanding has caused problems in java code as well, or not list Java in your title? – Bill K Mar 29 at 4:04
1  
@BillK: In Java people will still be tripped up if they either think that the object is copied (and therefore independent) or if they think that an object is passed by reference (and therefore assignments to the parameter variable are visible to the called). – Jon Skeet Mar 29 at 7:43
1  
Since you're Jon I assume I responded to the wrong post, but I meant in Java, the common understanding is "Newed" objects go on the heap, everything else (pointers to objects & natives) on the stack. I was wondering how this simplistic understanding could confused Java programmers and cause errors. – Bill K Mar 29 at 23:14
show 17 more comments
vote up 19 vote down

I'm not a perfect programmer and there are a lot of things I don't know. But for all my imperfections; I care, I do my best, and I always try to figure out how to do it better next time.

.. but programmers who just don't care drive me nuts.

link|flag
vote up 18 vote down

Ignorance of thoroughness.

"That isn't a condition I should account for, the user should never do that".

"I just write new code, other parts of the development cycle aren't my job (analysis, testing, planning, documenting)".

"I just get the job done. I don't worry about the fact that someone will have to continue to maintain this code, or that business rules can change".

How did I come to think developers are ignorant of thoroughness? Because I've made plenty of those mistakes myself!

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

My pet peeve around here is treating crashes as "user errors".

We work with quite complex data structures and GUIs, and sometimes users put in the data that triggers some edge case in the model, or uncovers a bug in the code. The program coredumps. Some of my co-workers simply tell the user not to do it any more - end of the problem.

In my opinion, every such case needs to be debugged, and the crash turned into an error message telling the user what's wrong and how to fix it. It's not the user fault if the model can't handle rates below 1% - the model needs to tell the user about its limitations.

link|flag
2  
If possible, write a unit test that catches the bug. Such edge/special cases can indicate insufficient testing, so a good first step can be to see whether or not the corresponding unit test fails with that input. – Rob Jan 17 at 7:38
vote up 17 vote down

Naming. Naming of classes, methods, functions, variables or modules. The name should be simple and easy to understand. And it should actually hint at what the intend is. I hate it when I have to stare at some piece of code for much too long just to find out that it does something totally different than its name suggested.

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

My code is so clear I don't need comments - that drives me nuts. No matter how good you are or how clean the code, comments are still helpful. Even with great variable names, clear formatting, and avoidance of "clever" hacks, sometimes it can still be unclear why code is written a certain way. Maybe you make use of an API such that's not readily apparent why you need to code something a certain way. Maybe you're testing something with unusual conditional statements that wouldn't be clear to another programmer. Whatever the reason, it's good practice to leave comments whether for yourself or someone else, that explain anything that's not very obvious, standard code.

At an absolute minimum, it's helpful to include things like function/method comments that explain what parameters are passed and what return value is expected as well as potential error conditions. Failing to do this because "my code is clear so I don't need comments" is just being lazy, ignorant, or both.

In a similar vein, deciding documentation isn't important because it's boring - that just results in a high "bus factor" where the loss of a single person can cripple the ability for the team to maintain code. This is great for job retention, not great for smooth development, and especially terrible for an open source project where the sharing of the code is an integral part of the ecosystem. Code access is not a substitute for documentation.

link|flag
4  
Interesting how there are answers on this thread complaining about writing unintuitive code that requires a comment to explain it, and answers complaining about the lack of comments in code... – thecoop Jun 6 at 21:10
2  
In the days when functions were called strtok and parameters were called p or n, I could understand this attitude. Today, if I write a method IEnumerable<T> WhereNotNull<T>(this IEnumerable<T> source) where T : class then my colleagues are going to know that it returns a sequence without null references and there's no need to write some clutter about how the source parameter is the input sequence. Comments are sometimes needed, but they are for excuses. You put a comment wherever you have failed to make something self-explanatory, or where there's an ugly hack. – Earwicker Jul 28 at 22:22
show 1 more comment
vote up 16 vote down

I agree on the byte<->character issue. There are even several issues in this:

  • "I want to store a byte[] in a String, how do I do that?"
  • "I want to store Chinese characters in a database, but only ever get <?>"
  • "I use UTF-8, but still only get <?>"

The last one is very unfortunate because it comes from half-knowledge. The usual reason for this is that while they use UTF-8 at one point they completely ignore all other places where the encoding would matter.

link|flag
show 2 more comments
vote up 16 vote down

Programmers who write help pages thus:-

This page allows you to add a foo. To add a foo, enter the name of your new foo in the field labeled "Foo Name". Select a the type of the foo from the list and click "Save".

link|flag
2  
This can be appropriate in some cases, but yeah, 99% of the time, someone's written only the super-obvious in the docs, and completely left out the important stuff like "what a foo is" and "why". – MGOwen Jul 14 at 1:02
1  
It's even worse when it's the technical writer who is writing help pages like that. – Daniel Vandersluis Sep 23 at 21:00
1  
You've just given me an idea for a compression algorithm that would work well on the MSDN library – finnw Oct 7 at 14:06
vote up 15 vote down

Not commenting unintuitive code. Not commenting unintuitive interfaces.

Disregarding coding style in interface code. (I am kind of used to seeing it ignored in code, but it creeps me out when even the interfaces other people have to use don't blend)

Inconsistency in naming, and ignorance of the value of consistent naming.

link|flag
4  
I would say, the problem is not not commenting unintuitive code, but having unintuitive code itself. – DrJokepu Jan 8 at 20:03
show 4 more comments
vote up 15 vote down

Programmers that are so religious towards some programming construct they won't hear the other side. Example: stored procedure zealots.

link|flag
show 2 more comments
vote up 15 vote down

People who still use Hungarian Notation for variables, like strName and dblAmount, in strongly typed, reflection-rich languages like c# and java, even if these days there are powerful IDEs and intellisense and etc.

link|flag
2  
Hell yeah, this needs to die. It still creeps in with UI components too and that's generally accepted and it sucks. I think the _ before private fields is hungarian and needs to go, but it's debatable. – jcollum Jan 20 at 22:45
1  
What about the purpose of not having to go back to a variables declaration to find out what kind of representation it uses? – Sebastian Ganslandt Feb 25 at 13:04
1  
I personally find shorter names much better than TheOneObviousButALittleLongNameForAVariable. – ldigas Feb 25 at 17:21
show 4 more comments
vote up 15 vote down
  1. The programmer who thinks that I have no clue how memory management works because I've been working in a language with a garbage collector for 8 years.

  2. The n00b who we just hired that hasn't seen a language without a garbage collector telling me I'm too uptight because I worry about how memory is being allocated and freed.

In our case (long running, high load processes), it's critical we pay attention to how much memory we're allocating and when that memory is going to be freed. Just because the actual collection will be done for me doesn't mean I can bury my head in the sand.

link|flag
vote up 14 vote down
  1. Windows people who still think Linux is command-line only.
  2. Linux people who complain about Windows not being distributed with build tools, not realising that for some years MS has made an extremely high-quality, highly standard-conforming and highly optimizing C/C++ compiler and IDE available for free.
link|flag
6  
This can be generalised, in part, to "Linux/Windows zealots who extol the virtues of their platform and ridicule all others, without having used said platform (ever, in a reasonable number of releases), and have no idea that it also does X, Y and Z." – Rob Jan 17 at 7:41
5  
I just read a blog post the other day about a windows user who tried Ubuntu. It only took him 20 mins to get to a point where he was forced to do something at the command line. It's not command-line-only but you damn well better be command-line-friendly. Why have a GUI if you're not using it?? – jcollum Jan 20 at 22:40
1  
On point #2: making available for download does not constitute distributing with; as a developer, you can't count on anything not distributed with the OS as reliably being there. – A. Scagnelli Jun 2 at 15:54
1  
@A. Scagnelli: It's just the ide and compiler. The libraries you're building for are already included with windows. If you're doing a binary distribution, what does it matter if a compiler is there or not? – Joel Coehoorn Jul 10 at 15:30
1  
@j_random_hacker: Having a Internet connection, still isn't an excuse. My connection is 1 meg, and I can't get faster here. If I didn't copy all my stuff to disc, it would be a day or two between system setup, andbeing able to do all I want. That's not acceptable. – Macha Sep 24 at 20:27
show 7 more comments
vote up 14 vote down

Unintuitive variable names!. God I hate it.
Have you ever read someone's code, (if it's looking for a bug it's even worse), and wondering what the hell "nfi" (NumberFormatInfo), "par" (parameter), "mkAtt" (make attribute) mean? I even saw XML yesterday containing data with attributes n and v (for name and value) and a comment above that n stands for name and v stands for value...
people, if you've got intellisense, why are you so afraid to write a full, understandable name? I admit I'm a bit obsessed with nice variable names, but it's just because it's sooo easy to read if you write your code properly.

I prefer

foreach (string parameterId in idsToNames.Keys)

to

foreach (string key in parameters.Keys)

or

foreach (string p in pars.Keys)
link|flag
2  
well it confuses me if i read the part inside foreach and someone uses methods of p and i have no idea what p is (parameter, part, position, point?) until i get back to the foreach line, check that it's an item from pars and then check what pars keys are (that they're for example parameter ids). – agnieszka Jan 9 at 11:00
1  
Well, short variable names do have their place. ssdl-wiki.cs.technion.ac.il/wiki/index.php/… discusses this. – Brian Jul 10 at 17:29
show 4 more comments
vote up 13 vote down

Programmers that are commissioned to write an enhancement, but end up rewriting the program because they "don't like" the way the original was written.

link|flag
2  
Dear lord, a thousand times, yes! Especially for reasons of language bigotry. It's even better when the "rewrite" is of poorer quality. – Rob Jan 17 at 7:49
3  
You are implying that the original did not need to be rewritten. What if the need for the enhancement shows that a refactoring is warranted, and that the resulting (refactored) program would be better designed than the original with a hack applied on top? – Ether Jan 19 at 18:36
2  
He didn't say refactored; he said rewritten. There's a difference. – JasonFruit May 22 at 20:40
prev 1 2 3 4 5 7 next

Your Answer

Get an OpenID
or

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