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
|
|||||||||||||||||||||
|
|
|
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. |
||||||||
|
|
|
Poorly named variables/classes/methods where the programmer is trying to stay within some artificial 8 character limit. This combined with extremely verbose (and often unnecessary) comments is one of my biggest pet peeves. |
|||
|
|
The myth that writing the code is the main part, while debuggin is just an extra. They are both faces of the same coin. If one is shitty, the overall result will suck. |
|||
|
|
|
|
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.
I didn't have time to read more than the first page of answers, so please pardon me if this is a duplicate. |
||||
|
|
|
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. -- |
||||||||||||||||
|
|
|
The idea that using On Error Resume Next means you don't have to check for errors. I have to maintain a cesspit of VBScript and the guy before me just littered On Error Resume Next everywhere, without bothering to do any error checking at all. |
|||
|
|
The power of Google. Or Find in Files. |
|||
|
|
How does a computer work. If you are a programmer, you need to know how the hell a computer works. You need knowledge of function and behavior, as far as it concerns computer programs. RAM, CPU, cache, I/O, DMA, PIO, interrupts, etc. You don't need to know assembly in particular, but concepts like flags, registers, branches, stacks, stack pointer, instruction pointer, memory, pages, DMA, interrupts, semaphore/lock support and things like that must be understood. I don't care if your language abstracts memory management, if your database framework abstracts disk access or even if you use a framework abstracting distributed computing. It still gets run by computers and suffers from computers limitations, which does impact how your software works. |
||||||||||||||||||||
|
|
|
Programmers that are so religious towards some programming construct they won't hear the other side. Example: stored procedure zealots. |
|||
|
|
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. |
||||||||||||||||
|
|
|
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! |
||||
|
|
|
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. |
|||
|
|
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. |
||||
|
|
|
Arrogance. |
||||||||||||
|
|
|
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). |
|||
|
|
|
|
In order of gravity:
|
|||
|
|
|
|
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!" |
||||||||
|
|
|
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. |
||||||||||||||||||||
|
|
|
and the infamous:
|
|||
|
|
|
|
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#).
:-) |
||||
|
|
|
Happened recently: The problem can not possibly be in my code, it must be in the library!
|
||||
|
|
|
Ignorance of socially acceptable bathing habits. |
|||
|
|
|
|
Just one of the most symbolic examples of ignorance in programming (C#):
|
|||
|
|
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. |
||||
|
|
|
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 |
|||
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
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. |
||||
|
|
|
So many things are very common. For Example, "Do you know programming in assembler?"
And so on. |
|||
|
|
|
|
.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. |
|||
