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
|
|||||||||||||||||||||
|
|
|
People who know only one language, that "can do everything". And every problem they face as if they are using their "can do everything" languaje and never stop to see what else can bee done in the others paradigms... |
|||
|
|
|
|
Revert 'small' refactoring because running the unit tests before committing takes too long. |
|||
|
|
|
|
People who really believe that Object Oriented Programming is the end all be all of programming, and completely disregard anything else. I'm a Clojure and Haskell programmer. People like that are extremely annoying, and extremely blind. |
|||
|
|
JavaScript is the same as Java right? They both have Java in the name, so they must be the same. |
|||
|
|
Ignoring the latest community libraries/techinques, and continuing to develop software the way people did ten years ago. |
||||
|
|
|
People who think "Real-time" is fast. Usually it takes more time to make sure that tasks are achieved in time. |
|||
|
|
|
|
When people say "Oh, this is so simple, I know it works, there's no point of writing a test for it". They are completely missing the point of the test, it isn't just to verify that it works, it's to verify that it still works when people make changes down the road. |
|||
|
|
|
|
The remark "reinvent the wheel". Look around you, do you see one size of the wheel fitting all? |
||||
|
|
|
When people don't know what "Unit Testing" means I've heard the phrase Unit Testing thrown around and since I'm a developer I think of stuff like Nunit and so forth but then it hit me that when I hear QA and Managers say "Unit Testing" they're referring to actually just doing the testing, maybe from a set list ("do A then B then C and the output should be D, if it's not then shit's broke"). So then to avoid confusion I started using the phrase Automated Unit Testing to refer to what I'm calling Unit Testing as a developer - which worked fine right up until the managers thought that I was referring to generating Unit Tests (the lists, I guess) automatically and the QA people thought I was trying to automate them out of a job. I guess I'll just call it "NUnit Tests" and be done with it. Well, until we get migrated to TFS at least. |
|||
|
|
|
|
Programmers who do not unit test their code and then get upset with QA when bugs are found which obviously demonstrate this fact. |
|||
|
|
|
|
The Tabs vs. Spaces debate. I personally don't care which to use (I'm not picking any sides - they all have their pros and cons, and modern IDEs will do whatever policy is selected for you), I just hate working on a project where it is not consistent between developers, and I'm constantly asking myself "do I need to switch my editor policy for this file?", and toggling my "show whitespace character" setting. If you're ever starting a new project with new developers - pick one, put it in your coding style guidelines, and make sure everyone sticks to it, or watch out when you have to modify someone else's stuff - and don't complain if you join a project and the current policy is different than what you prefer and try to prove that "tabs are better than spaces", or the reverse - it'll just make everyone mad, make you sound arrogant, and you'll be bantering over something that is not productive. You can banter about it when you're deciding which to use at the beginning, but after that - leave it alone! Oh - if you prefer to use tabs - use it only for indenting, and use spaces for alignment. Those who use tabs for alignment bug me. |
||||
|
|
|
Users of any application - or device - who call you up and say "It doesn't work". |
|||
|
|
I have many, but this one makes me want to hurt myself: "...but it was working before." |
|||
|
|
|
|
Coders who don't know the advantages of keeping code within 80-columns. |
||||||||
|
|
|
Comparing floating point values from different calculations without using an epsilon. Example:
instead of
|
|||
|
|
In a dynamic language, not using Duck Typing and littering the code with tonnes of switch statements! |
|||
|
|
Professional programmers who don't understand free software (open source) licenses, and yet either use the code without regard to what the license says, or make blatantly false statements that simply reading the license in question would fix. Now, there are a lot of licenses out there, so it's not necessary to understand the intricacies of every single one, but if you are going to use or discuss one of the most common licenses (GPL, LGPL, BSD, or MIT), you should at least have a decent idea of the basic requirements of that license. I have found GPL'd software in proprietary code bases with all license notices stripped off. I have seen people assert that because it's free software and they have the source code in front of them they should be able to do whatever they want with it. On the other hand, there are the people who make blatantly false statements about licenses without having ever actually read the license in question; for instance, asserting that the GPL is viral, or that your code must be under the GPL if you link to GPL'd code. Just for the record, since I have seen a lot of this confusion recently, the GPL doesn't force you to do anything; it does not infect your code. It is simply a license; that is, it is a set of terms which, if followed, give you permission to copy and distribute that GPL'd code. Those conditions include having no restrictions beyond those of the GPL on code you distribute that is based on (which basically means linked to) the GPL'd code. Your code can be licensed under any GPL compatible license, and if you remove the GPL'd code (including support for linking to it, unless it's the LGPL), then you can go back to using any license you want. |
|||
|
|
Bad or incorrect knowledge of data structures. "I need to find all untranslated strings in our source. I'll just build an array of all the strings, copy it and compare them to eachother." Congrats on your n-squared solution. Some folks with modern CS degrees don't even know what a hash-map does. Or why you would ever use one as opposed to an array or list etc... Drives me nuts. |
|||
|
|
I find that all too many business application programmers are abysmally ignorant of data meaning, database design and data access. Virtually every business application has a database backend, a programmer who doesn't understand how to efficiently and effectively query it will have a badly performing product that users don't want to use. A developer who doesn't bother to learn database design principles before actually designing a database will cause problems in the applications for years to come. Further their ignorance often results in data integrity issues - meaning the data is unreliable or meaningless and thus the application is irrelevant or queries that are so poorly designed they provide the wrong results. Another problem is the developer who thinks that saving a minute of his precious development time is more important than wasting hours of the users' time every day. Programmers should spend all day every day for a week actually using their applications. They would change how they design them. |
|||
|
|
Unreadable code. And large, flat LabVIEW block diagrams that take a couple thousand pixels in both directions. And bland and ugly UI's. And noisy workplaces. And knowledge silos. (What? we can only have one?) |
|||
|
|
Most of my "favorites" are already up here, but here's one I just ran into again last week (from an otherwise decent programmer): Of course, this can be generalize as "not using code the way it is meant to be used". |
||
|
|
|
|
My Pet Peeve? Undocumented code. All the rest can be solved or worked around. |
|||
|
|
|
|
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! |
|||
|
|
|
|
Anyone who calls "SQL Server" "SQL". One is a product of Microsoft, the other is not. |
|||
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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.
|
||||||||||||||||||||
|
|
|
Reinventing the wheel. As in: instead of using 30 minutes to look up a standard, textbook-ish solution (using an actual textbook, Google, or whatever) – first use 25 minutes to design your own solution (because it's somehow less boring; see also NIH), then use another 25 minutes to make your solution compile, then use 1:45 to prevent it from crashing when you just try it, then use 3.5 days for some additional fixes based on integration testing (or whatever it is that you do), and finally spend weeks processing bug reports and log files / stack dumps / whatever that you get from the customers. |
||||
|
|
|
Cowboys who just want to write code before they have finished understanding and then debugging their business rules & requirements. Once you have finished slashing your business requirements and rules with Occam's' Razor the code, modules, libraries, data structure etc. that you need will be bleedingly obvious. Horse first, then cart. |
|||
|
|
|
|
Always starts by writing concrete classes instead of starting to "program by interface". |
|||
