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
|
|||||||||||||||||||||
|
|
|
In Java : thinking that "synchronized" blocks are only about atomicity when usually the problems are more about visibility EDIT: Assuming I (Jon Skeet) understand you correctly, this is what I normally talk about as the difference between atomicity and volatility. And yes, it's misunderstood :( |
|||
|
|
|
|
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? |
||||
|
|
|
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. |
|||
|
|
|
|
Inexperienced programmers are apt to believe the terrible fallacy that there is such a thing as placeholder code, which they dutifully demarcate from the rest of the project with a giant TODO comment. Such code is generally rife with half-assed algorithms, lousy variable names, random comments, ugly formatting, and scads of corner-case bugs. What these programmers have yet to realize is that on a commercial software project, the schedule pressures will eliminate any time to go back and clean up that code. When the testers find bugs in that functionality, the programmers will have only enough time to apply the minimally-invasive fix for each bug. Eventually, that placeholder code will have survived weeks of testing and therefore deemed a low priority for refactoring. Nobody expects beautiful, bug-free code. Just try not to commit any code to the source tree that you wouldn't want to ship in the final product. |
||||
|
|
|
My biggest pet peeve is developers who think that because they put together a solution for small company x that
A smaller subset is developers who are too lazy to learn and insist on coming to a senior (read: busier) developer to get them to solve ALL their problems. (key point ALL, of course they should rely on the hot shots for help with hard problems) |
|||
|
|
|
|
The idea that "intuitive" interfaces can actually exist. Sorry, but every interface is learned. Although it is true that this idea usually comes to me from a business analyst... |
|||
|
|
|
|
The belief that functional programming is new and the belief that functional programming is the end-all be-all to programming. |
||||
|
|
|
Ignorance of a programming language's order of operations. I've had programmers ask me why something like 10 + 20 * 3 - 5 was resulting in 65 instead of 85. I take one look at it and shake my head. On a related note, I always try to use parentheses liberally. |
|||
|
|
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! |
|||
|
|
|
|
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. |
|||
|
|
JavaScript is the same as Java right? They both have Java in the name, so they must be the same. |
|||
|
|
Happened recently: The problem can not possibly be in my code, it must be in the library!
|
||||
|
|
|
Coders who don't know the advantages of keeping code within 80-columns. |
||||||||
|
|
|
Myth: End-users can all think like programmers, or else they're incompetent. Reality: No, they can't. And no, they aren't. The type of behaviour a programmer expects, versus the type of behaviour an end-user expects, can be vastly different. Trying to explain the rationale so that they understand what's happening and why, rather than fixing the "bug", is not always the ideal method of dealing with this. If the end-user needs any degree of programming experience to use your program, chances are you're doing it wrong. |
|||
|
|
|
|
Users Read I do not read dialogs, whether large or small. When they don't heed text littered all over the screens. Using your app isn't my job The Moral of the story: Your job as a programmer is not to create a better class of users, but to make programs that accommodate the users you have. Writing an app that ignores the fact that users don't read (whatever the reason) is one that fails in terms of usability. |
|||
|
|
In order of gravity:
|
|||
|
|
|
|
"All I need for debugging is a print statement." |
||||
|
|
|
and the infamous:
|
|||
|
|
|
|
Ignoring the latest community libraries/techinques, and continuing to develop software the way people did ten years ago. |
||||
|
|
|
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. |
||||
|
|
|
Drag and drop programming. My teacher once tried to show off some Ajax in ASP.NET. It started by talking about how the "Ajax would stop the postback of the HTML to the server". He said that Ajax is asynchronous because "The server doesn't have to wait for the client to respond". He also didn't understand that an Ajax request is no different than any other HTTP request. He basically thought it was the XML itself that was sending the request. Of course I was a bit surprised. I then realized why he did not understand Ajax! He was just drag and dropping UpdatePanels and controls on the page. There is nothing wrong with drag and drop, it can save a lot of time and money. But it's no excuse to not understand the underlying technology, especially when teaching it to others. |
||||||||
|
|
|
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. |
|||
|
|
|
|
"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. |
|||
|
|
(.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 :( |
|||
|
|
People don't understand the possibilities of disjoint-union types, perhaps because the support in C, C++, and Java is so abominable, and in a dynamically typed scripting language, everything is a disjoint-union type, so they disappear into the woodwork. Programming with disjoint unions and pattern matching is one of the great pleasures of a language like F#, Haskell, or ML. |
|||
|
|
Reinventing the wheel when microdesigning a components of an enterprise application. Examples from J2EE apps : various custom ways to read a property file, component-specific custom made logging, database connection pool written from scratch, various attemps to custom build an authentication mechanisms, etc. Always wondered what was wrong with standard means we already had for these tasks... |
|||
|
|
|
|
Lazy naming conventions I can't stand it when programmers try to take short cuts when naming their methods and variables. AA is not an acceptable variable name. Being descriptive saves time later when you have to re-read your code or if someone else has to figure out what you wrote. PS. Related to this is putting good descriptions infront of your mthods. You have no reason not to in VS2005+ it practically does it for you if you hit ''' infront of the method name. |
|||
|
|
Far and away: construction-time optimization. I can't count the number of times that I've encountered early loop termination, strange handling of variables, direct access to class members, breakdown of hierarchies, etc... generated in the name of optimization. This seems to be one of those things that every book on programming mentions and that nobody follows. People, if you're writing a net-centric app, or doing heavy DB accesses, or waiting for a user, particulary in multithreaded apps, you will be spending FAR more time waiting for networked I/O than processing data. With that kind of performance profile, any sort of optimization at all will be essentially unnoticed in terms of performance. It's much more important to write code your mother can read. In this mindset, optimization is fine - you can return early from that linear search through a list if the looked for element is the second one you see - but it must be simple and obvious. Think of how much money and stress you can save yourself, and your company, if any time person B picks up person A's code, person B can understand it on the first read. |
|||
|
|
|
|
if .... else-if .... else-if .... else with a nesting hierarchy of four to ten levels, spanning several thousands of lines. Your complete permutation of all branching logic in a method/function. Hello, ever heard of polymorphism? Wait, you don't even know how to derive classes? |
|||
|
|
Lack of focus on the customer and their needs. If I'm aspiring to be a professional then there are many soft skills I should acquire along with the technical skills. Formost among these the ability to develop an effective working relationship with my customer, whether internal or external. I might write the best code in the world, but if it isn't what the customer needed then I'm not doing a professional job. My pet peeve is how quickly we all forget the customer as soon as we click on that icon for our IDE. |
|||
