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?
|
194
|
|||||||||||||||||||||
|
|
|
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! |
||||
|
|
|
Programmers who build XML using string concatenation. |
||||||||||||
|
|
|
Believing that catching and ignoring exceptions means preventing a bug. In most cases the exception means that there is a bug in the code. Ignoring the exception is just like looking the other way. This is especially true if the code catches the base class Exception. Or to put it another way: some people seem to be more willing to let the application continue in a undefined and possible illegal state than accepting the fact that there's a bug in the code, which should be addressed. |
||||||||
|
|
|
Quickly writing really bad code that works, with a plan to refactor later... when it's done e.g. 100 lines of a function that "i will break into 5 smaller later". If you do that and then try to refactor after it's working, you usually find yourself in a situation when there are two ways: write it all again (because it's too hard to refactor to really nice code) or leave it this way because it's working... and in many cases it's just left in its crappy version. |
|||
|
|
Ignorance of socially acceptable bathing habits. |
|||
|
|
|
|
My pet peeve is developers who religiously attach to their language of choice. As a practical matter, being a professional developer these days (in almost every space, not just web developers) should mean you are multi-lingual and capable/willing to explore other technologies. If you know your favorite language(s) well enough, you should also know where their limitations lay, and attempt to explore other options, instead of hammering a square peg into a round hole. A senior development position (or really, any development position) should come with the expectation that the developer can adapt and learn to fill the role as needed. This is not just true of languages, but other technologies (app servers, frameworks, etc) as well. |
||||
|
|
|
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 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. |
||||||||||||||||||||
|
|
|
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" |
||||||||
|
|
|
Use of inheritance when composition or external functions are more appropriate (I would have thought someone else would have brought this up by now, but I browsed through the four pages already up and didn't see it - apologies if I missed it.) It is still so common to see someone think along the lines of, "I need a string that also lets me do X", so they inherit from string and add their X method. Or, I want a queue class that works in a multithreaded environment. Inherit from Queue (or whatever you have) and added overloads that aquire and release locks. In the first instance it is more appropriate to have an free function (or static a method in languages that don't have free functions) that takes the string as a parameter (along with any other parameters) and work with the public interface. In the second, write your threaded queue as a new class that contains the raw queue class, and expose the interface that is appropriate. Sometimes this involves a lot of forwarding methods - but that in itself should not be the reason for chosing inheritance. Inheritance should be reserved for the case where your new class has a superset interface (could be the same), and for callers who only see the static type of the base class the behaviour should make sense (so it is substituteable in the Liskov sense). Furthermore, at least some (some would say all) of the method would necessarily depend on some of the protected state/ interface. That is - if you could implement all new methods using only the public interface, you are not changing the behaviour of existing methods for base class clients, and no new state is introduce, why do you need to inherit? As an aside, some languages support constructs such as C#'s extension methods, which can also be more appropriate in some cases, and also open to mis-use - but that's another subject. |
|||
|
|
One of my biggies is that many programmers don't understand internationalization. Even when an app is supposedly built with it in mind, it's usually not done right.
I didn't have time to read more than the first page of answers, so please pardon me if this is a duplicate. |
||||
|
|
|
Inability to take pride in making mistakes. Instead of simply admitting them and moving on, people go to great lengths to cover their tracks. Mistakes happen. If you meet a "senior something", then that means (before anything else) that this person has made a whole lot of mistakes and learned from them. So a few years back, I made the hard decision to stand tall for my blunders and it has worked pretty well so far. When I can't find a bug after staring at the screen for more than an hour, I admit defeat and ask a colleague. This helps to avoid creating a bigger mess by "fixing" the bug by hiding it behind a new one. "He who asks a question is a fool for five minutes. He how doesn't ask a question stays a fool." -- Old Chinese proverb |
|||
|
|
The web is stateless and the browser isn't part of your app. I find a lot of programmers get caught up in their framework of choice and they ignore, forget, or never understood that each request to a web application is like a brand new program running. We (or our framework) have to do a lot of work to maintain state and simulate a "logged in" experience. Some of that work involves having the browser store stuff and give it back to us, but we cannot rely on the browser doing the right thing. Plus too many programmers don't even know the difference between code that runs on the server and code that runs in the browser. I have had arguments with programmers who insist that ColdFusion, PHP, or VBScript code that is inline in an HTML page is run in the browser. -- |
||||||||||||||||
|
|
|
...the single worst subject of widespread ignorance amongst programmers...
|
||||||||
|
|
|
Hello, my name is Nathan and I am a recovering "No" developer. ( <-- current pet peeve) I used to hear a request for a feature and I'd say "No!". Then I'd say, "It cannot be done!", or "that's not how the product works". Finally, worn down as the business guy convinces me that if we cannot do this we'll go out of business, I decide to think about it for a minute and code it up while he's going on and on trying to convince me about why this is such a good idea. I tell him, it'll be in the next release, and he leaves exasperated but happy. Now, I try to be a "Yes" developer. note: The business guy is often the developer on your team that wrote the framework you have to use that doesn't quite fit the bug you just got assigned. |
||||||||||||||||
|
|
|
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. |
||||||||||||
|
|
|
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. |
|||
|
|
|
|
Ignorance of thoroughness. "That isn't a condition I should account for, the user should never do that". "I just write new code, other parts of the development cycle aren't my job (analysis, testing, planning, documenting)". "I just get the job done. I don't worry about the fact that someone will have to continue to maintain this code, or that business rules can change". How did I come to think developers are ignorant of thoroughness? Because I've made plenty of those mistakes myself! |
|||
|
|
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. |
||||
|
|
|
Naming. Naming of classes, methods, functions, variables or modules. The name should be simple and easy to understand. And it should actually hint at what the intend is. I hate it when I have to stare at some piece of code for much too long just to find out that it does something totally different than its name suggested. |
|||
|
|
My code is so clear I don't need comments - that drives me nuts. No matter how good you are or how clean the code, comments are still helpful. Even with great variable names, clear formatting, and avoidance of "clever" hacks, sometimes it can still be unclear why code is written a certain way. Maybe you make use of an API such that's not readily apparent why you need to code something a certain way. Maybe you're testing something with unusual conditional statements that wouldn't be clear to another programmer. Whatever the reason, it's good practice to leave comments whether for yourself or someone else, that explain anything that's not very obvious, standard code. At an absolute minimum, it's helpful to include things like function/method comments that explain what parameters are passed and what return value is expected as well as potential error conditions. Failing to do this because "my code is clear so I don't need comments" is just being lazy, ignorant, or both. In a similar vein, deciding documentation isn't important because it's boring - that just results in a high "bus factor" where the loss of a single person can cripple the ability for the team to maintain code. This is great for job retention, not great for smooth development, and especially terrible for an open source project where the sharing of the code is an integral part of the ecosystem. Code access is not a substitute for documentation. |
||||||||
|
|
|
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. |
|||
|
|
Programmers who write help pages thus:-
|
||||||||||||
|
|
|
Not commenting unintuitive code. Not commenting unintuitive interfaces. Disregarding coding style in interface code. (I am kind of used to seeing it ignored in code, but it creeps me out when even the interfaces other people have to use don't blend) Inconsistency in naming, and ignorance of the value of consistent naming. |
||||
|
|
|
Programmers that are so religious towards some programming construct they won't hear the other side. Example: stored procedure zealots. |
|||
|
|
People who still use Hungarian Notation for variables, like strName and dblAmount, in strongly typed, reflection-rich languages like c# and java, even if these days there are powerful IDEs and intellisense and etc. |
||||||||||||
|
|
|
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. |
|||
|
|
|
|
|
||||||||||||||||||||
|
|
|
Unintuitive variable names!. God I hate it. I prefer
to
or
|
||||||||
|
|
|
Programmers that are commissioned to write an enhancement, but end up rewriting the program because they "don't like" the way the original was written. |
||||||||||||
|
