What coding mistakes are a telltale giveaway of an inexperienced programmer? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T01:01:48Z http://stackoverflow.com/feeds/question/237241 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer 101 What coding mistakes are a telltale giveaway of an inexperienced programmer? JohnFx 2008-10-26T00:12:49Z 2009-11-05T19:06:58Z <p>More specifically, what types of mistakes do you most commonly see in code from really green (inexperienced, not the Al Gore kind) programmers?</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237244#237244 217 Answer by lucas for What coding mistakes are a telltale giveaway of an inexperienced programmer? lucas 2008-10-26T00:14:29Z 2008-10-26T08:32:17Z <pre><code>if (test) { return true; } else { return false; } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237247#237247 112 Answer by Dave Markle for What coding mistakes are a telltale giveaway of an inexperienced programmer? Dave Markle 2008-10-26T00:15:09Z 2008-10-27T04:10:20Z <ul> <li>Writing too much code</li> <li>Reinventing the wheel</li> <li>Not closing/disposing/releasing resources</li> <li>Not properly handling exceptions (smothering them/ignoring them)</li> <li>Gratuitous overuse of ToString(), sometimes even on String objects!</li> <li>Comparing boolean results directly to "true" and "false"</li> </ul> <blockquote> <pre><code>if (IsAManMan == true) { Console.WriteLine("It's a MAN, man!"); } </code></pre> </blockquote> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237250#237250 87 Answer by Decker for What coding mistakes are a telltale giveaway of an inexperienced programmer? Decker 2008-10-26T00:18:32Z 2008-10-26T00:18:32Z <p>Using lots of global variables</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237253#237253 -2 Answer by Dustin Getz for What coding mistakes are a telltale giveaway of an inexperienced programmer? Dustin Getz 2008-10-26T00:19:47Z 2008-10-26T00:19:47Z <p><a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them">what-are-code-smells-what-is-the-best-way-to-correct-them</a></p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237255#237255 -12 Answer by ironfroggy for What coding mistakes are a telltale giveaway of an inexperienced programmer? ironfroggy 2008-10-26T00:21:13Z 2008-10-26T00:21:13Z <p>Adding lines of code.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237257#237257 155 Answer by Eoin Campbell for What coding mistakes are a telltale giveaway of an inexperienced programmer? Eoin Campbell 2008-10-26T00:22:26Z 2008-10-26T00:22:26Z <p>This made me a sad panda</p> <pre><code>bool x = SomeMethod(); //Sometime later string whatIsX = x.ToString().ToUpper(); if(whatIsX == "TRUE") { //Do Stuff } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237260#237260 18 Answer by vt for What coding mistakes are a telltale giveaway of an inexperienced programmer? vt 2008-10-26T00:26:20Z 2008-10-26T01:03:09Z <ul> <li><p>Reinventing the wheel badly</p> <pre><code>class HashTable { Object[] keys, values; ... Object get(Object key) { Object found = "file not found"; for (int i = 0; i &lt; keys.length; i++) { if (key.equals(keys[i]) == true) { found = values[i]; } else if (key.equals(keys[i]) == false) { // do nothing } } return found; } </code></pre></li> <li>Learning how to use regexps and using them for everything</li> <li>Using strings and regexps for rounding/truncating numbers</li> </ul> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237265#237265 1 Answer by EvilTeach for What coding mistakes are a telltale giveaway of an inexperienced programmer? EvilTeach 2008-10-26T00:28:00Z 2008-11-16T13:58:37Z <pre><code>if ((strcmp(command, "Q")) == 0) { // do stuff } </code></pre> <p>instead of </p> <pre><code>if (command[0] == 'Q') { // Do stuff } </code></pre> <p>can cost a function call, instead of a single machine instruction.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237266#237266 58 Answer by Glomek for What coding mistakes are a telltale giveaway of an inexperienced programmer? Glomek 2008-10-26T00:28:27Z 2008-10-26T00:28:27Z <p>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.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237267#237267 73 Answer by itsmatt for What coding mistakes are a telltale giveaway of an inexperienced programmer? itsmatt 2008-10-26T00:29:02Z 2008-10-26T00:29:02Z <p>Copying rather than reusing code.</p> <p>Creating home-brew 'solutions' when framework solutions are available.</p> <p>Code that doesn't bound-check, guard against generating exceptions, doesn't use exception handling, and is brittle.</p> <p>(In my shop where testing is key) Not writing test code.</p> <p>There are other tell-tale signs that aren't in code, of course.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237270#237270 0 Answer by jedidja for What coding mistakes are a telltale giveaway of an inexperienced programmer? jedidja 2008-10-26T00:36:21Z 2008-10-26T00:36:21Z <p>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.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237354#237354 16 Answer by Ryan for What coding mistakes are a telltale giveaway of an inexperienced programmer? Ryan 2008-10-26T01:46:21Z 2008-10-26T01:46:21Z <p>Unnecessary looping. For some reason, junior developers/programmers <b>always</b> 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.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237366#237366 32 Answer by JPLemme for What coding mistakes are a telltale giveaway of an inexperienced programmer? JPLemme 2008-10-26T01:52:50Z 2008-12-27T16:02:44Z <p>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.</p> <p>Needless to say he didn't really understand how to use arrays, either...</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237389#237389 10 Answer by Orion Edwards for What coding mistakes are a telltale giveaway of an inexperienced programmer? Orion Edwards 2008-10-26T02:14:50Z 2009-07-13T20:36:20Z <p>This is the one I see most frequently <em>by far</em></p> <p>Imagine there is a method:</p> <pre><code>string GetConfigFromFile() { return ReadFile("config.txt"); } </code></pre> <p>Now you need to use this method from another place. What do they do? THIS:</p> <pre><code>string GetConfigFromOtherFile() { return ReadFile("otherconfig.txt"); } </code></pre> <p>This problem also extends to "intermediate" level programmers, who have learnt about things like function parameters, but will still do things like this:</p> <pre><code>int CompareNumbers( int a, int b ) { return a.CompareTo(b); } </code></pre> <p>.... and repeat again for floats, doubles, strings, etc, instead of just using an <code>IComparable</code> or a generic!</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237392#237392 55 Answer by tim for What coding mistakes are a telltale giveaway of an inexperienced programmer? tim 2008-10-26T02:17:39Z 2008-10-26T02:17:39Z <p>Most of these seem like bad programmers rather than young ones. </p> <p>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. </p> <p>Writing bad code is not exclusive to young programmers.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237394#237394 110 Answer by legend for What coding mistakes are a telltale giveaway of an inexperienced programmer? legend 2008-10-26T02:17:53Z 2009-06-24T21:43:49Z <p>OK, so I was bored ... an in truth, some of these only mean you are an OLD developer :)</p> <p><hr /></p> <p>If your code looks like it was written by a committee, you might be an inexperienced developer.</p> <p>If you put comments on every other line of code, you might be an inexperienced developer.</p> <p>If you have never spent more than 4 hours debugging something stupid and obvious, you might be an inexperienced developer.</p> <p>If your code has nested goto statements, you might be an inexperienced developer.</p> <p>If you still write in a language with “basic” in the name, you might be an inexperienced developer.</p> <p>If you have never seen the sun rise and set and rise again while working on a project, you might be an inexperienced developer.</p> <p>If you don’t have a religious opinion on software development, you might be an inexperienced developer.</p> <p>If you use Thread.Sleep() to fix race conditions, you might be an inexperienced developer.</p> <p>If you learn something new, then immediately apply it to EVERY PIECE OF FRACKING CODE YOU WRITE, you might be an inexperienced developer.</p> <p>If you think you are too good to write unit tests for your code, you might be an inexperienced developer.</p> <p>If you have not (yet) learned to despise Hungarian notation, you might be an inexperienced developer.</p> <p>If you have learned to despise Hungarian, and still can’t intelligently argue why it should be used, you might be an inexperienced developer.</p> <p>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.</p> <p>If you think design patterns are the Holy Grail for software development, you might be an inexperienced developer. (Or a manager)</p> <p>If you don’t have at least 15 books on programming that you have never read, you might be an inexperienced developer.</p> <p>If you think you have never been guilty of all of the above, you ARE an inexperienced developer.</p> <p>If you don’t know who David Ahl or the Beagle Bros are, you might be an inexperienced developer.</p> <p>If you have never developed software on a team where everyone was smarter than you, you might be an inexperienced developer.</p> <p>If your eight year old kid debugs your code, you might be an inexperienced developer.</p> <p>If you can’t name at least 50 things wrong with the win32 API, you might be an inexperienced developer.</p> <p>If you have never argued with a tester about a bug that is “by design”, you might be an inexperienced developer.</p> <p>If you have never developed on a mainframe, you might be an inexperienced developer.</p> <p>If you have never written anything that uses ASCII graphics, you might be an inexperienced developer.</p> <p>If you have never tried to convince someone that C# is better than Java (or vice-versa), you might be an experienced developer.</p> <p>If you can’t divide hex numbers in your head, you might be an inexperienced developer.</p> <p>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.</p> <p>If you have never written a fully functioning application that runs in less than 1k of memory, you might be an inexperienced developer.</p> <p>If you don’t know the difference between 8080 assembler and 6502 assembler, you might be an inexperienced developer.</p> <p>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.</p> <p>If you have never been GRUE or WUMPUS hunting, you might be an inexperieced developer. </p> <p>If you have never tried to improve "Eliza", you might be an inexperieced developer.</p> <p>If you can’t relate to any of this, you might not be a developer.</p> <p><hr /></p> <p>/// ==== EDIT</p> <p>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...</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0321509366" rel="nofollow">http://www.amazon.com/Emergent-Design-Evolutionary-Professional-Development/dp/0321509366</a></p> <p><a href="http://rads.stackoverflow.com/amzn/click/0321247140" rel="nofollow">http://www.amazon.com/Design-Patterns-Explained-Perspective-Object-Oriented/dp/0321247140/ref=pd_bxgy_b_img_b</a></p> <p><a href="http://en.wikipedia.org/wiki/David_H._Ahl" rel="nofollow">http://en.wikipedia.org/wiki/David_H._Ahl</a></p> <p><a href="http://www.boingboing.net/2006/01/17/dot-matrix-printer-m.html" rel="nofollow">http://www.boingboing.net/2006/01/17/dot-matrix-printer-m.html</a></p> <p><a href="http://www.humanclock.com/webserver.php" rel="nofollow">http://www.humanclock.com/webserver.php</a> (25k, but hey - it's a full webserver ...)</p> <p><a href="http://en.wikipedia.org/wiki/Beagle_Bros_Software" rel="nofollow">http://en.wikipedia.org/wiki/Beagle_Bros_Software</a></p> <p><a href="http://en.wikipedia.org/wiki/Grue%5F%28monster%29" rel="nofollow">http://en.wikipedia.org/wiki/Grue_(monster)</a></p> <p><a href="http://en.wikipedia.org/wiki/Hunt%5Fthe%5FWumpus" rel="nofollow">http://en.wikipedia.org/wiki/Hunt_the_Wumpus</a></p> <p><a href="http://en.wikipedia.org/wiki/Eliza" rel="nofollow">http://en.wikipedia.org/wiki/Eliza</a></p> <p><a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">http://www.joelonsoftware.com/articles/Wrong.html</a></p> <p><a href="http://blogs.msdn.com/oldnewthing/archive/2005/01/14/352949.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2005/01/14/352949.aspx</a></p> <p><a href="http://www.albahari.com/threading/" rel="nofollow">http://www.albahari.com/threading/</a></p> <p><a href="http://blogs.msdn.com/jfoscoding/archive/2005/08/06/448560.aspx" rel="nofollow">http://blogs.msdn.com/jfoscoding/archive/2005/08/06/448560.aspx</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/bb429476" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb429476</a>(VS.80).aspx</p> <p><a href="http://code.msdn.microsoft.com/sourceanalysis" rel="nofollow">http://code.msdn.microsoft.com/sourceanalysis</a></p> <p><a href="http://www.nunit.org/index.php" rel="nofollow">http://www.nunit.org/index.php</a></p> <p>Heh: <a href="http://images.tabulas.com/822/l/dilbert%5Factual%5Fcode.jpg" rel="nofollow">http://images.tabulas.com/822/l/dilbert_actual_code.jpg</a> </p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237399#237399 72 Answer by Orion Edwards for What coding mistakes are a telltale giveaway of an inexperienced programmer? Orion Edwards 2008-10-26T02:22:05Z 2008-10-26T02:22:05Z <p>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:</p> <pre><code>for( int i = 0; i &lt; 3; i++ ) { switch(i) { case 0: doZeroStuff(); break; case 1: doOneStuff(); break; case 2: doTwoStuff(); break; } } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237401#237401 6 Answer by FlySwat for What coding mistakes are a telltale giveaway of an inexperienced programmer? FlySwat 2008-10-26T02:22:15Z 2008-10-26T02:22:15Z <pre><code>public void DoSomething (bool DontDoSomethingElse) { } // Later DoSomething (!DoSomethingElse); </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237476#237476 10 Answer by bryanbcook for What coding mistakes are a telltale giveaway of an inexperienced programmer? bryanbcook 2008-10-26T03:29:25Z 2009-10-17T04:33:59Z <pre><code>public enum DayOfTheWeek { Monday = 1, Tuesday = 2, Wednesday = 3, Thursday = 4, Friday = 5, Saturday = 6, Sunday = 7 } // somewhere else public DayOfTheWeek ConvertToEnum(int dayOfWeek) { if (dayOfWeek == DayOfTheWeek.Monday) { return DayOfTheWeek.Monday; } else if (dayOfWeek == DayOfTheWeek.Tuesday) { return DayOfTheWeek.Tuesday; } else if (dayOfWeek == DayOfTheWeek.Wednesday) { return DayOfTheWeek.Wednesday; } else if (dayOfWeek == DayOfTheWeek.Thursday) { return DayOfTheWeek.Thursday; } else if (dayOfWeek == DayOfTheWeek.Friday) { return DayOfTheWeek.Friday; } else if (dayOfWeek == DayOfTheWeek.Saturday) { return DayOfTheWeek.Saturday; } else if (dayOfWeek == DayOfTheWeek.Sunday) { return DayOfTheWeek.Sunday; } } </code></pre> <p>when the following would have worked fine:</p> <pre><code>DayOfTheWeek dayOfWeek = (DayOfTheWeek)Enum.Parse(typeof(DayOfTheWeek), dayOfWeek.ToString()); </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237503#237503 21 Answer by Sherm Pendley for What coding mistakes are a telltale giveaway of an inexperienced programmer? Sherm Pendley 2008-10-26T03:50:15Z 2008-10-26T03:50:15Z <p>Two giveaways:</p> <p>Language religion. There is no "one true language," but it can take time and experience to realize that.</p> <p>The belief that complexity is a virtue.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237537#237537 24 Answer by baash05 for What coding mistakes are a telltale giveaway of an inexperienced programmer? baash05 2008-10-26T04:12:56Z 2008-11-16T14:05:57Z <p>I think the complexity is the easiest way to sniff out a new coder. Experienced coders are in their soul lazy. They want things to be readable and they don't like to have to remember what a variable or type is. They realize that the simpler the code is the easier it is to debug and the less likely it is to break. New coders over complicate things. Another thing that I think a new coder does is re-invent the wheel. Not really their fault they just don't know enough about wheels that were already invented. </p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237549#237549 38 Answer by Simon Howard for What coding mistakes are a telltale giveaway of an inexperienced programmer? Simon Howard 2008-10-26T04:18:45Z 2008-10-26T04:18:45Z <p>Probably the most tell-tale sign is an inability to properly factor out code into separate easy-to-understand chunks. If you're regularly encountering functions that are hundreds of lines long, or nested to four or more levels, it's probably a good sign that they're inexperienced.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237554#237554 16 Answer by Paul Nathan for What coding mistakes are a telltale giveaway of an inexperienced programmer? Paul Nathan 2008-10-26T04:23:56Z 2008-10-26T04:23:56Z <p>Writing O(N!) code and passing it off as a working solution.</p> <p>That irritated me.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237564#237564 55 Answer by Chris Lively for What coding mistakes are a telltale giveaway of an inexperienced programmer? Chris Lively 2008-10-26T04:30:17Z 2008-10-27T01:27:27Z <p>The best of sign of inexperienced programmer is the one who constantly rushes headlong into the latest technology. This person wants to immediately apply any new trinket into the mission critical app they are working on. Incidentally, this is a leading cause of project cost overruns and failure.</p> <p>The number two sign of an inexperienced programmer is the one who can't abandon their pet solution when it doesn't work. They will spend hours and days trying to coax it to work instead of wiping the slate and changing direction.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237610#237610 8 Answer by Todd White for What coding mistakes are a telltale giveaway of an inexperienced programmer? Todd White 2008-10-26T05:22:28Z 2008-10-26T05:22:28Z <p>I've seen a number of interns write this code in c#:</p> <pre><code>public type Property { get { return Property; } set { Property = value; } } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237611#237611 10 Answer by bk1e for What coding mistakes are a telltale giveaway of an inexperienced programmer? bk1e 2008-10-26T05:23:42Z 2008-10-26T05:23:42Z <p>Using parallel arrays when an array of structures/records/objects would be more appropriate.</p> <p>Comments that convey the author's uncertainty as to why the code works (e.g. <code>/* I don't know why I have to frob the quux but if I don't then it crashes */</code>). Note that these are sometimes also added by those who inherit the code later (e.g. <code>/* TODO: Why in the world is this code frobbing the quux? */</code>).</p> <p>Comments copied from example code or containing boilerplate documentation.</p> <p>Code "litter": unused local variables, member variables that are only used in one member function (and not saved across calls), superfluous blocks of code, etc.</p> <p>(C++) Taking extra care not to delete <code>NULL</code>:</p> <pre><code>if(ptr) { delete ptr; } </code></pre> <p>(C++) Using unnecessary semicolons to avoid having to remember which blocks actually need them:</p> <pre><code>namespace foo { int bar() { ... }; }; </code></pre> <p>(C++) Not even paying lip service to const correctness:</p> <pre><code>char* surprise = "Hello world!"; </code></pre> <p>(Modifying a pointer to a string literal is undefined behavior, so this should be <code>const char*</code>.)</p> <pre><code>int add(int&amp; a, int&amp; b) { return a + b; } </code></pre> <p>(<code>a</code> and <code>b</code> must be lvalues even though they are not modified.)</p> <pre><code>class baz { ... double get_result() { return m_result; } ... }; </code></pre> <p>(Calling <code>get_result()</code> requires a non-const <code>baz</code>.)</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237718#237718 45 Answer by pablito for What coding mistakes are a telltale giveaway of an inexperienced programmer? pablito 2008-10-26T08:08:22Z 2009-04-30T23:20:18Z <p>I've actually seen this:</p> <pre><code> bool b; switch(b) { case true: DoSomething(); break; case false: UndoSomething(); break; default: MessageBox.Show("Error"); break; } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237735#237735 1 Answer by comctrl6 for What coding mistakes are a telltale giveaway of an inexperienced programmer? comctrl6 2008-10-26T08:29:16Z 2008-10-26T08:29:16Z <p>In the following, "files" is a very large array of strings. This was also a design decision made by the programmer in questions.</p> <pre><code>private String findThePlaylist(String playlistFileName) { String theone = ""; for (int i = 0; i &lt; files.length; i++) { if (files[i] == playlistFileName) { theone = files[i]; } } return theone; } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237737#237737 3 Answer by mamama for What coding mistakes are a telltale giveaway of an inexperienced programmer? mamama 2008-10-26T08:30:31Z 2008-10-26T08:30:31Z <p>Using constants in code and wildly hunting for them whenever they need to be changed.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237749#237749 19 Answer by Barry Brown for What coding mistakes are a telltale giveaway of an inexperienced programmer? Barry Brown 2008-10-26T08:43:41Z 2008-10-26T08:43:41Z <p>The single biggest giveaway I've seen? Not planning before coding.</p> <p>Unfortunately, this applies to intermediate and many advanced programmers, too.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237750#237750 52 Answer by Charles Bailey for What coding mistakes are a telltale giveaway of an inexperienced programmer? Charles Bailey 2008-10-26T08:44:43Z 2008-10-26T08:44:43Z <p>They've know that C strings need to be terminated with a null character, but haven't yet understood this.</p> <pre><code>/* Ensure mystr is zero-terminated */ mystr[ strlen(mystr) ] = '\0'; </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237864#237864 22 Answer by Ather for What coding mistakes are a telltale giveaway of an inexperienced programmer? Ather 2008-10-26T10:55:23Z 2009-07-22T16:29:15Z <p>When the programmer assumes that everything will work out fine ...</p> <pre><code>double MyFunction( int intParam ) { return localVar = 100 / intParam; } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/238471#238471 2 Answer by dpurrington for What coding mistakes are a telltale giveaway of an inexperienced programmer? dpurrington 2008-10-26T19:13:03Z 2008-10-26T19:13:03Z <p>Gratuitous usage of reflection.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/238494#238494 0 Answer by Quibblesome for What coding mistakes are a telltale giveaway of an inexperienced programmer? Quibblesome 2008-10-26T19:33:22Z 2008-10-26T19:33:22Z <ul> <li><p>Exposing collections as get; AND set;</p></li> <li><p>Code in the file that doesn't actually do anything but was included in a bunch of changes they implemented to get it working meaning they think the pointless code "somehow" helps.</p></li> </ul> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/238981#238981 4 Answer by Terry Donaghe for What coding mistakes are a telltale giveaway of an inexperienced programmer? Terry Donaghe 2008-10-27T03:07:26Z 2008-10-27T03:07:26Z <p>Young coders are often very enthusiastic and rush headlong into solving problems without a care towards reuse, coding standards, readability, testing, or anything other than just "gettin' r done." </p> <p>Another newbie habit, especially from guys who've really boned up on patterns and object oriented programming, is over-design. Creating a beautiful class hierarchy that looks fantastic in UML but ends up being a maintenance nightmare - too complex to easily understand how the code flows from top to bottom, no regard at all for performance, etc.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/239030#239030 87 Answer by lagerdalek for What coding mistakes are a telltale giveaway of an inexperienced programmer? lagerdalek 2008-10-27T03:48:20Z 2008-10-27T03:48:20Z <p>Letting the compiler do your testing - "it compiled, it's OK"</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/239855#239855 0 Answer by Thedric Walker for What coding mistakes are a telltale giveaway of an inexperienced programmer? Thedric Walker 2008-10-27T13:24:30Z 2008-10-27T13:24:30Z <p>I don't know but this seems a tad bit suspicious to me:</p> <pre><code>foreach (BaseType b in collBaseType) { if((Type)b.GetType()).BaseType == typeof(DerivedType)) this.saveColl.Add(c) } </code></pre> <p>where b has a type derived from DerivedType.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/253877#253877 1 Answer by Tor Haugen for What coding mistakes are a telltale giveaway of an inexperienced programmer? Tor Haugen 2008-10-31T15:14:35Z 2008-10-31T15:14:35Z <pre><code>string myVariable; ... Foo(myVariable.ToString()); </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/293943#293943 0 Answer by Nazadus for What coding mistakes are a telltale giveaway of an inexperienced programmer? Nazadus 2008-11-16T14:57:16Z 2008-11-16T14:57:16Z <p>I saw this once:</p> <pre><code>object obj= sdr["some_int_value"].ToString(); int i = 0; try { i = (int)obj; } catch { } </code></pre> <p>Int32.TryParse, anyone?</p> <ul> <li>Using try/catch for converting data.</li> <li>Thinking try/catch has zero penalty. Even simply wrapping it in a try has a cost, albeit not much. It doesn't take too many exceptions to make that an expensive call in loops.</li> <li>Using try/catch on every other line of code. All of which has <em>nothing</em> in the catch block.</li> <li>Not commenting what a method/function does. This is a personal pet peeve of mine because I've seen someone have two methods with one having a '2' at the end... and both have very subtle changes.</li> <li>Failing to understand why using the 'using' keyword is important when dealing with connections and datareaders. One can do without it, yes, however the using forces you to close the connection. I've yet to find a reason why not to do it.</li> <li>Not understanding what transactions and stored procedures are important. Inconsistant data, anyone?</li> <li>Not understanding why constraints are important. Race conditions, anyone?</li> </ul> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/326407#326407 11 Answer by Stephane Grenier for What coding mistakes are a telltale giveaway of an inexperienced programmer? Stephane Grenier 2008-11-28T18:42:42Z 2008-11-28T18:42:42Z <p>Another common simple one is:</p> <pre><code>if(value.equals("something")) ... </code></pre> <p>The problem with this one is what happens if value is null? Yup, a NullPointerException. Happens all the time. Instead it should be:</p> <pre><code>if("something".equals(value)) ... </code></pre> <p>Reversing the order can never give you a NullPointerException.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/806562#806562 15 Answer by MadKeithV for What coding mistakes are a telltale giveaway of an inexperienced programmer? MadKeithV 2009-04-30T12:02:26Z 2009-04-30T12:02:26Z <p>Wanting to "start over" on large projects whenever something in the existing framework doesn't match their world view.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/806593#806593 1 Answer by Montecristo for What coding mistakes are a telltale giveaway of an inexperienced programmer? Montecristo 2009-04-30T12:09:51Z 2009-04-30T12:09:51Z <p>I still sometimes print out information to console when I should have used a logger or entered in debugging mode; so using this:</p> <pre><code>System.out.println("Reached foo init, bar is: " + bar); </code></pre> <p>...is risky because it could end up in production environment.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/806597#806597 1 Answer by leppie for What coding mistakes are a telltale giveaway of an inexperienced programmer? leppie 2009-04-30T12:11:03Z 2009-04-30T12:11:03Z <p>Using a Verdana font to program in....</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/806610#806610 18 Answer by Jamie Ide for What coding mistakes are a telltale giveaway of an inexperienced programmer? Jamie Ide 2009-04-30T12:15:48Z 2009-04-30T12:15:48Z <pre><code>try { // try something } catch (Exception ex) { throw ex; } </code></pre> <p>I've seen this submitted in code samples from many applications. Typically the entire method is inside the try block.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/806656#806656 15 Answer by John Topley for What coding mistakes are a telltale giveaway of an inexperienced programmer? John Topley 2009-04-30T12:29:16Z 2009-04-30T12:29:16Z <p>Not only copying and pasting code, but copying and pasting code with comments and not updating the comments to reflect the new context!</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/806672#806672 4 Answer by John Topley for What coding mistakes are a telltale giveaway of an inexperienced programmer? John Topley 2009-04-30T12:33:13Z 2009-04-30T12:48:34Z <p>Not realizing that the <code>toString</code> method exists, instead doing something like:</p> <pre><code>Person p = getPerson(); LOG.debug("Got person, first name is " + p.getFirstName() + ", surname is " + p.getSurname() + ", age is " + p.getAge(), " gender is " + p.getGender()); </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/809510#809510 2 Answer by Barry Brown for What coding mistakes are a telltale giveaway of an inexperienced programmer? Barry Brown 2009-04-30T23:01:34Z 2009-04-30T23:06:42Z <p>You want to know if an integer x is between 0 and 100? Do it this way, of course:</p> <pre><code>for (int i = 0; i &lt;= 100; i++) { if (x == i) { System.out.println(x + " is in range"); // or something similar } } </code></pre> <p>I found something like this inside another loop whose purpose was to determine <em>which</em> elements of an integer array were between 0 and 100.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/809520#809520 0 Answer by NotDan for What coding mistakes are a telltale giveaway of an inexperienced programmer? NotDan 2009-04-30T23:07:28Z 2009-04-30T23:07:28Z <pre><code>if(something) { } else { doSomething(); } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/809525#809525 1 Answer by NotDan for What coding mistakes are a telltale giveaway of an inexperienced programmer? NotDan 2009-04-30T23:09:43Z 2009-04-30T23:09:43Z <pre><code>//Add value to i i += value; //Check if i is less than 10 if(i &lt; 10) { //if i is less than 10, return true return true; } //otherwise i is greater than 10 else { return false; } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/888966#888966 0 Answer by Michael Luton for What coding mistakes are a telltale giveaway of an inexperienced programmer? Michael Luton 2009-05-20T16:30:01Z 2009-05-20T16:30:01Z <p>Using the ternary operator at every available opportunity. Especially when the ternary operator runs really long and an if/then/else statement would be more readable.</p> <pre><code>$foo = (count($articles) &lt; $min_article_count) ? get_articles_by_genre($status, $author, $site_id, $genre) : get_hot_topics($board_id, $platform_id, $min_date); </code></pre> <p>versus</p> <pre><code>if (count($articles) &lt; $min_article_count) { $foo = get_articles_by_genre($status, $author, $site_id, $genre); } else { $foo = get_hot_topics($board_id, $platform_id, $min_date); } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889007#889007 2 Answer by 48klocs for What coding mistakes are a telltale giveaway of an inexperienced programmer? 48klocs 2009-05-20T16:37:38Z 2009-05-20T16:37:38Z <p>Comments in code telling what you're doing rather than explaining why you're doing it is a dead giveaway. I look at it and think to myself "wow, they were really struggling to piece together how the thing worked."</p> <p>We're ostensibly professionals. I don't think we need any comments to explain what's going to happen in that foreach loop. Less of that, more explaining why you're doing something that isn't immediately obvious (OK, I see you're checking the return code against a magic number - why?).</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889038#889038 5 Answer by Alex for What coding mistakes are a telltale giveaway of an inexperienced programmer? Alex 2009-05-20T16:43:02Z 2009-05-20T16:43:02Z <p>This is great but it would be really helpful to see the proper ways to write the code and why. Not everyone has years of experience :)</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889074#889074 0 Answer by egaga for What coding mistakes are a telltale giveaway of an inexperienced programmer? egaga 2009-05-20T16:52:58Z 2009-05-20T16:52:58Z <p>Using comments for a piece of code that should be put into a separate method.</p> <pre><code>x = ... y = ... // foo as a bar return x*y+35 </code></pre> <p>this should be instead:</p> <pre><code>return fooAsABar(x, y) </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889133#889133 4 Answer by Jeff Thompson for What coding mistakes are a telltale giveaway of an inexperienced programmer? Jeff Thompson 2009-05-20T17:10:16Z 2009-05-20T18:25:00Z <p>If you think O(n) is more flexible than O(1) because it has a variable, you are inexperienced.</p> <p>Common and Real mistakes:</p> <ul> <li>Not commenting.</li> <li>Not cleaning up code/interfaces after getting a system to work.</li> <li>Not communicating with their customer (internal or external)</li> <li>Not taking the time to understand the systems they are interfacing with.</li> <li>Modifying another system's internals with a hack to support work on another system.</li> <li>Not verifying that their code compiles and that the app successfully launches before checking in. </li> <li>Giving best case estimates that only include implementation time.</li> </ul> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889208#889208 2 Answer by Alexander Kahoun for What coding mistakes are a telltale giveaway of an inexperienced programmer? Alexander Kahoun 2009-05-20T17:27:50Z 2009-05-20T17:27:50Z <p>Usually when you see something like this:</p> <pre><code>public static string ProcessUpdate(string xml) { string result = ""; try { //code... } catch (Exception exception) { result = exception.Message.ToString(); } if (result == "") result = "True"; return result; } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889449#889449 32 Answer by Chris for What coding mistakes are a telltale giveaway of an inexperienced programmer? Chris 2009-05-20T18:20:49Z 2009-05-20T18:20:49Z <p>Not being happier to delete code than to write it. </p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889460#889460 0 Answer by Decio Lira for What coding mistakes are a telltale giveaway of an inexperienced programmer? Decio Lira 2009-05-20T18:23:34Z 2009-05-20T18:23:34Z <p>I just saw this</p> <pre><code>move(0+shift); </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889555#889555 3 Answer by Jeremy Murray for What coding mistakes are a telltale giveaway of an inexperienced programmer? Jeremy Murray 2009-05-20T18:44:10Z 2009-05-20T18:44:10Z <p>Coding newbie mistakes:</p> <ul> <li>Code compiles but doesn't run.</li> <li>Code runs but fails unit tests.</li> <li>Breaking published style guidelines.</li> <li>Changing line-endings, even mid-file.</li> <li>Not commenting their code as they write it.</li> </ul> <p>Coding group newbie mistakes:</p> <ul> <li>Not asking for code review throughout their first projects.</li> <li>Not asking questions about assignments.</li> <li>Not documenting specifications and deliverables for their projects.</li> <li>Not reading documentation before asking questions.</li> <li>Not Googling before asking questions.</li> <li>Not spending time familiarizing themselves with their daily toolset.</li> <li>Throwing their two cents into every group discussion.</li> </ul> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889585#889585 1 Answer by Kevin for What coding mistakes are a telltale giveaway of an inexperienced programmer? Kevin 2009-05-20T18:50:48Z 2009-05-20T18:50:48Z <p><pre><code>for (int i = 0; i &lt; 12; i++) { if(test) { i=12; } else { //do stuff } } </pre></code></p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889631#889631 2 Answer by Dana Holt for What coding mistakes are a telltale giveaway of an inexperienced programmer? Dana Holt 2009-05-20T19:01:20Z 2009-05-20T19:01:20Z <p>A few I've seen:</p> <ul> <li>Writing single methods/functions that do several unrelated things </li> <li>Rewriting functionality that is already available</li> <li>Fixing bug symptoms instead of the root cause</li> </ul> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889751#889751 1 Answer by BZ for What coding mistakes are a telltale giveaway of an inexperienced programmer? BZ 2009-05-20T19:23:11Z 2009-05-20T19:23:11Z <p>Putting anything in the comments/log/Error statements that they wouldn't want published. I.e. Errors that use one of George Carlin's 7 words Log Statements that would be bad if pushed to production </p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889777#889777 0 Answer by ziggystar for What coding mistakes are a telltale giveaway of an inexperienced programmer? ziggystar 2009-05-20T19:28:40Z 2009-05-20T19:28:40Z <p>I've seen the following (or similar) code written both by my current colleague and our predecessor.</p> <pre><code>some_string[strlen(some_string)] = 0; </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889877#889877 0 Answer by Sliff for What coding mistakes are a telltale giveaway of an inexperienced programmer? Sliff 2009-05-20T19:47:59Z 2009-05-20T19:47:59Z <p>In a previous job, at the end of my first week a fresh graduate was let go after he'd been there for a couple of months. I had my inklings on the first day that he wasn't really cut out for it when he exclaimed that "wow you can create a csv file from within Excel by changing the file format in the save dialog" to another junior developer. </p> <p>Anyway I picked up a project he'd been working on a few weeks later and found its performance progressively degraded over time. It didn't take much digging to discover that he'd never been taught what a SQL WHERE clause was. Every time you clicked on a record in a grid, he'd perform a SELECT * again and then iterate through every record to find the one with the id matching that of the selected row. He utilised the same approach once the dialog for editing the record was shown, and again for any foreign keyed fields which were used to populate combo boxes on said forms.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889911#889911 4 Answer by for What coding mistakes are a telltale giveaway of an inexperienced programmer? 2009-05-20T19:54:20Z 2009-05-20T19:54:20Z <p>Coding by superstition.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889949#889949 2 Answer by Paulo Guedes for What coding mistakes are a telltale giveaway of an inexperienced programmer? Paulo Guedes 2009-05-20T20:02:49Z 2009-05-20T20:02:49Z <p>I once came accross a code like this:</p> <pre><code>If month="Jan" Then Responde.Write "January" Responde.Write "Sun Mon Tue Wed Thu Fri Sat" For i = 1 to 7 Responde.Write i &amp; " " Next For i = 8 to 14 Responde.Write i &amp; " " Next For i = 15 to 21 Responde.Write i &amp; " " Next For i = 22 to 28 Responde.Write i &amp; " " Next For i = 29 to 31 Responde.Write i &amp; " " Next ElseIf month="Feb" Then Response.Write "February" Responde.Write "Sun Mon Tue Wed Thu Fri Sat" For i = 1 to 7 Responde.Write i &amp; " " End For i = 8 to 14 Responde.Write i &amp; " " Next For i = 15 to 21 Responde.Write i &amp; " " Next For i = 22 to 28 Responde.Write i &amp; " " Next For i = 29 to 31 Responde.Write i &amp; " " Next ElseIf month="Mar" Then Responde.Write "Mars" Responde.Write "Sun Mon Tue Wed Thu Fri Sat" For i = 1 to 7 Responde.Write i &amp; " " Next For i = 8 to 14 Responde.Write i &amp; " " Next For i = 15 to 21 Responde.Write i &amp; " " Next For i = 22 to 28 Responde.Write i &amp; " " Next For i = 29 to 31 Responde.Write i &amp; " " Next ... and so it goes. </code></pre> <p>Not only the guy didn't know anything about arrays and loops but he also lacks experience about how different are the months within a year. :-)</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889958#889958 0 Answer by Nils-Petter Nilsen for What coding mistakes are a telltale giveaway of an inexperienced programmer? Nils-Petter Nilsen 2009-05-20T20:05:00Z 2009-05-20T20:05:00Z <p>I came across this one a while ago, in some code I inherited from a programmer that simply wasn't able to gather experience, even after several years in the job:</p> <pre><code>String dir = "c:/foo"; for (int i = 0 ; i &lt; 2 ; i++) { //Do stuff in folder dir = "c:\bar"; } </code></pre> <p>I've also met 2nd year programming students that simply couldn't grasp the concept of for loops. There's a giveaway...</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/890013#890013 0 Answer by Mistaker for What coding mistakes are a telltale giveaway of an inexperienced programmer? Mistaker 2009-05-20T20:16:45Z 2009-05-21T04:02:28Z <p>Taking comparison to constants too far.</p> <p>This is understandable:</p> <pre><code>if(5 == x) { /* something */ } </code></pre> <p>but this is taking it too far</p> <pre><code>if(5 &lt; x) { /* something */ } </code></pre> <p>especially if there are complex conditions involved.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/890464#890464 7 Answer by jfar for What coding mistakes are a telltale giveaway of an inexperienced programmer? jfar 2009-05-20T21:55:13Z 2009-05-20T21:55:13Z <p>In a static language using switch statements all over the place when inheritance will solve your problem. Example is simple but I hope illustrates the point.</p> <pre><code>class Car { public string Name { get; set; } public void Drive( int speed ) {} } var myCar = new Car(); switch ( myCar.Name ) { case "Mustang": myCar.Drive(120); case "Corolla": myCar.Drive(60); } </code></pre> <p>Vs.</p> <pre><code>public abstract class Car { public abstract Drive(); } public class Mustang : Car { public override void Drive() { //go fast } } public class Corolla : Car { public override void Drive() { //go slow } } var myCar = new Mustang(); myCar.Drive() </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/891206#891206 0 Answer by Sean for What coding mistakes are a telltale giveaway of an inexperienced programmer? Sean 2009-05-21T02:50:42Z 2009-05-21T03:30:50Z <p>In C; </p> <pre><code>#ifndef TRUE #define TRUE 0 #endif #ifndef FALSE #define FALSE 1 #endif </code></pre> <p>You have no idea how easy it is to miss what is wrong with this code when it's buried amongst a bunch of other code, and how hard it is to track down the problems that it causes.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/891207#891207 21 Answer by Eric for What coding mistakes are a telltale giveaway of an inexperienced programmer? Eric 2009-05-21T02:51:36Z 2009-05-21T02:51:36Z <p>Not asking questions when they don't know.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/891308#891308 4 Answer by David Plumpton for What coding mistakes are a telltale giveaway of an inexperienced programmer? David Plumpton 2009-05-21T03:40:20Z 2009-05-21T03:40:20Z <p>Re-implementing library functions without realizing it.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/891731#891731 4 Answer by James for What coding mistakes are a telltale giveaway of an inexperienced programmer? James 2009-05-21T07:16:51Z 2009-05-21T07:16:51Z <p>Beyond the obvious of rolling your own solution to common problems with common solutions...</p> <p>a = 3; a = 3; // Sometimes the first set doesn't seem to work.</p> <p>Or other forms of superstitious programming. You really only see such when the person writing it doesn't undestand what they're doing. </p> <p>Though I swear, while in college, I once made something in C compile by adding the line: </p> <p>short bus; // This program rides the short bus.</p> <p>I kid you not. (and no, there was no reference to 'bus' in the program. To this day, I'm not sure how it fixed the issue, but I was surely a noob at the time.) </p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/892255#892255 3 Answer by Alterlife for What coding mistakes are a telltale giveaway of an inexperienced programmer? Alterlife 2009-05-21T10:26:20Z 2009-05-21T10:26:20Z <blockquote> <p><code>int i; // define i as an integer </code></p> </blockquote> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/893377#893377 3 Answer by dysmsyd for What coding mistakes are a telltale giveaway of an inexperienced programmer? dysmsyd 2009-05-21T14:59:00Z 2009-07-22T16:41:14Z <p>things that boil down to:</p> <pre><code>if some_bool == true: some_bool = false else: some_bool = true </code></pre> <p>instead of </p> <pre><code>some_bool = !some_bool </code></pre> <p>and <a href="http://thedailywtf.com/Articles/The%5FFOR-CASE%5Fparadigm.aspx" rel="nofollow">for-case</a> structures.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/893575#893575 1 Answer by Jonathan Brumley for What coding mistakes are a telltale giveaway of an inexperienced programmer? Jonathan Brumley 2009-05-21T15:35:53Z 2009-05-21T15:35:53Z <p>Inexperienced software designers often attempt to use the Observer Pattern in multi-threaded software without carefully considering deadlocks and race conditions. </p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/919497#919497 6 Answer by too much php for What coding mistakes are a telltale giveaway of an inexperienced programmer? too much php 2009-05-28T06:45:23Z 2009-05-28T06:45:23Z <p><strong>Hand-built Date/Time Functions.</strong> Usually when a programmer shows me some of his old code (written when he was just starting in programming), there are at least one or two functions to add/subtract dates, or get the total number of days in a given month (e.g., 28 for February). Experienced programmers have learned that dates are actually very complicated, and so they use their language's built-in date/time libraries so that they don't have to deal with time zones, leap years, leap seconds, daylite savings, etc, etc.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/919815#919815 0 Answer by Patrick Gryciuk for What coding mistakes are a telltale giveaway of an inexperienced programmer? Patrick Gryciuk 2009-05-28T08:38:57Z 2009-05-28T08:38:57Z <p>If code segfaults</p> <pre><code>printf("HERE"); do_something(); printf("HERE"); do_something2(); printf("HERE"); do_something3(); printf("HERE"); do_something4(); printf("HERE"); </code></pre> <p>and counting how many "HERE"s there are before the code segfaults. </p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/922002#922002 3 Answer by Sliff for What coding mistakes are a telltale giveaway of an inexperienced programmer? Sliff 2009-05-28T16:56:22Z 2009-05-28T16:56:22Z <p>One junior developer I've worked with, has a particularly amusing (in a sad) way of deflecting issues with his code onto others. However instead of coming out with believable claims about where the issue lies, he'll go for broke and say it's a bug in C# or WPF, or sometimes more generically just that it's a "Microsoft Bug".</p> <p>I'm not sure whether the fact that people who should know better blanketly believe him is worse than his attempts to cover up his lack of understanding (as he doesn't "like" reading technical books and rushes head first into any new technologies he has to use).</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1040783#1040783 0 Answer by Jin Kim for What coding mistakes are a telltale giveaway of an inexperienced programmer? Jin Kim 2009-06-24T20:27:20Z 2009-06-24T20:27:20Z <p>On the subject of exception handling:</p> <ol> <li>Swallowing an exception and doing nothing with it. (If nothing is done, it should be passed up the call stack)</li> <li>Swallowing a custom exception and throwing a more generic exception.</li> <li>Throwing a custom exception as a result of a generic exception being thrown, but not chaining the custom exception to the originally thrown exception.</li> </ol> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1040807#1040807 0 Answer by Jim Evans for What coding mistakes are a telltale giveaway of an inexperienced programmer? Jim Evans 2009-06-24T20:31:09Z 2009-06-24T20:31:09Z <p>Multiple nested regions. (.Net)</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1040972#1040972 -2 Answer by dwelch for What coding mistakes are a telltale giveaway of an inexperienced programmer? dwelch 2009-06-24T21:00:45Z 2009-06-24T21:00:45Z <p>Passing structures across compile domains. Passing structures in general.</p> <p>not understanding the dangers of malloc(), strcpy(), strlen(), scanf(), etc.</p> <p>Trying to use an equal with floating point numbers. (In general not understanding floating point while trying to use it).</p> <p>Using ghee whiz features of a language or tool, just because it makes them feel special or superior, etc. Or just because. Not understanding the cost or risk.</p> <p>Using a new (to them) language on a project just because they wanted to learn the new language.</p> <p>Never learning assembly. Never disassembling and examining their code.</p> <p>Never questioning things like globals, a single return per function, goto's. That doesnt mean use them that means question the teacher (after you pass the classes and get your diploma).</p> <p>Not understanding the dangers of local variables. Not understanding the dangers of local globals (locals with the word static in front of them).</p> <p>Doing things like this: unsigned int *something; unsigned char *cptr; ... cptr=(unsigned char)something; ... Then using *cptr or cptr[]</p> <p>Doing things like this: unsigned int IamLazy; IamLazy=I.am.too.lazy.to.type; Just because you are to lazy to type. Not understanding the implications of that action.</p> <p>If you cannot install the software you wrote on a computer, you are not a developer. If you cannot install the operating system on a computer then install your software you are not a developer. If you cannot repair the operating system on the computer that runs your software, you are not a developer. If you cannot build a computer from a box of parts (motherboard, memory, processor, hard disks, etc) well I will let it go, normally that is the first task on the first day of your first job, then the os, then the compilers/tools. If you make it that far then you might be allowed to write code.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1040980#1040980 1 Answer by João Marcus for What coding mistakes are a telltale giveaway of an inexperienced programmer? João Marcus 2009-06-24T21:01:42Z 2009-06-24T21:01:42Z <p>Inexperienced developers usually rant a lot about everybody else's code. They're not bad coders, they're just not used to dealing with rotten code everyone usually finds in real life. They still don't have the experience to understand the context behind the code. Was it caused by last-minute requirement changes? Was it caused by real sloppy coding? Was it caused by Dr. Jekyll requirements (looks fine at first but grows up to be a real monster)? </p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1041130#1041130 2 Answer by jprete for What coding mistakes are a telltale giveaway of an inexperienced programmer? jprete 2009-06-24T21:35:11Z 2009-06-24T21:35:11Z <p>Doing shotgun-style modifications to an existing codebase in order to get something running without paying attention to how those changes affect the rest of the system.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1041175#1041175 1 Answer by rein for What coding mistakes are a telltale giveaway of an inexperienced programmer? rein 2009-06-24T21:47:28Z 2009-06-24T21:47:28Z <p>Wanting to rewrite every piece of code they aquire. This is a sheer sign of newbieness.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1041357#1041357 1 Answer by JohnFx for What coding mistakes are a telltale giveaway of an inexperienced programmer? JohnFx 2009-06-24T22:32:44Z 2009-06-24T22:32:44Z <p>Using input/output parameter types that are way too general and require the caller to understand the innards of the methods to use it and force tight coupling.</p> <pre><code>SqlDataReader getEmployee(int EmployeeID) {....} void addInvoiceLineItems(object[] LineItems) {....} </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1118841#1118841 0 Answer by bobobobo for What coding mistakes are a telltale giveaway of an inexperienced programmer? bobobobo 2009-07-13T11:01:24Z 2009-07-13T11:01:24Z <p>Conversions from wide character type to ascii when unnecessary</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1118919#1118919 1 Answer by LKM for What coding mistakes are a telltale giveaway of an inexperienced programmer? LKM 2009-07-13T11:20:46Z 2009-07-15T11:24:05Z <p>Inexperienced programmers typically don't know the Libraries well, so re-implementation of common library functions (say, to parse dates, or escape HTML) is often a good way to tell how much experience somebody has.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1119095#1119095 0 Answer by mandrake for What coding mistakes are a telltale giveaway of an inexperienced programmer? mandrake 2009-07-13T12:08:57Z 2009-07-13T12:20:59Z <ul> <li>Adding using directives and declarations in header files.</li> <li>Making class internals public instead of adding accessors.</li> <li>Always passing by value instead of const reference.</li> <li>Not implementing (or hiding) copy-constructor and assignment operator for objects that allocates and handles memory.</li> <li><p>Having method names longer than the method. Actual example (!): </p> <pre><code>dontResendSigIntInfoIfReasonAllreadyExistsWithinTimePeriod(...) </code></pre></li> </ul> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1119171#1119171 0 Answer by SilentGhost for What coding mistakes are a telltale giveaway of an inexperienced programmer? SilentGhost 2009-07-13T12:30:58Z 2009-07-13T12:30:58Z <p>irrational wishes (of <a href="http://stackoverflow.com/questions/1118994/php-extracting-a-property-from-an-array-of-objects">this sort</a>) without regard for readability, maintainability, etc.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1119207#1119207 0 Answer by Slace for What coding mistakes are a telltale giveaway of an inexperienced programmer? Slace 2009-07-13T12:39:51Z 2009-07-13T12:39:51Z <p>In web development not understanding the difference between the client and server is something that I've seen quite a few times from new developers.</p> <p>I've been asked why this didn't work plenty of times (ie - why my doesn't my alert show):</p> <pre><code>Page.ClientScript.RegisterStartupScript(this.GetType(), "notification", "alert('Success!');", true); Response.Redirect("/default.aspx"); </code></pre> <p>(I think that code's right :P).</p> <p>And using <strong>alerts</strong> for debugging JavaScript, man that is such a frustrating thing to see, particularly when using Firebug!</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1119210#1119210 1 Answer by TM for What coding mistakes are a telltale giveaway of an inexperienced programmer? TM 2009-07-13T12:40:28Z 2009-07-13T13:35:28Z <pre><code>try { // some stuff } catch (Exception e) { // should never happen! } </code></pre> <p>You shouldn't throw away an exception without logging or anything, even if you think it will never happen! It's made worse when catching any type of exception. </p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1119353#1119353 0 Answer by CoderTao for What coding mistakes are a telltale giveaway of an inexperienced programmer? CoderTao 2009-07-13T13:10:05Z 2009-07-13T13:10:05Z <p>I'd argue that terrible variable naming is one of the best giveaways (along with poor structure). The worst would be two-three letter names for class variables.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1119493#1119493 2 Answer by hythlodayr for What coding mistakes are a telltale giveaway of an inexperienced programmer? hythlodayr 2009-07-13T13:37:37Z 2009-07-13T13:37:37Z <ol> <li>Fragile logic.</li> <li>No abstractions with humongous code--if I'm hitting page-down more than a few times...</li> <li>Engineering code for "the future".</li> <li>Abstracting unnecessarily.</li> <li>Extension of #3 &amp; #4 for OO: Huge # of classes in the first pass of a design, when a handful is what's really needed.</li> <li>Coding without really understanding the user requirements.</li> </ol> <p>To be honest, even experienced coders--though perhaps barring the godly ones--are guilty of all of these but I think the scale of these mistakes set experienced and inexperienced coders apart.</p> <p>I also think #6 is the hardest to get "right" &amp; the guy that can massage out the necessary user requirements isn't necessarily the best programmer either. In theory, a good business analyst--if you have one handy--can capture the correct requirements. In practice, the programmer needs to understand the business well enough to notice oversights in design and tease out unspoken assumptions on the business side.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1120328#1120328 -1 Answer by Kelly French for What coding mistakes are a telltale giveaway of an inexperienced programmer? Kelly French 2009-07-13T15:54:09Z 2009-07-13T15:54:09Z <p>Not understanding the concept a = a + 1;</p> <p>When I was a lab assistant in school, I guy came for help with an intro to Fortran assignment and couldn't even program a loop to increment a simple int variable with a = a + 1;. When I refused to write the code for him (after 10-20 minutes of trying to explain the concept) he then declares that I'm an idiot and he knows what he's talking about because he's taken the intro to Fortran class three(!) times.</p> <p>You might say that this wouldn't happen in the real world but I worked with a guy who 'taught himself' to code by supporting some obscure database product. He barely understood the code of the import routines. When our manager forced him to write a program in 'C' (after being to the training class) he would come by for help with the same basic loop/a=a+1 type problem. Needless to say, he didn't pass the test.</p> <p>Sigh.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1120373#1120373 0 Answer by wic for What coding mistakes are a telltale giveaway of an inexperienced programmer? wic 2009-07-13T16:01:18Z 2009-07-13T16:01:18Z <p>The biggest giveaway is definitely programmers using <code>public static</code> methods all over the place. That is, knowingly or (hopefully) unknowingly using OO features as an excuse for writing procedural code.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1120382#1120382 1 Answer by DroidIn.net for What coding mistakes are a telltale giveaway of an inexperienced programmer? DroidIn.net 2009-07-13T16:03:03Z 2009-07-13T16:03:03Z <ol> <li>Not using code conventions, for example using first-uppercase to name you variables in Java (insert you favorite language here)</li> <li>Methods that go on and on and on</li> <li>Everything is in one class</li> <li>Copy/paste code</li> <li>Nested loops</li> <li>Mad chaining (darn, what did just throw that NullPointerException?)</li> <li>Exception swallowing</li> <li>Commented out code</li> <li>System.out.println</li> </ol> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1120442#1120442 3 Answer by Dinah for What coding mistakes are a telltale giveaway of an inexperienced programmer? Dinah 2009-07-13T16:11:49Z 2009-07-13T16:11:49Z <p>2 words: arrow code</p> <p>For those not familiar with the term:</p> <pre><code>if () { if() { if() { if() { // notice the shape of all the nesting // starting to resemble an arrow } else {} } else {} } else {} } else {} </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1120473#1120473 0 Answer by bernie for What coding mistakes are a telltale giveaway of an inexperienced programmer? bernie 2009-07-13T16:15:33Z 2009-07-13T16:15:33Z <p>Uninitialized pointers (with a check for NULL -- because the application may have crashed at some point when trying to dereference NULL):</p> <pre><code>char *ptr; if (ptr != NULL) { ... } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1123697#1123697 0 Answer by Kthevar for What coding mistakes are a telltale giveaway of an inexperienced programmer? Kthevar 2009-07-14T06:07:27Z 2009-07-14T06:07:27Z <p>Most of ASP.Net newbies try to frame the HTML inside the aspx.CS file instead of aspx file. If you hard code the HTML code inside the .CS file there is noway the designer can make the changes without developer support. The code is no longer stable.</p> <p>Eg:</p> <p>Literal lt=new Literal();</p> <p>lt.Text=" test.....";</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1166633#1166633 0 Answer by Jeffrey Kemp for What coding mistakes are a telltale giveaway of an inexperienced programmer? Jeffrey Kemp 2009-07-22T16:49:44Z 2009-07-22T16:49:44Z <p>Using a word processor to write code. More often than you'd think I've had someone ask me why their code doesn't compile, and it's because they've got some `magic quote characters' instead of just ' or ".</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1166809#1166809 -1 Answer by dar7yl for What coding mistakes are a telltale giveaway of an inexperienced programmer? dar7yl 2009-07-22T17:14:42Z 2009-07-22T17:14:42Z <p>It's when you come up to your new hire and find him reading "<em>C for Dummies</em>".</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1249420#1249420 1 Answer by df for What coding mistakes are a telltale giveaway of an inexperienced programmer? df 2009-08-08T17:24:20Z 2009-08-08T17:24:20Z <pre><code>@Override public int hashCode() { return 0; } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1544747#1544747 1 Answer by John Isaacks for What coding mistakes are a telltale giveaway of an inexperienced programmer? John Isaacks 2009-10-09T16:15:37Z 2009-10-09T16:15:37Z <p>When someone spends hours repeating a task when they could take 5 minutes to write a script to do it for them and never have to do it again.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1581354#1581354 0 Answer by Peeter Joot for What coding mistakes are a telltale giveaway of an inexperienced programmer? Peeter Joot 2009-10-17T03:50:34Z 2009-10-17T03:50:34Z <p>Returning pointers to stack variables is one that I've seen green programmers do a number of times.</p> <pre> int * blah() { int x ; return &x ; } </pre> <pre> char * foo() { char x[3] ; return x ; } </pre> <p>(with implied use in the caller). In all fairness, lots of non-green programmers do the same thing, but we find less obvious and harder to debug ways to do it (like saving the address to a structure somewhere, and loosing track of where we were when this was done).</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1581386#1581386 0 Answer by O. Askari for What coding mistakes are a telltale giveaway of an inexperienced programmer? O. Askari 2009-10-17T04:17:17Z 2009-10-17T04:17:17Z <p>Using a method of a class inside that class and the method happens to be something that needs to be static.</p> <pre><code>public class MyClass { public int GetRandomNumber() { ... } public void MyMethod() { MyClass c = new MyClass(); int number = c.GetRandomNumber(); // Do the rest of the job without using c } } </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1581392#1581392 0 Answer by Scott S. for What coding mistakes are a telltale giveaway of an inexperienced programmer? Scott S. 2009-10-17T04:20:15Z 2009-10-17T04:20:15Z <p>I was always fond of</p> <pre><code>if (x = 1) { ... } </code></pre> <p>But maybe that is more inexperienced than you were thinking.</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1682680#1682680 0 Answer by Wulfbane for What coding mistakes are a telltale giveaway of an inexperienced programmer? Wulfbane 2009-11-05T18:42:24Z 2009-11-05T18:42:24Z <p>I found this in some code a while back:</p> <pre><code>int four = Convert.ToInt32("4"); </code></pre> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1682754#1682754 0 Answer by PaoloVictor for What coding mistakes are a telltale giveaway of an inexperienced programmer? PaoloVictor 2009-11-05T18:52:22Z 2009-11-05T18:52:22Z <p>I've actually seen some people using Bubblesort (implemented by themselves, obviously) because they didn't know about Quicksort/Mergesort or thought that their program would need to do "complex comparisons" and that "qsort only sorts ints, floats and doubles".</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1682851#1682851 0 Answer by BlairHippo for What coding mistakes are a telltale giveaway of an inexperienced programmer? BlairHippo 2009-11-05T19:06:58Z 2009-11-05T19:06:58Z <p>Doesn't understand how to use comments. May take one of two extremes. There's your blindingly obvious waste-of-keystrokes commenter:</p> <pre><code>cakes++; // Increment the counter keeping track of the number of cakes</code></pre> <p>... and there's the "Comments are ALWAYS a complete waste of time!" religious fanatic.</p> <p>If you truly think your code is opaque unless you describe every tiny detail of what it's doing, or if you've never once encountered a comment that told you something you DESPERATELY needed to know and otherwise would have learned The Hard Way ... yeah. Either way, I call green.</p>