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?
|
199
|
|||||||||||||||||||||
|
|
|
.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. |
|||
|
|
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:
|
||||||||||||||||
|
|
|
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. |
|||
|
|
|
|
(.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 :( |
|||
|
|
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. |
||||||||||||||||||||
|
|
|
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. |
||||||||||||||||||||
|
|
|
"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. |
|||
|
|
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. |
||||||||
|
|
|
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. |
||||||||||||
|
|
|
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. |
||||
|
|
|
There's a couple of things. One is the same thing you pointed out - lack of proper understanding of Unicode, assuming that all text is represented by a lit of single-byte characters (as pointed out by the powers-that-be). The other is developers who don't take the time to actually understand what something does or how the specs are defined, but just work simply by trial and error until they find something that works for their particular position and just use it. Then get surprised when it fails under different input (and often will go off and add convoluted if-else clauses, after more trial-and-error work of course, to handle all these anomalous data). Oh, and as a corollary to the above - IE. There are so many elegant, powerful techniques that you have to abandon simply because of poor implementation in that browser - and when they do get fixed (it's getting better, I'll admit) you still can't use them for another few years until the majority of the public stops using the buggy versions. IE 8 looks like it will finally allow you to have a cookie string of more than 4k without effectively deleting all cookies - but how long until one can write code without having to guard against it? |
||||
|
|
|
Treating coding standards as absolutes is my pet peeve. Coding standards are good things that improve readability, but there are always exceptions to the rule. The classic example is the "one return per function" rule. Sure, it's good to limit the number of returns in a function, but there are situations where multiple returns are preferable to contorting your code to use one return. |
||||||||||||||||
|
|
|
Programmers who build XML using string concatenation. |
||||||||||||
|
|
|
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. |
|||
|
|
Performance isn't that much of a problem until performance becomes a problem. No matter how much you talk about premature optimisation people keep on doing it, at all kinds of level- there is nothing virtuous in writing 2000 lines of compiled code when you could have written 20 lines in a dynamic language just to save 20 processor cycles when your processor is running 95% idle anyway. If the time comes when performance is a problem you can fix it then, but basing all your decisions on the assumption that it will be wastes everybody's time... |
||||||||||||||||||||
|
|
|
Another Java/.NET one (this SO question is just great for letting off steam...) Myth: "Value types live on the stack, reference types live on the heap" Reality: It's more complicated than that. C# doesn't actually differentiate between the heap/stack behaviour, and the CLR could potentially do funky things with objects which can never escape from the current method. However, taking existing C# behaviour and ignoring special cases like stackalloc and captured variables for anonymous functions and iterator blocks. First let's talk about variables. Variables have a context - either they're local to a method, or they're static, or they're instance variables as part of either a value type or a reference type.
The value of the variable is stored wherever the variable conceptually lives. So an integer variable which is part of an object will always be on the heap (contrary to the myth). A variable which is part of a value type will live wherever that value type instance lives - which may be on the stack (e.g. if the containing instance is the value of a local variable) or on the heap (e.g. if the containing instance is the value of an instance variable in an object). That's probably a very confusing explanation because I'm rushing to get to lunch, but basically the myth is far too simplistic, partly because it doesn't talk about variables (or more generally expressions) at all. The context is very important. |
||||||||||||
|
|
|
Complacency with duplicate code. Two blocks of code which are initially identical are a maintenance headache. They are going to gain differences over time due to being used differently, yet there will be cases where the same fix has to be applied to both similar but non-identical parts. You can try distinguishing after the fact between a fix that should have been applied to the other copy of the code but that was overlooked, and a fix that deliberately wasn't applied to both. It will make your head hurt. I did code reviews of prospective hires a while back, and realised that the main bar that most applicants needed to get above was nothing fancy - not good Object Orientation, appropriate use of Design Patterns or the like, but just plain old factoring of code into well-named, re-usable methods. I.e. avoiding the "100s of lines of repetitive code in button click handler methods" pattern. This was discovered with "structured programming" in the early 1970s, before most of those applicants were born. |
||||||||||||||||||||
|
|
|
My personal pet peeve (petty but my teeth grind everytime I see it) is verbosely setting booleans, e.g.
whats wrong with
It's soooooo much more succinct and easier on the eye |
||||||||||||||||||||
|
|
|
Programmers carrying over habits which may be desirable in one language, but aren't in the new one. Classic example is seeing C# or Java code like this:
This is usually written by ex-C or C++ developers who are trying to avoid the typo of:
which is valid C/C++ (although it generates a warning in most compilers). In C# and Java it's just unnecessary, and I believe most people find it harder to read than the more natural:
|
||||||||||||||||||||
|
|
|
Thinking that it is OK to swallow an exception:
The default Eclipse template does this and so many people just catch a checked exception to get their code to compile and then ignore the ticking NPE. edit: A post by Reinier reminded me of this one:
|
||||||||||||||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
It easily has to be that 'Commenting bad code is better than actually refactoring it into good code' |
||||||||||||||||||||
|
|
|
I really don't like it when people are testing the value of a boolean like e.g.
Not only is it redundant and unnecessarily verbose, but with a language like C# where there's no implicit conversion from e.g.
will not compile, but
will ... |
||||||||||||||||||||
|
|
|
With large datasets being moved between systems in XML, not understanding the merits of SAX over DOM, and the performance implications of selecting DOM simply because it is easier to implement. I have seen a number totally unnecesary performance bottlenecks and system failures over this, with XML getting blamed rather than the lazy parser implementation. |
|||
|
|
|
|
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. |
||||||||||||
|
|
|
The attitude that testing is unnecessary or time consuming If tests aren't written, then there is no way of knowing when some change in the system breaks something elsewhere. Writing tests saves time and money. In response to Kendall Helmstetter Gelner's comments: testing actually helps refactoring - if you have tests that tell you what the application should do, then when you refactor, those tests should still pass. This is where I have saved many hours of work, after all, the alternative is no tests or doing manual testing for everything, and that is a massive time sink. |
||||||||||||||||||||
|
|
|
The biggest mistake I see new programmers make is trying to prove their code is correct when it obviously isn't. It usually runs like this:
My advice: Assume someone else wrote that code and you know it's broken. Find the broken bit... |
||||||||||||
|
|
|
The lack of desire to continually improve. I've seen a lot of developers get to a certain level of skill and then just stop learning new things. No reading of blogs, journals, books; it's like they reached a certain skill level and went "yep, I know all I need to know now" |
||||||||||||||||||||
|
|
|
I agree on the byte<->character issue. There are even several issues in this:
The last one is very unfortunate because it comes from half-knowledge. The usual reason for this is that while they use UTF-8 at one point they completely ignore all other places where the encoding would matter. |
|||
|
|
Ignorance of Polymorphism. Even in Python (with duck typing!) people still try to write
Where, clearly, they should simply rename the three methods to create polymorphic classes. They can eliminate the if and simply
Yesterday I saw the "surrogate type check" design pattern.
Sigh. At parameter-parsing main-program-startup time, they should have done this.
Then, in the deeply-nested loop they could do this.
Simpler. Faster. Polymorphic. Pythonic. |
|||
