More specifically, what types of mistakes do you most commonly see in code from really green (inexperienced, not the Al Gore kind) programmers?
|
85
|
|||||||||
|
|
|
when the following would have worked fine:
|
|||
|
|
|
||||||||||||
|
|
|
Oh, and this monstrosity: We had a junior programmer who used to do it quite regularly. If I ever am forced to work for a shop insane enough to incentivize based on lines-of-code produced, it'll be at the top of my toolbag:
|
||||||||||||||||||||
|
|
|
OK, so I was bored ... an in truth, some of these only mean you are an OLD developer :) If your code looks like it was written by a committee, you might be an inexperienced developer. If you put comments on every other line of code, you might be an inexperienced developer. If you have never spent more than 4 hours debugging something stupid and obvious, you might be an inexperienced developer. If your code has nested goto statements, you might be an inexperienced developer. If you still write in a language with “basic” in the name, you might be an inexperienced developer. If you have never seen the sun rise and set and rise again while working on a project, you might be an inexperienced developer. If you don’t have a religious opinion on software development, you might be an inexperienced developer. If you use Thread.Sleep() to fix race conditions, you might be an inexperienced developer. If you learn something new, then immediately apply it to EVERY PIECE OF FRACKING CODE YOU WRITE, you might be an inexperienced developer. If you think you are too good to write unit tests for your code, you might be an inexperienced developer. If you have not (yet) learned to despise Hungarian notation, you might be an inexperienced developer. If you have learned to despise Hungarian, and still can’t intelligently argue why it should be used, you might be an inexperienced developer. If you have to fix warnings to compile your code because the compiler treats more than 1000 warnings as an error, you might be an inexperienced developer. If you think design patterns are the Holy Grail for software development, you might be an inexperienced developer. (Or a manager) If you don’t have at least 15 books on programming that you have never read, you might be an inexperienced developer. If you think you have never been guilty of all of the above, you ARE an inexperienced developer. If you don’t know who David Ahl or the Beagle Bros are, you might be an inexperienced developer. If you have never developed software on a team where everyone was smarter than you, you might be an inexperienced developer. If your eight year old kid debugs your code, you might be an inexperienced developer. If you can’t name at least 50 things wrong with the win32 API, you might be an inexperienced developer. If you have never argued with a tester about a bug that is “by design”, you might be an inexperienced developer. If you have never developed on a mainframe, you might be an inexperienced developer. If you have never written anything that uses ASCII graphics, you might be an inexperienced developer. If you have never tried to convince someone that C# is better than Java (or vice-versa), you might be an experienced developer. If you can’t divide hex numbers in your head, you might be an inexperienced developer. If you have never written an application that compiles out to a .com extension (or even know why you would want to), you might be an inexperienced developer. If you have never written a fully functioning application that runs in less than 1k of memory, you might be an inexperienced developer. If you don’t know the difference between 8080 assembler and 6502 assembler, you might be an inexperienced developer. If you have never written software to create music on hardware that doesn’t have any type of sound processor, you might be an inexperienced developer. If you have never been GRUE or WUMPUS hunting, you might be an inexperieced developer. If you have never tried to improve "Eliza", you might be an inexperieced developer. If you can’t relate to any of this, you might not be a developer. /// ==== EDIT I noticed a comment on the original question, why are some of these things wrong? Here are some (random) resources. They range from technically useful, to just history... http://www.amazon.com/Emergent-Design-Evolutionary-Professional-Development/dp/0321509366 http://en.wikipedia.org/wiki/David_H._Ahl http://www.boingboing.net/2006/01/17/dot-matrix-printer-m.html http://www.humanclock.com/webserver.php (25k, but hey - it's a full webserver ...) http://en.wikipedia.org/wiki/Beagle_Bros_Software http://en.wikipedia.org/wiki/Grue_(monster) http://en.wikipedia.org/wiki/Hunt_the_Wumpus http://en.wikipedia.org/wiki/Eliza http://www.joelonsoftware.com/articles/Wrong.html http://blogs.msdn.com/oldnewthing/archive/2005/01/14/352949.aspx http://www.albahari.com/threading/ http://blogs.msdn.com/jfoscoding/archive/2005/08/06/448560.aspx http://msdn.microsoft.com/en-us/library/bb429476(VS.80).aspx http://code.msdn.microsoft.com/sourceanalysis http://www.nunit.org/index.php Heh: http://images.tabulas.com/822/l/dilbert_actual_code.jpg |
||||||||||||||||||||
|
|
|
Most of these seem like bad programmers rather than young ones. In my experience young ones typically don't have the savvy of using some best practices and coding for maintainability - they usually want to show off their skills and brains rather than making code easy to read and maintain. Writing bad code is not exclusive to young programmers. |
||||||||
|
|
|
This is the one I see most frequently by far Imagine there is a method:
Now you need to use this method from another place. What do they do? THIS:
This problem also extends to "intermediate" level programmers, who have learnt about things like function parameters, but will still do things like this:
.... and repeat again for floats, doubles, strings, etc, instead of just using an |
|||
|
|
Fear of straying from what they know. I had a newbie programmer who insisted on using arrays for everything because he knew how to use them. He couldn't comprehend that Collections were just an easy-to-use array -- Collections were big, scary objects and therefore too "complicated" to use. Needless to say he didn't really understand how to use arrays, either... |
||||
|
|
|
Unnecessary looping. For some reason, junior developers/programmers always loop more times than they have to, nest loops more deeply than they need to, or perform the same operation on a data structure twice, in two (or more) different loops. |
||||||||||||
|
|
|
Not having any unit tests for their code. Or (perhaps, even worse) having """unit tests""" for their code that don't really test anything / test a hundred things at once. |
|||
|
|
|
|
Copying rather than reusing code. Creating home-brew 'solutions' when framework solutions are available. Code that doesn't bound-check, guard against generating exceptions, doesn't use exception handling, and is brittle. (In my shop where testing is key) Not writing test code. There are other tell-tale signs that aren't in code, of course. |
||||||||||||||||||||
|
|
|
Learning one hammer and then using it for all problems that it can handle, even if it is ill suited. For example, learning how to use a database and then using it for all data storage, even when a file would be more appropriate. Or, learning how to access files and then using them for all data storage, even when a database would be more appropriate. Or, learning about arrays and then using them for all data structures, even when hash tables would be more appropriate. Or, learning about hash tables and then using them for all data structures, even when arrays would be more appropriate. |
||||||||||||||||||||
|
|
|
instead of
can cost a function call, instead of a single machine instruction. |
||||
|
|
|
|
||||
|
|
|
This made me a sad panda
|
||||||||||||||||||||
|
|
|
Adding lines of code. |
|||
|
|
Using lots of global variables |
||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
|
||||||||||||||||||||
|
