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?
|
196
|
|||||||||||||||||||||
|
|
|
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!" |
||||||||
|
|
|
Selective Standards Religion A developer will crusade for the standards of their chosen technology stack, and completely ignore or even disparage standards outside their primary focus. Web Developer: "Most DB people are clueless! They don't know the first thing about CSS. Most just use tables to position everything! Haven't these people heard of Standards?" "What difference does it make whether I use the SQL standard or Product X's proprietary command to retrieve the report data? I get the same result, don't I? I don't even need to worry about the database - my ORM deals with all that." Backend Developer/DBA: "These UI scripters can't even spell 'relationship'. If even one of them knows the definition of third-normal-form, I'd be stunned." "The scripters keep nagging me about changing my sales report pages to support their niche browser - why can't they just get with the program and use Browser Y?" Note - these are examples, and are by no means comprehensive. The moral of the story is to understand that most technology areas have standards, and you will only improve your skills and value by learning them. Even when you choose to go against the standard, you will be doing it from a position of knowledge, not ignorance. |
|||
|
|
|
|
Short "else" clause after a long "if" clause, especially when the else just throws an exception. I prefer to detect the error case first and throw the exception which tends to limit nesting of subsequent code. |
||||
|
|
|
Blowing off restrictions/constraints for a framework/library/API/subsystem that are clearly spelled out by its authors in its documentation is a big problem. As a corollary to this, I would include: simply not even bothering to read the documentation. Here are some examples of mistakes I see cause problems over and over again in Java programming:
Those are a few of my least favorite things. In a more general vein, I have lost track of how many times I have seen code with bugs in it because someone copied code blindly from somewhere else that supposedly "did something similar" to what they were trying to do. Copy-paste programming without an understanding any deeper than the name of a function and how many arguments to pass it can get your software product into a world of trouble! The place I see this happen the most often as I work on Java programs is with concurrency issues. Sun made it way too easy to create a thread in Java - and way too hard, relatively speaking, to detect/prevent cases where some yokel has violated a constraint. Fortunately, you can check for this problem using AspectJ. There are plenty of good examples of how to do this in books, online articles/tutorials on the web, etc. Program the aspect in a .aj source file not a .java source file. Then, your application proper will not need to be compiled with the AspectJ compiler in general. Only when you want to have the aspect be in effect do you need to use the AspectJ compiler. Hmmmm... I guess I have seen a lot of defects occur a lot of times and cause a lot of problems. |
|||
|
|
When people don't know what "Unit Testing" means I've heard the phrase Unit Testing thrown around and since I'm a developer I think of stuff like Nunit and so forth but then it hit me that when I hear QA and Managers say "Unit Testing" they're referring to actually just doing the testing, maybe from a set list ("do A then B then C and the output should be D, if it's not then shit's broke"). So then to avoid confusion I started using the phrase Automated Unit Testing to refer to what I'm calling Unit Testing as a developer - which worked fine right up until the managers thought that I was referring to generating Unit Tests (the lists, I guess) automatically and the QA people thought I was trying to automate them out of a job. I guess I'll just call it "NUnit Tests" and be done with it. Well, until we get migrated to TFS at least. |
|||
|
|
|
|
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
|
|||
|
|
In C#, when Visual Studio's default names are left in, and I have to figure out what button23 does, and why it reads from TextBox13 by flipping back and forth between the code and visual views of Form1.cs. |
|||
|
|
|
|
I call it "coding from the hip", but it really is a specific category - a better name may be "overimperative programming" or "structureless programming": The code is structured as one or more function implementations (e.g. of the main function in a C program, or of a set of user interface event handlers in a .NET end user application). The code inside those functions was written line by line, by determining the next thing that needs to be done, writing a line of code to achieve that, and repeating this until done. When a case distinction needs to be made, an if statement is added, then, line by line, all the code for what happens if the condition holds, then the else clause is added, then the code for the then part is copied over and modified until it is the code for the else part. So complex condition checking appears as an arbitrarily large tree of nested ifs. Iterations were traditionally programmed by jumping back to some point with goto, then tweaking until everything seems to work, but Dijkstra's protest againt this has become too strong so now the tweaking is done with for and while loops. All iterations are programmed by explicitly creating arrays for the data to be used for each case, then filling the array using an integer index variable (without explicit numbers we lose track of where we are, don't we?) followed by another such loop to read and apply the data. More complex data are stored in multidimensional arrays or arrays of arrays and structs; other data structures are absent, pointers are a mahjor source of bugs, when used at all. All variables and arrays are treated like an assembly language writer's memory locations, so they are all global, have meaningless names, or incorrect ones due to being randomly repurposed. Correcting index bounds and array overflows are the programmer's main sources of debugging time. Rewriting and extension code is done by scanning for points at which a change or extension is required, then adding and copy-pasting statements and ifs in the usual way, then tweaking the result until it appears to work. This is not always a result of ignorance: sometimes the programmer got so little time, or so incrementally, that there wasn't time to think about design, Nor is it always bad: if the resulting code is small enough, there may be nothing wrong with it. The main danger of starting out programmers on a diet of assembler or C (or an similar subset of some other language) is that they fail to proceed beyond this stage. Most of the well-known programming improvements techniques (no goto, sensible naming, advanced data structures, structured programming, libraries with APIs, object-oriented programming, functional programming, layered architecture, patterns, refactoring, etc.) are attempts to help them do this, either by incremental fixing or by starting out in a radically different way. |
|||
|
|
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. |
||||
|
|
|
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#).
:-) |
||||
|
|
|
I don't think any else has posted this - I hate "over inheritance" where the class hierarchy is 8 or 9 classes deep. I've seen code like this written by fairly experienced people and I think it's caused by combination of a naive view of what inheritance is for and an unwillingness to refactor base classes to make better use of encapsulation instead. |
||||
|
|
|
Spelling mistakes. |
||||
|
|
|
"Runs on my box" |
|||
|
|
|
|
The simpler, the better. |
|||
|
|
Using a collection of If conditions instead of regular expression. I already saw a +1000 line function that could be reduced to 2 regular expressions. |
|||
|
|
In no specific order:
|
|||
|
|
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. |
|||
|
|
People who really believe that Object Oriented Programming is the end all be all of programming, and completely disregard anything else. I'm a Clojure and Haskell programmer. People like that are extremely annoying, and extremely blind. |
|||
|
|
Programmers who use strings as a universal variable type. |
|||
|
|
|
|
Asking a perfectly legitimate question on Stack Overflow that I and numerious programmers would love to discuss and debate over, only to have it closed within minutes by trigger happy individuals. |
|||
|
|
|
|
Using string concatenation rather than parameters for SQL:
|
|||
|
|
I have three: Web programmers who don't know HTML and Javascript, but instead depend on frameworks that they don't really understand - they don't know what the framework is producing on the client. Application programmers who don't understand that the computer doesn't run their source code (they don't understand the compilation/interpretation step) SQL programmers who don't write SQL - ie. they write procedural languages using SQL syntax. I suppose I could go on forever with this, but those are the top three |
|||
|
|
|
|
Not using loop continuation statements. Imagine, a multi-screen method, that continues to indent near-endlessly.
versus
|
||||
|
|
|
The end-user experience. Most developers have a flat-out disdain of the end-user when it is the end-user who is the entire point of the development effort. |
|||
|
|
|
|
Oh, just remembered another one... In C# and Java at least, '? :' isn't called "the ternary operator". It's the conditional operator. It happens to be a ternary operator (in that it has three operands) and it happens to be the only ternary operator at the moment, but that's not its name, nor does it describe the purpose of the operator. If either language ever gains a second conditional operator (it's possible) then all articles/answers/books etc which refer to the conditional operator as "the ternary operator" will become ambiguous. Yes, this is very much a pedantic peeve, but it still irritates me. I blame book and tutorial authors who've been spreading the non-name "ternary" for years :( |
|||
|
|
Ignoring all performance aspects for the sake of quick and dirty code. We all now the axiom "premature optimization is the root of all evil". However, there's a middle ground between premature optimization, and writing code with abysmal performance characteristics. No, you don't need to spend hours tweaking your SQL queries to wring an extra millisecond out of them if you're running a tiny application with a mostly idle system, but you DO need to avoid things like "SELECT * FROM table" just because it was easier to code it that way. Things like this work great in a test/dev system, but what about in the real world where someone will be running with 100 or 1000x as much data in the db? Same goes for any code you write. Take performance into account enough to recognize when you're artificially creating a bottleneck. This is an area where an ounce of prevention is definitely worth a pound of cure... |
||||
|
|
|
Anyone who calls "SQL Server" "SQL". One is a product of Microsoft, the other is not. |
|||
|
|
Developers that go "solve" the customer requirements by creating some reusable framework or system that is completely unnecessary for what the customer asked for. I find this usually done by very inteligant, but bored people would who much rather work on something interesting to them then actually solve the problem for the customer. |
|||
|
|
|
|
Caught, but unhandled exceptions Nothing bugs me more than coming across a try...catch block that doesn't have any exception handling or propagation. Example:
Lack of proper exception propagation has cost our dev team countless hours of debugging. |
|||
|
|
|
|
I recently became aware that a lot (and I mean a LOT ) of programmers are not familiarised with the inheritance concept and have absolutely no idea why it is useful. |
||||||||||||
|
