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, one that I care for and nurture has got to be "Well we have done it like that for years". Technology moves on, so should programmers. I don't mean use the new version because it is the new version. I used to hear it a lot from a VB programmer that clung onto VB6 with a vengeance. He didn't want to leave the bloated, dated and very slow VB app that he had due to it being perfectly good when it wrote it X years ago. |
|||
|
|
The Tabs vs. Spaces debate. I personally don't care which to use (I'm not picking any sides - they all have their pros and cons, and modern IDEs will do whatever policy is selected for you), I just hate working on a project where it is not consistent between developers, and I'm constantly asking myself "do I need to switch my editor policy for this file?", and toggling my "show whitespace character" setting. If you're ever starting a new project with new developers - pick one, put it in your coding style guidelines, and make sure everyone sticks to it, or watch out when you have to modify someone else's stuff - and don't complain if you join a project and the current policy is different than what you prefer and try to prove that "tabs are better than spaces", or the reverse - it'll just make everyone mad, make you sound arrogant, and you'll be bantering over something that is not productive. You can banter about it when you're deciding which to use at the beginning, but after that - leave it alone! Oh - if you prefer to use tabs - use it only for indenting, and use spaces for alignment. Those who use tabs for alignment bug me. |
||||
|
|
|
Programmers who do not unit test their code and then get upset with QA when bugs are found which obviously demonstrate this fact. |
|||
|
|
|
|
Ignorance of one's own limitations. I can't stand it when someone thinks they know everything there is to know about a topic and give useless or harmful "advice" to someone else. |
|||
|
|
The power of Google. Or Find in Files. |
|||
|
|
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! |
||||
|
|
|
Most programmers don't seem to realize that any database product based around SQL is not a relational database. Somehow the whole concept of a relational database gets smeared because of how awful SQL is. Web developers now want to use new untested database paradigms because they just can't stand the idea of using a "relational" (that is, an SQL-based) database. Go ahead and read the SQL standard and try and find any occurance of the word "Relation" or "Relational" In reality, there has never been a mainstream relational database. There's a couple research programs (like rel) that implement the relational concepts. But it's all got this kind of grampa's suspenders air about it, that nobody wants to touch, because it's just not hip to be mathematically and logically rigorous nowadays. |
|||
|
|
Overengineering, usually to make unnecessary optimizations. These are usually done by seniour developers. These usually add a lot of complexity with adding minimal (if any at all) speed improvements. What's worse, is that after these are done, someone other unlucky developer gets stuck with the "optimized" code. |
|||
|
|
|
|
My pet peeve is a sort of brain-washing that most programmers don't even realize has happened to them - namely that the von Neumann machine is the only paradigm that is available when developing applications. The first data processing applications using machinery were what was called "unit record", and involved data (punched cards) flowing between processing stations, and the early computers were just another type of station in such networks. However, as time went on, computers became more powerful. Also the von Neumann architecture had so many successes, both practical and theoretical, that people came to believe this was the way computers had to be! However, complex applications are extremely difficult to get right, especially in the area of asynchronous processing - which is exactly what the von Neumann machine has trouble with! On the other hand, since supposedly computers can do anything, if people are having trouble getting them to work, it has to be the fault of the programmers, not the paradigm... Now, we can see the von Neumann paradigm starting to run out of steam, and programmers are going to have to be deprogrammed, and "go back to the future" - to what is both an earlier, and a more powerful, paradigm - namely that of data chunks flowing between multiple cores, multiple computers, multiple networks, world-wide, and 24/7. Paradoxically, based on our experience with FBP and similar technologies, we are finding that such systems both perform better, and are easier to develop and maintain. |
|||
|
|
|
|
Using global variables as a mechanism for parameter passing. I have seen this mainly in VB6 projects. When you open a project you are greeted with a page of global variable declarations. And the functions usually dont take parameters. This sucks big time because:
|
|||
|
|
|
|
People who know only one language, that "can do everything". And every problem they face as if they are using their "can do everything" languaje and never stop to see what else can bee done in the others paradigms... |
|||
|
|
|
|
I didn't/You can't because the house rules of development say you can't! I can't count how many times I've been told I couldn't write something a certain way, or been told by someone that they didn't write something a certain way, because some preexisting "house rule" said it wasn't allowed. I don't think anything irks me more than encountering a "rule" that prevents me from implementing something in the most efficient, concise, effective, clear, maintainable way possible because it is either:
These kinds of things just REEK of ignorance. People get so attached to their "purist" or "conformist" ways sometimes that they miss the long- and short-term time, effort, and money saving advantages that are just dangling right in front of their noses. C# sucks because Microsoft destroyed its original intent as an object-oriented purist language. I get this one from Java OO purists a lot (no offense). No matter how much I stress the point, provide solid resources (i.e. Eric Lippert's Fabulous Adventures In Coding), or actually demonstrate it...some people refuse to accept the simple fact that C# is a language designed for component development. It was never designed as an OO purist language in which functional features such as lambda expressions, the var keyword, LINQ, etc. are bad things that ruin the language. Wake up, people! C# was never designed as a pure object-oriented language. Use it for what it is, and reap the benefits! |
|||
|
|
|
|
In C++: Myth: Reality: Many confuse But |
|||
|
|
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. |
|||
|
|
That rebooting is a first line of defense solution. This applies to DBAs too. I've encountered more than my share of programmers/DBAs that think nothing of rebooting a production system to fix things. In fact, I am cringing right now. =) While this may fix things, it is tremendously disruptive and only used as a last resort. |
|||
|
|
Ignorance of the fact that questions like this should be community wiki. |
||||
|
|
|
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). |
|||
|
|
|
|
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 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. |
|||
|
|
|
|
Programmers that have absolutely no idea whatsoever what "malloc" means/refers to. |
|||
|
|
|
|
Displaying a message box instead of raising an exception when a method fails to do it's job. For example, a Save() method in a Form simply showing a message box, instead of raising an exception, because the user hasn't filled in some required field, etc. Because they don't raise an exception, any code calling the Save method has no freaking idea that the Save failed or why it failed! Typically at this point I'd expect at least one person to say that exceptions should be used "exceptionally", i.e. rarely. If you follow this philosophy then you still need some way to tell your calling code that you failed, which results in changing your method signature so it returns failure details either as a result or an out parameter, etc. And of-course your calling code will need to tell it's calling code that it failed and so on. Ahh hello world, this is exactly what exceptions are built for! Maybe this thinking doesn't work in all frameworks (like web, etc) but in Delphi Windows applications it's perfect as unhandled exceptions don't crash the application, once they travel back to the main message loop the app simply shows a presentable message box to the user with the error details, they click OK and program flow continues to process messages again. |
|||
|
|
Ignorance of the principles of reusable code and parameters. A ColdFusion developer I inherited code from had made several pages with names like getWallProducts.cfm, getFloorProducts.cfm, getCountertopProducts.cfm, getBacksplashProducts.cfm, etc. Each of the pages was absolutely identical except for the WHERE clause in one SQL query. |
|||
|
|
The difference between "I need to get this done" and "I need to get this done here" (as in I need to add code in this specific location). By far the biggest issue I have encountered in scaling systems up is where code written by various people puts a lot of logic that should live in separate levels of abstraction in a single place. |
|||
|
|
|
|
Copying code from another application they've worked on containing the functionality they want to use, and not changing the variable names (that only make sense in context of the original application) because "the client will never see the code." Oy. Do I try to explain that the client can and will see the code in any variety of instances, or that this will drive fellow team members crazy/confused, or that the PM will have a conniption when she requests full documentation of the system and sees processes named after other clients' products? |
|||
|
|
|
|
Always starts by writing concrete classes instead of starting to "program by interface". |
|||
|
|
Most of my "favorites" are already up here, but here's one I just ran into again last week (from an otherwise decent programmer): Of course, this can be generalize as "not using code the way it is meant to be used". |
||
|
|
|
|
I find that all too many business application programmers are abysmally ignorant of data meaning, database design and data access. Virtually every business application has a database backend, a programmer who doesn't understand how to efficiently and effectively query it will have a badly performing product that users don't want to use. A developer who doesn't bother to learn database design principles before actually designing a database will cause problems in the applications for years to come. Further their ignorance often results in data integrity issues - meaning the data is unreliable or meaningless and thus the application is irrelevant or queries that are so poorly designed they provide the wrong results. Another problem is the developer who thinks that saving a minute of his precious development time is more important than wasting hours of the users' time every day. Programmers should spend all day every day for a week actually using their applications. They would change how they design them. |
|||
|
|
Bad or incorrect knowledge of data structures. "I need to find all untranslated strings in our source. I'll just build an array of all the strings, copy it and compare them to eachother." Congrats on your n-squared solution. Some folks with modern CS degrees don't even know what a hash-map does. Or why you would ever use one as opposed to an array or list etc... Drives me nuts. |
|||
|
|
I have many, but this one makes me want to hurt myself: "...but it was working before." |
|||
|
|
|
|
When people say "Oh, this is so simple, I know it works, there's no point of writing a test for it". They are completely missing the point of the test, it isn't just to verify that it works, it's to verify that it still works when people make changes down the road. |
|||
|
|
