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?
|
195
|
|||||||||||||||||||||
|
|
|
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. |
||||
|
|
|
Mine is "bytes and characters are NOT the same thing, nor trivially convertible". I can't count how many times I've seen otherwise competent programmers completely ignore the issue of character encodings, misapply them horribly, or do multiple unnecessary and potentially destructive conversions between them. The worst case I've seen, an overloaded method for handling XML (simplified):
Count the number of unnecessary and potentially destructive String/byte[] conversions. Count them! Depending on the platform default encoding is par of the course for naive Java code, but corrupting the data unless it matches both the platform default encoding and a hardcoded one takes real talent - especially when it would have been less work to just hand the byte[] over to the XML parser and have it use the correct encoding declared in the XML data itself. I blame it all on the C standard. |
||||||||||||
|
|
|
Many programmers think that writing unintelligible code that ultimately works somehow shows their genius. It's writing clear, understandable code that makes a good programmer. A related issue are programmers who change old, unintelligible code without cleaning it up. Or not even really understanding what the old code does, as long as their new addition to it works. |
||||||||
|
|
|
"It seems to work for me, so I won't bother reading manual/specification to do it correctly" This is why HTML, JavaScript, feeds and HTTP (caching, MIME types) are in such sorry state. |
|||
|
|
Ignorance of threading (As applied to .NET/Java; different phases would apply in functional languages, for example.) I believe developers go through up to 4 phases of threading knowledge:
In my experience the last is more of a theoretical goal than an attainable state. |
||||||||||||||||
|
|
|
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. |
||||||||||||||||||||
|
|
|
(.NET specific) Myth: Reality: It didn't help that the MSDN documentation was wrong until .NET 2.0. Many people stood by the documentation, regardless of the fact that the exponent is clearly part of the value :( |
|||
|
|
In web development, ignorance of proper input sanitation and SQL injection vulnerabilities. In ColdFusion, for example, the language is so easy to learn that it practically welcomes new "programmers" to make this mistake. Much of the beginner documentation reinforced bad usage patterns early on as well. All of the languages that target web development have some kind of SQL injection prevention available, either through a sanitizer of a way to generate prepared statements, but many developers don't know what SQL injection is much less how to prevent it from happening. This leads to defaced sites, increased distribution of malware, and a general tarnishing of the image of web developers as second-class citizens in the programming community. |
|||
|
|
|
|
People who constantly rant about "Code should have more comments in it". If developers spent more time paying attention to sensible naming and a reasonable approach to problems, most comments would be unnecessary. If the code requires comments to explain it, then there is a good chance the code has been badly written. Developers who concatenate loads of method calls inline eg:
|
||||||||||||||||
|
|
|
.NET != C++ Saw this yesterday: a programmer wrote some code in VB.NET which passed all parameters ByRef between a few dozen functions. I asked him why he wrote it in that style, and he commented that .NET would make a complete copy of every array parameter before it passed it to another function. I correct him, "yes, it'll make a copy... of the pointer, but not the entire array". He fought with me on that fact for a few minutes. I decided it wasn't worth my time to "fix" code that wasn't broken, so I left it as is. |
|||
|
|
So many things are very common. For Example, "Do you know programming in assembler?"
And so on. |
|||
|
|
|
|
For Pete's sakes please don't use ALLCAPS for any form of constant in C#. Be it enums or const or ANYTHING. If your IDE doesn't tell if something is a const, you should find a new IDE, or failing that a new hobby/workplace/job. |
||||
|
|
|
That skilled programmers have a better value on business code than on technical code. Affect your better coders to implement your domain model, they'll make it better, and that's the most important point. |
|||
|
|
|
|
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. |
|||
|
|
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 |
|||
|
|
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. |
||||
|
|
|
Just one of the most symbolic examples of ignorance in programming (C#):
|
|||
|
|
Ignorance of socially acceptable bathing habits. |
|||
|
|
|
|
Happened recently: The problem can not possibly be in my code, it must be in the library!
|
||||
|
|
|
My pet peeve is code which is written to join a list/array of strings into a comma separated list and they loop round each item appending the comma (or other separater) and then when they get to the end remove the last separator when it can be easily done in a couple of lines (assuming c#).
:-) |
||||
|
|
|
and the infamous:
|
|||
|
|
|
|
Female programmers can't code? Another peeve of mine comes from the attitude people have toward female programmers, which include among other things:
One of the women on my team is a tech lead, and she commented to me the other day interviewing potential employees. Normally, she and one of the male leads would interview candidates together. Consistently, interviewes would speak in very technical terms to the male lead, and dumb it down when they spoke to her. One candidate managed to describe a weird scenario that caused a stackoverflow exception to the male lead, and reiterate it back to her as "a stack overflow is kinda like filling a balloon with too much air, eventually fills up and finally goes POP!" I don't know if people have had bad experiences in the past, but I've never seen a perceivable difference in coding style or quality programmers between men and women programmers. |
||||||||||||||||||||
|
|
|
Not to comment code. Seriously, a whole lot of colleagues stated to me, that "hard to write code should be hard to read", when I asked them, why they do not add comments. I say: "Documentation is like sex. If it's good, it's very, very good. If it's bad, it's better than nothing!" |
||||||||
|
|
|
In order of gravity:
|
|||
|
|
|
|
Code is not just for communicating with the computer, but also with fellow programmers. You can throw all sorts of rules on comments and variable names at people, but it really doesn't matter that much. Either they grok the above (and don't need rules except perhaps as guidelines) or they don't (and will only obey the letter of the rules). |
|||
|
|
|
|
Arrogance. |
||||||||||||
|
|
|
People that think it is OK to not comment code because of reason X. I have heard all kinds of pithy statements like "Comments are lies", "Write more readable code instead of commenting", or "Name your variables and functions correctly and you don't need to comment". Bull hockey! Writing readable code, and using good naming of functions and variables are good ideas. But leaving out comments is not. I don't know how many times I have had to examine a block of code for minutes/hours trying to figure out what it does and why it does it, when a simple comment would saved me most of my time. In C#/.NET, I hate the lack of metadata comments on functions and properties. Being able to bring up IntelliSense and find a short set of comments about a function is invaluable to your fellow programmers. Of course I am guilty of not adequately commenting code throughout my career. I probably wrote some code yesterday that I didn't comment. But the attitude that this is OK for some reason X is completely wrong. P.S. I also hate the other school of thought, the "Leave detailed comments on everything" camp. I had a couple of computer science professors like this back in the days of college. If the line count of comments in a function equals that of the code, you have a problem. |
||||
|
|
|
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. |
|||
|
|
Copying and pasting duplicate code throughout a series of similar classes, rather than using inheritance or composition to put the required functionality in one place. That can be very difficult to refactor! |
||||
|
|
|
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. |
||||||||||||||||
|
