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?
|
201
|
|||||||||||||||||||||
|
|
|
In no specific order:
|
|||
|
|
Not using loop continuation statements. Imagine, a multi-screen method, that continues to indent near-endlessly.
versus
|
||||
|
|
|
|
||||||||||||||||||||
|
|
|
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. |
|||
|
|
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... |
|||
|
|
|
|
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! |
|||
|
|
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. |
|||
|
|
So far in my years of development I have found that I resent most those programmers who can't keep deadlines. It's OK to go over bevcause of some unforeseen trouble, but to look into the eye and say:"It will be finished tomorrow" and then start coding next week is not acceptable. |
|||
|
|
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. |
||||||||||||
|
|
|
My pet peeve, one that I care for and nurture has got to be "Well we have done it like that for years". Technology moves on, so should programmers. I don't mean use the new version because it is the new version. I used to hear it a lot from a VB programmer that clung onto VB6 with a vengeance. He didn't want to leave the bloated, dated and very slow VB app that he had due to it being perfectly good when it wrote it X years ago. |
|||
|
|
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) |
|||
|
|
|
|
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. |
|||
|
|
Programmers who write help pages thus:-
|
||||||||||||
|
|
|
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. |
|||
|
|
|
|
Overengineering, usually to make unnecessary optimizations. These are usually done by seniour developers. These usually add a lot of complexity with adding minimal (if any at all) speed improvements. What's worse, is that after these are done, someone other unlucky developer gets stuck with the "optimized" code. |
|||
|
|
|
|
...the single worst subject of widespread ignorance amongst programmers...
|
||||||||
|
|
|
Displaying a message box instead of raising an exception when a method fails to do it's job. For example, a Save() method in a Form simply showing a message box, instead of raising an exception, because the user hasn't filled in some required field, etc. Because they don't raise an exception, any code calling the Save method has no freaking idea that the Save failed or why it failed! Typically at this point I'd expect at least one person to say that exceptions should be used "exceptionally", i.e. rarely. If you follow this philosophy then you still need some way to tell your calling code that you failed, which results in changing your method signature so it returns failure details either as a result or an out parameter, etc. And of-course your calling code will need to tell it's calling code that it failed and so on. Ahh hello world, this is exactly what exceptions are built for! Maybe this thinking doesn't work in all frameworks (like web, etc) but in Delphi Windows applications it's perfect as unhandled exceptions don't crash the application, once they travel back to the main message loop the app simply shows a presentable message box to the user with the error details, they click OK and program flow continues to process messages again. |
|||
|
|
"All I need for debugging is a print statement." |
||||
|
|
|
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? |
|||
|
|
Label1, Label2, ... Label126, ... Button1, Button2, ... ooohhhhh ... I just want to smack somebody! ;-) |
||||||||||||||||||||
|
|
|
Thinking that customers know what they want Don't take the customer's words literally. Understand the problem, talk about it with others, think of many creative solutions, and implement the solution that works best for most users. |
||||||||||||
|
|
|
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. |
||||
|
|
|
Programmers that have absolutely no idea whatsoever what "malloc" means/refers to. |
|||
|
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Unintuitive variable names!. God I hate it. I prefer
to
or
|
||||||||
|
|
|
My Application Owns the Computer A pervasive attitude among programmers is that the only reason people own a computer is to run their application. Symptoms include:
|
||||||||||||||||||||
|
|
|
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. |
||||||||||||
|
|
|
Most programmers don't seem to realize that any database product based around SQL is not a relational database. Somehow the whole concept of a relational database gets smeared because of how awful SQL is. Web developers now want to use new untested database paradigms because they just can't stand the idea of using a "relational" (that is, an SQL-based) database. Go ahead and read the SQL standard and try and find any occurance of the word "Relation" or "Relational" In reality, there has never been a mainstream relational database. There's a couple research programs (like rel) that implement the relational concepts. But it's all got this kind of grampa's suspenders air about it, that nobody wants to touch, because it's just not hip to be mathematically and logically rigorous nowadays. |
|||
