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?
|
200
|
|||||||||||||||||||||
|
|
|
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! |
||||
|
|
|
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:
|
|||
|
|
|
|
In C++: Myth: Reality: There is a common believing that things that are defined in namespaces other than the global namespace are all global. But in fact, that can cause confusion as to not knowing where stuff is really defined. Here is an example where to avoid confusion: Instead of saying such things as
Say the following, which is more correct and probably is what you really want to say
Note that just because there is no |
|||
|
|
In C and C++: Myth: Arrays are just pointers Reality: Pointers are very different. Arrays are converted to pointers implicitly and often. An array is a block of elements, while a pointer points to such a block. As this simple observation shows, they can't be the same. And an array also can't be some special kind of pointer, because as it is a block of elements, it doesn't point to somewhere. Nevertheless, I often see people write that arrays are just pointers pointing to a block of memory. That yields to the fact that people try to pass arrays like if they were pointers. Two dimensional arrays are tried to pass like
while believing if they have two dimensions, they have a pointer to a pointer. In reality, an array itself consists of the elements, it does not point to them:
There are many contexts in which one needs to address a certain element of it. This is where it converts to a pointer implicitly (i.e without programmers writing it). When passing the array to a function, the function receives a pointer to the first element that points to the array. That pointer is made up by the compiler as a temporary. The two dimensional array of above, would thus be passed like this:
Which makes the parameter a pointer to the first element of it, namely a pointer to the first 3-elements array. Arrays in function parametersThe programmer may declare a parameter to be an array, like in the following example.
This will confuse the crap out of a programmer, at first. Because as the programmer works with the parameter, he finds out that it is actually a pointer. And he is right - it is a pointer, despite being declared as an array. The compiler doesn't care that you told him it's an array, it will make Variable Length Arrays (VLA)Note that C99 introduced variable length arrays, which your compiler may silently support, too. These arrays have a size that isn't known at compile time. Their type is called a variably modified type, and these arrays can be used only for parameters or non-static, local variables (automatic storage duration). Here is an example
In this case, the rule is the same as for non-variable length arrays. The array here will convert implicitly to
They are not declared as pointers just because they have a size determined at runtime! Related answers
|
|||
|
|
Many programmers seem to think that their only audience is the compiler, when code is really written for other programmers. Compilers have no taste. It's an odd kind of prose, but it's for people to read. Tell me a story. |
|||
|
|
"Runs on my box" |
|||
|
|
|
|
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" |
||||||||
|
|
|
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". |
|||
|
|
Cowboys who just want to write code before they have finished understanding and then debugging their business rules & requirements. Once you have finished slashing your business requirements and rules with Occam's' Razor the code, modules, libraries, data structure etc. that you need will be bleedingly obvious. Horse first, then cart. |
|||
|
|
|
|
Reinventing the wheel. As in: instead of using 30 minutes to look up a standard, textbook-ish solution (using an actual textbook, Google, or whatever) – first use 25 minutes to design your own solution (because it's somehow less boring; see also NIH), then use another 25 minutes to make your solution compile, then use 1:45 to prevent it from crashing when you just try it, then use 3.5 days for some additional fixes based on integration testing (or whatever it is that you do), and finally spend weeks processing bug reports and log files / stack dumps / whatever that you get from the customers. |
||||
|
|
|
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.
|
||||||||||||||||||||
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Anyone who calls "SQL Server" "SQL". One is a product of Microsoft, the other is not. |
|||
|
|
The most annoying thing I have come across are developers that truly believe that if the code builds then it is working and production quality! |
|||
|
|
|
|
My Pet Peeve? Undocumented code. All the rest can be solved or worked around. |
|||
|
|
|
|
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". |
||
|
|
|
|
Unreadable code. And large, flat LabVIEW block diagrams that take a couple thousand pixels in both directions. And bland and ugly UI's. And noisy workplaces. And knowledge silos. (What? we can only have one?) |
|||
|
|
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. |
|||
|
|
Professional programmers who don't understand free software (open source) licenses, and yet either use the code without regard to what the license says, or make blatantly false statements that simply reading the license in question would fix. Now, there are a lot of licenses out there, so it's not necessary to understand the intricacies of every single one, but if you are going to use or discuss one of the most common licenses (GPL, LGPL, BSD, or MIT), you should at least have a decent idea of the basic requirements of that license. I have found GPL'd software in proprietary code bases with all license notices stripped off. I have seen people assert that because it's free software and they have the source code in front of them they should be able to do whatever they want with it. On the other hand, there are the people who make blatantly false statements about licenses without having ever actually read the license in question; for instance, asserting that the GPL is viral, or that your code must be under the GPL if you link to GPL'd code. Just for the record, since I have seen a lot of this confusion recently, the GPL doesn't force you to do anything; it does not infect your code. It is simply a license; that is, it is a set of terms which, if followed, give you permission to copy and distribute that GPL'd code. Those conditions include having no restrictions beyond those of the GPL on code you distribute that is based on (which basically means linked to) the GPL'd code. Your code can be licensed under any GPL compatible license, and if you remove the GPL'd code (including support for linking to it, unless it's the LGPL), then you can go back to using any license you want. |
|||
|
|
In a dynamic language, not using Duck Typing and littering the code with tonnes of switch statements! |
|||
|
|
Comparing floating point values from different calculations without using an epsilon. Example:
instead of
|
|||
|
|
Coders who don't know the advantages of keeping code within 80-columns. |
||||||||
|
|
|
I have many, but this one makes me want to hurt myself: "...but it was working before." |
|||
|
|
|
|
Users of any application - or device - who call you up and say "It doesn't work". |
|||
|
|
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. |
|||
|
|
