Stop overlooking minor details - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T06:02:13Z http://stackoverflow.com/feeds/question/189791 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/189791/stop-overlooking-minor-details 5 Stop overlooking minor details Mark Lubin 2008-10-10T01:16:00Z 2009-08-24T20:35:47Z <p>Compared to most people on this site I am admittedly a novice. I wanted to get some advice from the pros on how to avoid making stupid errors in your code. </p> <p>Is there anyone else who had the problem when they were first starting out of missing some detail that causes big problems? Are there any habits or behaviors that helped you over come this.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189795#189795 26 Answer by Brian R. Bondy for Stop overlooking minor details Brian R. Bondy 2008-10-10T01:17:22Z 2009-08-24T20:35:47Z <p>Here's a list of common pitfalls, and/or suggestions to avoid them: </p> <ol> <li>Experience, the best way to avoid mistakes is to have already had them happen to you.</li> <li>Review other people's code</li> <li>Have other people review your code</li> <li>Use source control, even if you are the only developer</li> <li>Review all of your changes before doing a commit to source control</li> <li>Consider using a more modern language that makes it harder for you to make mistakes</li> <li>Comment your code extensively</li> <li>Refactor your code early and often</li> <li>Fix bugs before adding features</li> <li>Create extensive test cases, because knowing about your mistakes help you avoid future ones faster.</li> <li>Learn and use design patterns. </li> <li>Avoid code duplication at all costs, try to never copy/paste blocks of code</li> <li>Read about common pitfalls in the programming language you're using</li> </ol> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189800#189800 5 Answer by Gerald for Stop overlooking minor details Gerald 2008-10-10T01:18:11Z 2008-10-10T01:18:11Z <p>Peer code review and unit testing. Only experience will help you stop making the mistakes, but these things will help you learn about the mistakes that you're making early.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189802#189802 10 Answer by KiwiBastard for Stop overlooking minor details KiwiBastard 2008-10-10T01:18:26Z 2008-10-10T01:35:12Z <p>I found writing code or algorithms on paper on, or at least in my head before starting to code. It gets the problem a little clearer in your mind and you don't just fire off and start coding when you can perhaps make silly mistakes being too eager.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189803#189803 4 Answer by bog for Stop overlooking minor details bog 2008-10-10T01:18:30Z 2008-10-10T01:18:30Z <p>Like most other acquired skills, practice makes perfect. Keep training.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189806#189806 0 Answer by EnderMB for Stop overlooking minor details EnderMB 2008-10-10T01:19:18Z 2008-10-10T01:19:18Z <p>We all make stupid mistakes, because we're human.</p> <p>I'm a novice, but I've worked with a number of seasoned professionals that make the same silly mistakes that I make. These are the mistakes that you'll learn from and be able to correct almost immediately.</p> <p>Aside from that, the best thing I can recommend is checking for errors after every small piece of code that you write. It feels great when you can churn out hundreds of lines of code an hour, but you'll soon come crashing down when you have a thousand errors and a thousand lines to check.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189807#189807 1 Answer by NotJarvis for Stop overlooking minor details NotJarvis 2008-10-10T01:19:46Z 2008-10-10T01:19:46Z <p>Comment well.</p> <p>Space out your code well.</p> <p>Have meaningful variable names.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189808#189808 5 Answer by David McGraw for Stop overlooking minor details David McGraw 2008-10-10T01:19:54Z 2008-10-10T01:19:54Z <p>It's like with everything else you will do in life. From burning yourself on the fryer at a local fast food shop, to being an entrepreneur on his/her 3rd startup. </p> <p><strong>Make mistakes</strong>, <strong>learn</strong> from them, and <strong>better</strong> <strong>yourself</strong> - <em>don't ignore them</em>.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189809#189809 8 Answer by Matt Dillard for Stop overlooking minor details Matt Dillard 2008-10-10T01:20:14Z 2008-10-10T01:20:14Z <p>I find that if I <strong>read through the diffs</strong> on all my code just prior to committing it to version control, I am almost <em>guaranteed</em> to find some mistakes. Double that effect (at least) if I've got someone else reviewing the code pre-checkin.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189812#189812 4 Answer by Jay for Stop overlooking minor details Jay 2008-10-10T01:21:08Z 2008-10-10T01:21:08Z <p>I'll add another vote to "practice makes perfect" but with a slight admendment: </p> <p><em>perfect</em> practice makes perfect - a related saying is "practice makes permanent" so in other words make sure that what you're practicing is good coding habits that cut down on mistakes: </p> <ul> <li>unit testing</li> <li>readable code formatting </li> <li>useful variable names</li> <li>source control for revision history</li> </ul> <p>and so on. I also highly reccommend taking a look at good open source projects and seeing how they organize and manage the code. Good examples are even more important to learn from than seeing other people's mistakes :-)</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189813#189813 2 Answer by Jason Jackson for Stop overlooking minor details Jason Jackson 2008-10-10T01:21:12Z 2008-10-10T01:21:12Z <p>Good judgment comes from experience.</p> <p>Experience comes from bad judgment.</p> <p>This may sound overly simplistic, but I try to follow this mantra. I try not to make the same mistakes I have made before.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189819#189819 0 Answer by Cade Roux for Stop overlooking minor details Cade Roux 2008-10-10T01:24:39Z 2008-10-10T01:24:39Z <p>Practice - the more code you write, the more experience you will gain</p> <p>Re-use code - code which has been used a lot is least likely to contain defects</p> <p>Defensive coding - minimize creation of risky code, avoid edge condition effects</p> <p>Testing - look at TDD unit testing (not traditional unit testing) - which mean documenting the expected code behavior and creating code which tests it. More code means more experience, more automation, higher confidence</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189823#189823 2 Answer by itsmatt for Stop overlooking minor details itsmatt 2008-10-10T01:25:39Z 2008-10-10T01:25:39Z <p>You're making a good start - recognizing that you don't have it all figured out. None of us do.</p> <p>Make sure you understand the domain - that will eliminate some errors right off the bat. Know what you are solving, and then go about trying to develop the solution.</p> <p>Have an approach to development. I use a test-first approach, but it isn't the only way. That provides me with a built-in checker that I'm still on course. I utilize my peers to bounce ideas off of, I've used pair programming before and found value in that.</p> <p>If you develop a system to minimize the 'dumb' mistakes, you'll find they'll go away. Maybe a checklist would work. The Personal Software Process encourages that approach. Try it and see if it works.</p> <p>I like to whiteboard my thoughts before I commit them to code. I like my peers to show me why I'm not right in my thinking first. If they can't, I'm reasonably certain I've eliminated some possible hurdles.</p> <p>A LOT of this will come from experience, essentially from time doing what you do and learning from your mistakes!</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189836#189836 4 Answer by Zee JollyRoger for Stop overlooking minor details Zee JollyRoger 2008-10-10T01:37:12Z 2008-10-10T01:37:12Z <p>I find that if I'm having any particular trouble trying to fix a bug or think a problem through I'll take a 5-minute breather. By the time I get something to drink or just relax and come back to the problem I tend to be more focused and less stressed.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189846#189846 1 Answer by Petras for Stop overlooking minor details Petras 2008-10-10T01:46:01Z 2008-10-10T01:46:01Z <p>Generally, BIG mistakes come from diving in and writing software prior to thinking about it. I employ 2 programmers and here's what I insist that they do. It makes a big difference. </p> <p>Draw the screen you are designing on paper and determine how things work as much as possible before coding. Show it to your boss/client/someone else. Explain it to them. Get them to critique it.</p> <p>Never start writing code until you have thought about it as UML. You don't need to be a UML expert but class diagrams showing:</p> <ol> <li>Inheritance</li> <li>Aggregation (eg this site consists of users, users make multiple posts, posts can have multiple comments by other users)</li> </ol> <p>Will make a massive difference to not thinking about it at all.</p> <p>Keep your functions small - never more than say 30 lines, often less. This will help you structure your code.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189849#189849 2 Answer by RWendi for Stop overlooking minor details RWendi 2008-10-10T01:48:24Z 2008-10-10T01:48:24Z <p>Always have the "Keep It Simple" attitude!! You have less chance on making mistakes if you keep things simple.</p> <p><a href="http://www.rwendi.com" rel="nofollow">RWendi</a></p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189860#189860 2 Answer by Cory House for Stop overlooking minor details Cory House 2008-10-10T01:54:40Z 2008-10-10T01:54:40Z <p>Avoid the urge to start writing code before you fully understand the problem. If you only understand part of the problem you're likely to spend time reworking the design later. Get the big picture clear in your mind or on paper, then start coding.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189866#189866 1 Answer by Skittles for Stop overlooking minor details Skittles 2008-10-10T02:01:39Z 2008-10-10T02:01:39Z <p>For me, when I stared to code I use to put a kind of 'to-do' list in a method detailing what I had to do at each stage to complete the job. For example if I had a method that was to get a customers name I would write something like.. </p> <p>public string GetName(int custID) {</p> <pre><code> // Create local variables // Get the connection string from the config file // Create Try Catch Finally block // Create SQL parameters .... etc } </code></pre> <p>I would not leave these in as comments but would delete them as I did the task. I don't do it anymore to be honest and I doubt that you would need to do it for too long.</p> <p>Also, I would recommend that if you are trying to learn something new that you do a 'real' project and not just examples from a book or website (even if it's just a little app for yourself, get it to work). Reading a book on code is no substitute for getting stuck in. </p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189871#189871 0 Answer by pookleblinky for Stop overlooking minor details pookleblinky 2008-10-10T02:04:23Z 2008-10-10T02:04:23Z <p>We all make mistakes. The geniuses are the ones who simply keep them on the cutting board.</p> <p>Practice, do frequent code reviews (I mean, <i>frequent</i>), keep an extensive version history, and make sure you know where to find someone who has learned how to keep his mistakes better hidden.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/189875#189875 1 Answer by rabashani for Stop overlooking minor details rabashani 2008-10-10T02:07:58Z 2008-10-10T02:07:58Z <ol> <li>Do not affraid of mistakes - this is the best way to learn new things</li> <li>This is very important to have a weekly code review - with a pro</li> <li>code at home - it will help you improve yourself faster</li> <li>read others code - open sources code are the best way to learn new things</li> </ol> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/190025#190025 1 Answer by IL for Stop overlooking minor details IL 2008-10-10T03:31:52Z 2008-10-10T03:31:52Z <p>My only advice that hasn't been mentioned already, and that helps me on a regular basis, is this: before I make any significant change, be it code or documentation, I will always take a 10-15 minute break before actually finalising the change. Usually taking the break will let me come back refreshed and - more importantly - not as invested in the change, and most of my stuff-ups become glaringly obvious because of it. This is usually more helpful when you're the only person working on something, otherwise you can just get a Peer Review which is generally superior.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/190588#190588 0 Answer by Michael Barker for Stop overlooking minor details Michael Barker 2008-10-10T09:03:07Z 2008-10-10T09:03:07Z <p>Static analysis tools are very useful. <a href="http://findbugs.sourceforge.net/" rel="nofollow">Findbugs</a> also provides information about why particular practices are harmful to your programs.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/193147#193147 2 Answer by Richard T for Stop overlooking minor details Richard T 2008-10-10T21:47:38Z 2008-10-10T21:47:38Z <p>Patterns - develop or borrow and USE patterns in your work. Some example patterns: consistent use of variable names, consistent location for incrementing counters, consistent placement of error reporting, etc.</p> <p>One vital aspect of using patterns effectively is their visual appearance. One bad practice that amazes me for its common usage is the placement of open braces at the END of a line rather than at the beginning of the next line. For example, this is good practice:</p> <pre><code>void MyMethod(String some_input) { if (some_input == null) { some_input = ""; } } </code></pre> <p>The same method written using a common but bad practice would look like this:</p> <pre><code>void MyMethod(String some_input) { if (some_input == null) { some_input = ""; } } </code></pre> <p>If there's a missing brace somewhere, it's very time consuming to find it!</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/193201#193201 0 Answer by Cruachan for Stop overlooking minor details Cruachan 2008-10-10T22:10:11Z 2008-10-10T22:10:11Z <p>Most of the answers here are fairly general, but there are a number of practical things you can do when developing code to make mistakes less likely. Precisely what they are will differ between languages but for example a common source of bugs are hanging if statements - many languages for not insist you bracket code if it's a single line - e.g.</p> <pre> if fred==bill dosomethingtofred() else dosomethingtobill(); </pre> <p>This will often give rise to bugs - particularly if the code is edited later. I've also not bracketed the test here as again that's permissible in some languages and is a potential error generator. Myself I will <em>always</em>, without exception, structure an if statement in full layed out over the full linage e.g.</p> <pre> if (fred==bill) { dosomethingtobill(); } else { dosomethingtofred(); } </pre> <p>(note personally I prefer line end {. Some people frown on it and in a cooperative environment it is probably better to use the new line style, however I work as a consultant primarily writing code that will be maintained by myself and I rigorously adhere to indentation standards, so the additional compactness of the code pays off) </p> <p>Similar techniques can be applied in most languages over a wide range of code constructs. I'd suggest you examine carefully where you are making the stupid mistakes then consider what code structures would prevent you from doing so then and use them every time going forward. Myself I have a fairly wide range of these constructs built up over several years (for another example all my sql is layed out the same way). As well as reducing stupid errors this also has the additional advantage that I can come back to code after several years and pick up the functionality very quickly.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/193218#193218 0 Answer by Scottie T for Stop overlooking minor details Scottie T 2008-10-10T22:17:16Z 2008-10-10T22:17:16Z <p>Do everything you can to understand your mistakes. Write down what went wrong, everything you tried to fix the error, and what finally worked. I use this method to force myself to slow down and stop guessing blindly. If you do this long enough, you'll develop a detail-oriented work habit that should decrease your mistakes.</p> http://stackoverflow.com/questions/189791/stop-overlooking-minor-details/193228#193228 0 Answer by leppie for Stop overlooking minor details leppie 2008-10-10T22:22:59Z 2008-10-10T22:22:59Z <p>I believe in a simple thing. </p> <p>Code once, code right. </p> <p>And to get that (for me anyways), I need to completely visualize the issue mentally before doing anything. If I do not understand a problem completely, I am very hesitant to continue. </p> <p>That said, sometimes you have to cross the line, and just see whats on the other side without knowing.</p>