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
|
|||||||||||||||||||||
|
|
|
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" |
||||||||||||||||||||
|
|
|
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. |
||||||||||||||||||||
|
|
|
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:
|
||||||||||||||||||||
|
|
|
Mine is when programmers think only about the code and not about the users. I put usability first, and try my best to make everything as easy and intuitive to use as possible. Unfortunately, some programmers don't do that; e.g., they use non-descriptive labels for fields (or, don't use labels at all), don't plan and think about the interface layout, and the error messages explain things in a technical manner rather than telling the user what they need to do. If more programmers read books on usability, marketing, and other such concepts (like I do), the software world would be a much better place. |
||||||||||||||||||||
|
|
|
In Java and C# (leaving aside ref/out): Myth: "Objects are passed by reference" Reality: "Objects aren't passed at all; references are passed by value" There's a significant difference, and it's often ignored :( Even in C everything is passed by value (including pointers). EDIT (jonskeet): Judging by the comments, it may be worth referring to my article on C# parameter passing. Hopefully this will reduce confusion rather than increasing it... |
||||||||||||||||||||
|
|
|
Ignorance that other programmers may need to maintain your code. I.e.:
Oh, people who think all abstractions are bad. You shouldn't use nHibernate, built in ASP.NET functionality and so on because you lose some control. Why don't they just code everything in assembly... Edit: I should point out I am not saying that you must use these abstractions, just that there is nothing wrong with using them when it makes sense to (e.g. it's foolish to use nHibernate on a very simple site). It's a judgement call on when an abstraction makes sense, I just think some people are ignorant about the benefits it can bring. |
||||||||||||||||||||
|
|
|
It easily has to be that 'Commenting bad code is better than actually refactoring it into good code' |
||||||||||||||||||||
|
|
|
Label1, Label2, ... Label126, ... Button1, Button2, ... ooohhhhh ... I just want to smack somebody! ;-) |
||||||||||||||||||||
|
|
|
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 |
||||||||||||||||||||
|
|
|
How does a computer work. If you are a programmer, you need to know how the hell a computer works. You need knowledge of function and behavior, as far as it concerns computer programs. RAM, CPU, cache, I/O, DMA, PIO, interrupts, etc. You don't need to know assembly in particular, but concepts like flags, registers, branches, stacks, stack pointer, instruction pointer, memory, pages, DMA, interrupts, semaphore/lock support and things like that must be understood. I don't care if your language abstracts memory management, if your database framework abstracts disk access or even if you use a framework abstracting distributed computing. It still gets run by computers and suffers from computers limitations, which does impact how your software works. |
||||||||||||||||||||
|
|
|
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... |
||||||||||||
|
|
|
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. |
||||||||||||||||
|
|
|
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. |
|||
|
|
Female programmers can't code? Another peeve of mine comes from the attitude people have toward female programmers, which include among other things:
One of the women on my team is a tech lead, and she commented to me the other day interviewing potential employees. Normally, she and one of the male leads would interview candidates together. Consistently, interviewes would speak in very technical terms to the male lead, and dumb it down when they spoke to her. One candidate managed to describe a weird scenario that caused a stackoverflow exception to the male lead, and reiterate it back to her as "a stack overflow is kinda like filling a balloon with too much air, eventually fills up and finally goes POP!" I don't know if people have had bad experiences in the past, but I've never seen a perceivable difference in coding style or quality programmers between men and women programmers. |
||||||||||||||||||||
|
|
|
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. |
||||||||||||
|
|
|
Ignorance of the fact that it's really important to let your coworkers know when you're ignorant of something! Especially when working with new colleagues, one of the hardest things I find is trying to figure out what the person knows and doesn't know. |
||||||||||||||||
|
|
|
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:
|
||||||||||||
|
|
|
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. |
||||||||||||||||
|
|
|
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 ... |
||||||||||||||||||||
|
|
|
Yet another one: the popular language Sun released in the 90s is called Java, not JAVA. It's not an acronym. There's no need to shout. Grrr. (I'm thinking of changing my middle name to "grumpy old man".) |
||||||||||||||||||||
|
|
|
Arrogance. |
||||||||||||
|
|
|
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:
|
||||||||||||||||||||
|
|
|
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. |
||||||||||||
|
|
|
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... |
||||||||||||||||||||
|
|
|
These aren't unversal, but are very common: Lack of knowledge (and interest) about what it takes to operate and support the software once delivered. Failure to appreciate software has no value in and of itself, but only adds value when it is used for something. Both of which lead to a lack of interest in what happens to the software once it's compiled, tested and released. |
||||
|
|
|
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. |
||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
No one knows what the heck an MVC is. A lot of people think they know, but they're usually wrong. |
||||||||||||||||||||
|
|
|
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:
|
||||||||||||||||
|
