Your personal, successful coding practices. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T00:52:23Z http://stackoverflow.com/feeds/question/303018 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices 23 Your personal, successful coding practices. Bill K 2008-11-19T19:15:26Z 2009-11-08T18:09:48Z <p>I've been thinking lately about a few practices that I have kind of adopted. Not things you see listed all the times, but patterns that you've looked back and said "I'm glad I did that", then adopted for yourself.</p> <p>I'm not really thinking of the ones you hear all the time, like "Refactoring" or any design patterns listed in common books either, but would include specific refactoring patterns that you find success with but don't hear about very often...</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303043#303043 12 Answer by Paul Tomblin for Your personal, successful coding practices. Paul Tomblin 2008-11-19T19:27:12Z 2008-11-19T19:27:12Z <p><strong>Separate Data from Code</strong>. This is one of my biggest driving factors now--my ultimate mantra. I'm not talking about constants you declare in code as scalars, more about identifying patterns where you can extract data and place it in arrays and use them to instantiate collections of objects--eliminating repeated patterns. </p> <p>This works very well on GUI code, I no longer would ever consider writing "new Button("Click Me")", because "Click Me" is data and should be from an array, as should all the GUI objects and, preferably, most of their locations and handlers.</p> <p>This pattern allows some remarkable refactorings that are impossible without recognizing what is data and what is code.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303044#303044 12 Answer by Kudos2u2 for Your personal, successful coding practices. Kudos2u2 2008-11-19T19:27:19Z 2008-11-19T20:43:30Z <p>My best change was using the single responsibility principle. Each class I write only does one thing so it is really easy to troubleshoot problems when they are broken down into small chunks. Sure I have many more classes now but by properly namespacing them and placing them in folders I can easily manage them. SRP encourages code re-use and really enables unit testing (and I think is a key concept for test driven development)</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303047#303047 4 Answer by Paul Tomblin for Your personal, successful coding practices. Paul Tomblin 2008-11-19T19:27:59Z 2008-11-19T21:04:58Z <p><strong>Never pass around raw/native/library objects (specifically collections).</strong> I try to avoid passing around ANY raw java objects that I can't extend and aren't part of my "domain". </p> <p>A class accepting a "List" gives no hint as to what you should pass in, a class expecting a "CarCollection" tells you exactly what to pass in, and the CarCollection class itself can insure it's in a valid state with valid items, a List, even a generic <code>List&lt;Cars&gt;</code> cannot. Finally, you almost always want to add methods, when you use raw objects these usually become crappy utilities distributed throughout your code instead.</p> <p>This has allowed me a remarkable flexibility when it comes to adding features that weren't planned for in the first place.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303059#303059 2 Answer by VonC for Your personal, successful coding practices. VonC 2008-11-19T19:31:55Z 2008-11-20T07:52:54Z <p>Errr... <strong>document code</strong>!</p> <p>Especially the public API, with a clear definition for each function, and the the list of authorized <strong><a href="http://stackoverflow.com/questions/61604">limit values</a></strong> for parameters.</p> <p>Even though no other documentation ends up being written, that much can save me when I have to use (or to make other use) my code!</p> <p><hr /></p> <p>Interesting: the recommandation about </p> <blockquote> <p>"When commenting: Tell me WHY you're doing something, not WHAT you're doing"</p> </blockquote> <p>picks up a lot of vote, but this more general recommendation does not.</p> <p>That would be consistent with what I see amongst the developers I work with:<br /> <strong><em>no one document its API</em></strong>... (or at least, not many ;) )<br /> (I am referring to public API comments, not to internal bits of wisdom left within a code which are simple comments, not documentation)</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303060#303060 27 Answer by Marc Charbonneau for Your personal, successful coding practices. Marc Charbonneau 2008-11-19T19:32:24Z 2008-11-19T21:44:20Z <p><strong>Simplify your design requirements.</strong> Trying to bite off too much for version 1.0 has helped kill a few of my own projects, while my successful applications were built with the minimum requirements in mind. Try to figure out the very core functionality you want to accomplish, and save the rest for later. You'll thank yourself when the simple stuff turns out to be not so simple in implementation. Also, by getting your product out faster you'll have a chance to get more feedback from users, which will help decide which "extra" features are worth developing or not.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303063#303063 14 Answer by Paul Tomblin for Your personal, successful coding practices. Paul Tomblin 2008-11-19T19:32:59Z 2008-11-19T19:32:59Z <p><strong>Never Pass English Language Up To the GUI</strong> Low level code should not be producing user visible strings. Instead, they should be passing up objects with codes that can be translated and formatted at the uppermost level. This way, if/when you internationalize, you can do it in one place instead of hundreds. Also, it means that in an environment where the View level is separate from the Model, you can have more than one Viewer using different languages. For instance, your movie theatre management system could be simultaneously viewed by the theatre in France, the regional Network Operations Center in Spain, the studio in Hollywood, and the support site in Rochester NY.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303064#303064 47 Answer by Matty for Your personal, successful coding practices. Matty 2008-11-19T19:33:23Z 2008-11-19T19:33:23Z <p>When commenting: Tell me WHY you're doing something, not WHAT you're doing. What you're doing is already there plain as day, it's called <em>your code</em>.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303070#303070 5 Answer by VonC for Your personal, successful coding practices. VonC 2008-11-19T19:35:00Z 2008-11-19T19:35:00Z <p>Code with sources managed under <strong>Version Control System</strong>!</p> <p>That way, any refactoring is less an adventure and more a planified effort, with always the possibility to go back or to compare to a stable state.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303105#303105 15 Answer by lexu for Your personal, successful coding practices. lexu 2008-11-19T19:47:44Z 2008-11-22T19:24:38Z <p>Always assume that some poor schmuck will have to maintain your code. </p> <ul> <li>keep it simple, </li> <li>easy to understand,</li> <li>segmented in manageable and logical chunks</li> </ul> <p>Remember, you might be the schmuck that has to maintain the code, give yourself a break, take no "shortcuts", dont use "clever" side effects, avoid cryptic variables, no unrelated comments... </p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303107#303107 1 Answer by Christian Vest Hansen for Your personal, successful coding practices. Christian Vest Hansen 2008-11-19T19:48:14Z 2008-11-19T19:48:14Z <p><strong>Thread-safe by default.</strong> All of my (Java) code is thread-safe unless explicitly documented otherwise. It takes a bit more thinking and sometimes makes the code more complicated, but I go to great length to consider concurrency in every nook and cranny of my (newer) code bases. To this end, the <code>java.util.concurrent</code> package is a blessing.</p> <p>This pactice, I believe, makes me write better code. Not only do I consider the concurrent failure modes, but I think that simply thinking about the code <em>more</em> leads to fewer mistakes.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303163#303163 4 Answer by Blankman for Your personal, successful coding practices. Blankman 2008-11-19T20:00:01Z 2008-11-20T10:06:31Z <p>Fewer features, fewer configuration options = usable software = maintainable code = <b>used</b> software.</p> <p>simple. bye.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303168#303168 19 Answer by Paul Brinkley for Your personal, successful coding practices. Paul Brinkley 2008-11-19T20:02:30Z 2008-11-20T22:04:27Z <p><strong>In OO languages, keep simpler data objects immutable.</strong> This builds upon Paul Tomblin's point about keeping code separate from data. Simple data objects are like bits of hard metal currency passed around the more complex agents in your program, in that they're tangible and definite. They're unlike currency in that thin strings attach them to any object that wants them, for as long as the complex objects want. You wouldn't want someone grinding the "Five Cents" off your nickel and etching "Ten Cents" in its place; <em>nothing</em> should change what your complex objects assume about those bits of data.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303187#303187 6 Answer by Paul Brinkley for Your personal, successful coding practices. Paul Brinkley 2008-11-19T20:10:21Z 2008-11-19T20:10:21Z <p><strong>In OO languages, complex logic objects should have their API be as small and restricted as possible, and what is there should be documented as a contract.</strong> This cuts down on maintenance like you wouldn't believe at first. It makes unit tests for those objects possible. The alternative is objects that expose a smorgasbord of methods to others; they may as well be festooned with billboards shouting "Poke me!", and you'll never know what their state is at any given time.</p> <p>The corollary to this is that you'll be surprised how often extending an existing class turns out <em>not</em> to be the right choice, in the case of logic objects. (It's significantly more frequent for simpler data objects.) For example, queues are one of the simpler data structures out there, and look a lot like lists - but they are not lists. If the list allows random-access insertion and removal, and sorting, and the queue inherits it, then it will have that too, and risks having other objects use it as a list unknowingly. A queue should contain such a list, perhaps, but not extend it; it should have a totally different API - limited, tested, and well-documented.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303269#303269 10 Answer by etlerant for Your personal, successful coding practices. etlerant 2008-11-19T20:36:21Z 2008-11-19T20:36:21Z <ul> <li>Writing unit tests (first)</li> <li>One (or zero)-step compile/deploy/test cycle</li> <li>Know your tools (editor, build-system, vcs)</li> <li>Use a VCS</li> <li>KISS (keep it simple)</li> <li>Know how the paradigms of your language (object orientation, functional etc)</li> </ul> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303316#303316 6 Answer by Sergio Acosta for Your personal, successful coding practices. Sergio Acosta 2008-11-19T20:49:19Z 2008-11-19T20:49:19Z <p>This has to do more with source control than code writing, but it impacts the way I develop my software:</p> <p><strong>Coherent and self contained source control commits</strong>:</p> <p>Each time I'm about to develop a new feature or fix some bug, I plan the following two or three programming <em>micro-tasks</em>, and make sure each one is fully contained in a source control commit. Do not mix changes that are not related on the same commit.</p> <p>Of course I'm talking about commits to my local branches. When pushing to the central repository, you should always commit full bug fixes and working features.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303333#303333 1 Answer by flesh for Your personal, successful coding practices. flesh 2008-11-19T20:55:30Z 2008-11-19T20:55:30Z <p>Use meaningful, relevant, human-readable identifiers for variables, methods, parameters and so on. Arbitrary abbreviations make your code much harder to read and understand.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303393#303393 5 Answer by Paul Nathan for Your personal, successful coding practices. Paul Nathan 2008-11-19T21:15:05Z 2008-11-19T21:15:05Z <p><strong>Don't overengineer</strong>. Engineer it just enough to get the job done and to be able to maintain it. </p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303415#303415 5 Answer by Mike Dunlavey for Your personal, successful coding practices. Mike Dunlavey 2008-11-19T21:25:17Z 2008-11-19T21:34:03Z <p><strong>Classes are fine, but don't start there.</strong> Instead, analyze flow of information. Where does it come from, where does it go to, how is it encoded, and when is it processed?</p> <p>For example, if some of the information only changes once a week, possibly you could use a partial-evaluation pattern (i.e. code generator). This can be a divide-and-conquer strategy because the code generator only deals with part of the problem, and the generated code only deals with the remainder. Sounds funny, but it can really simplify things (as well as run a lot faster).</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303432#303432 0 Answer by robi for Your personal, successful coding practices. robi 2008-11-19T21:29:23Z 2008-11-19T21:29:23Z <p><strong>Top Down Programming</strong>. Some may call it TDD or BDD, but I simply always trying to be focused on what's currently required. Well, my fingers keep trying pulling me down to the metal by saying: while you're here at this peace of code add some special handling etc., so I'm not giving up and telling myself <a href="http://c2.com/xp/YouArentGonnaNeedIt.html" rel="nofollow">YAGNI</a> YAGNI move back upward to see what's the next thing that is absolutely necessary. Just my 2 cents. </p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303442#303442 4 Answer by JGeiser for Your personal, successful coding practices. JGeiser 2008-11-19T21:31:42Z 2008-11-19T21:49:57Z <p>1) <strong>Be Consistent</strong>. Nothing is harder to change or understand than inconsistent code.<br /> Bonus: Comment WHY and perhaps HOW, but leave comments about defects, who, and when the changes were made to the SCM.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303451#303451 3 Answer by RoadWarrior for Your personal, successful coding practices. RoadWarrior 2008-11-19T21:35:17Z 2008-11-19T21:35:17Z <p>My personal list:</p> <ul> <li>Understanding the bigger IT and domain pictures before writing code.</li> <li>Doing a lot of thinking about what could go wrong, and what's likely to go wrong.</li> <li>Paying my <a href="http://blogs.msdn.com/oldnewthing/archive/2005/08/22/454487.aspx" rel="nofollow">development taxes</a>.</li> <li>Sprinkling assertions liberally across my code and also code I have to maintain.</li> <li>Using Try...Finally <strong>much</strong> more than Try..Catch.</li> <li>Many comments explaining why certain design and implementation decisions were made.</li> <li>Not sharing state between threads.</li> <li>Poring over the documentation of a type before using it.</li> <li>Refactoring constantly for simplicity and understandability.</li> </ul> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303486#303486 9 Answer by Epaga for Your personal, successful coding practices. Epaga 2008-11-19T21:46:42Z 2008-11-19T21:46:42Z <p>FIRST write a test that goes <strong><em>red</em></strong>. THEN write the code that makes that one test turn <strong><em>green</em></strong>. <strong><em>Refactor</em></strong> as needed. Rinse. Repeat.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303498#303498 6 Answer by Davy Landman for Your personal, successful coding practices. Davy Landman 2008-11-19T21:50:19Z 2009-01-21T21:53:21Z <p><strong>Seperate your concerns!</strong></p> <p>Do not create "UBER" classes which contain a lot of knowledge of your domain, spread it out in logical part, so that each class has a function in the system.</p> <p>Also try to <strong>decouple allot</strong>, so you can easily plug in your test/mock implementation for testing purposes.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303516#303516 0 Answer by Mike Dunlavey for Your personal, successful coding practices. Mike Dunlavey 2008-11-19T21:54:42Z 2008-11-19T21:54:42Z <p><strong>Keep the data structure loose and simple.</strong> Don't rely solely on notifications to keep various parts of the data tightly in sync. It's too hard to prove they're right, and it takes a lot of programming energy. Instead, have diff-style routines that you call once in a while to clean up inconsistencies.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303524#303524 2 Answer by Prembo for Your personal, successful coding practices. Prembo 2008-11-19T21:57:43Z 2008-11-19T21:57:43Z <ul> <li>Increase Cohesion + Reduce Coupling between modules within design (eg. objects, threads, any functional blocks)</li> <li>K.I.S.S. principle</li> </ul> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303532#303532 1 Answer by Skuta for Your personal, successful coding practices. Skuta 2008-11-19T21:58:50Z 2008-11-19T21:58:50Z <p>Don't start without a design document.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303535#303535 8 Answer by Brian B. for Your personal, successful coding practices. Brian B. 2008-11-19T21:59:37Z 2008-11-19T21:59:37Z <p>When approaching other people's code I've taken to assuming that I am the biggest idiot on the face of the planet who has never seen a single line of code in his life. That way, whenever I get the urge to "correct" some line of code that seems pointless and wrong, I think to myself </p> <blockquote> <p>"You know, I'm pretty dumb, and the person who wrote this probably isn't, so maybe I should find out why they wrote it before I go mucking around in here".</p> </blockquote> <p>Often I will discover that there is in fact a reason for that line of code that I had never considered. Not to mention the number of times someone has "simplified" some piece of my code, only to discover the week before it releases that the code was actually required to handle that one case where if you hit the "o" key at the exact moment that you press OK while simultaneously playing "Eye of the Tiger" in iTunes via your iPod you will crash the application (which is relevant because your customer is a huge Survivor fan who obsessively presses the first letter of whatever dialog button he is clicking on - it happens).</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303547#303547 3 Answer by supermedo for Your personal, successful coding practices. supermedo 2008-11-19T22:01:45Z 2008-11-19T22:01:45Z <p><strong>Generalize the problem</strong>, write code that solves the general problem and use it to solve a specific case.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303556#303556 4 Answer by Daok for Your personal, successful coding practices. Daok 2008-11-19T22:05:53Z 2008-11-19T22:05:53Z <ul> <li>Documentation before (What) </li> <li>Coding</li> <li>Documentation after (How) Unit</li> <li>Testing (Validation &amp; Verification)</li> </ul> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303559#303559 2 Answer by Bill K for Your personal, successful coding practices. Bill K 2008-11-19T22:06:47Z 2008-11-19T22:06:47Z <p>When doing design, Create a GUI as one of the first parts of your design. On a whiteboard perhaps, or in simple front-end-only code. This is a GREAT way to communicate with your customers and find out if you are on the same level.</p> <p>It also becomes about the best project specs you're likely to get.</p> <p>I'm not saying code before design, the GUI is not actually the first code you write, it's just part of design that you may throw away or redesign when you actually get around to writing code.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303581#303581 5 Answer by leeand00 for Your personal, successful coding practices. leeand00 2008-11-19T22:15:36Z 2008-11-20T01:48:06Z <ol> <li><p>Use Subversion or some other sane version control system.</p> <ul> <li>Use branching when doing risky work that might kill the whole build.</li> <li>Be sure to carefully merge your risky work back into the trunk.</li> <li>Be sure that you have a Subversion "hook" setup to run unit tests on code and make sure it passes all tests before checking the code in. <br/><br/> (this way you know when you've broken something of somebody elses)<br/><br/></li> <li>Be sure to comment in detail what the change has done on a check-in. And for pete's sake make sure your commits are atomic! (A.K.A. checking in all files that you changed relivent to the commit at once.)</li> <li>Another good rule of thumb is one working-copy to a task.</li> </ul></li> <li><p>Use Unit-Testing on everything (even Javascript)</p> <ul> <li>In this way you know what parts of your code work, and what parts of your code don't work.</li> <li>(<strong>redundant yet very important</strong>) Also if you unit test you'll know when you've broken someone else's code, and thus you'll know when the two of you need to discuss it.</li> <li>Unit-Testing also makes sure that you code is decoupled from other parts of the system (ensures that you've made good use of interfaces).</li> </ul></li> <li><p>Use a Dependency Injection Framework (okay not for JS). This is related to the bullet point above as well, and can allow you to do incredible things like using Aspect Oriented Programming to add and remove log statements very easily, also it helps when handling SQL transactions. (making sure your <code>begin</code> and <code>commit</code> statements are run at the right place in your code)</p></li> <li><p>Keep your team small, but highly skilled.</p> <ul> <li>Too many cooks in the kitchen spoil the broth...</li> <li>Too many people at the video store never pick out a movie...</li> </ul></li> <li><p>Communicate with your team as much as possible!<br/>Gone are the days when one could hide away in a cubical and just work on your project, it's all about team work now.</p> <ul> <li>Have meetings, to discuss what the "team" as a whole is going to do.</li> <li>Take notes in a shared wiki if possible.</li> <li>regular at least weekly code reviews with your peers, discuss which design patterns are going to be used, and make UML design diagrams!</li> </ul></li> <li><p>Keep in time with the rest of the world...</p> <ul> <li>Or as I like to call this one, "It's really hard to get help with Visual Studio 97' when it's almost 2009!"</li> <li>Keep your frameworks/libraries, tools and compilers up-to-date, as it will make the questions you ask about them much less awkward, and more likely to get answered.</li> </ul></li> </ol> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303719#303719 4 Answer by Terry Donaghe for Your personal, successful coding practices. Terry Donaghe 2008-11-19T22:59:11Z 2008-11-19T22:59:11Z <ul> <li><p>Copying and Pasting == Time to Refactor</p></li> <li><p>Make your code as simple as possible, but no simpler.</p></li> <li><p>Code defensively.</p></li> <li><p>Don't try to be smart or clever.</p></li> <li><p>Let go of your ego.</p></li> <li><p>Cheerfully accept criticism of code that you write.</p></li> <li><p>Learn from your colleagues - even the newbie intern has things to teach you.</p></li> </ul> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303739#303739 1 Answer by Kyralessa for Your personal, successful coding practices. Kyralessa 2008-11-19T23:06:20Z 2008-11-19T23:06:20Z <p><strong>There's more than one way to test.</strong></p> <p>When I learned about refactoring, I tried to write good unit tests. But I often found pieces of code that were resistant, but that I really, really wanted to improve...and so I'd end up changing the code without <em>any</em> tests in place. And of course I'd often break something in the process.</p> <p>I learned two things:</p> <ol> <li><strong>You have to have <em>some</em> way to test</strong>, even if it's not a perfect little NUnit test. It might be text in the Debug window, or a script of click here-type this-click there, but you've got to have <em>something</em> to tell you whether the code still works.</li> <li>If you can't figure out <em>any</em> way to test the code, then <strong>you don't understand it well enough to change it successfully</strong>. So don't try!</li> </ol> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303846#303846 0 Answer by CrashCodes for Your personal, successful coding practices. CrashCodes 2008-11-19T23:49:37Z 2008-11-19T23:49:37Z <p>I agree with Joel, <strong><a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">Make wrong code look wrong.</a></strong></p> <p>The speed difference between reading code formatted in a constant way and code that isn't is ridiculous. Assuming no one went out of their way to make the inconsistently formatted code obscure I'd guess consistent formatting reads over three times faster with a much higher likelihood of detecting a problem.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303890#303890 0 Answer by Holograham for Your personal, successful coding practices. Holograham 2008-11-20T00:01:20Z 2008-11-20T00:01:20Z <ol> <li>Read Code Complete</li> <li>Read Code Complete Again</li> <li>Remember Code Complete while you program</li> </ol> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/304015#304015 3 Answer by Angel for Your personal, successful coding practices. Angel 2008-11-20T00:51:33Z 2008-11-20T00:51:33Z <p><strong>Consistent object naming and well documented source code</strong>. It's not a problem of anybody else reading your code after some months, that person might be you and sometimes you don't know why you did something that way or how something works.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/304031#304031 0 Answer by pheze for Your personal, successful coding practices. pheze 2008-11-20T00:59:33Z 2008-11-20T00:59:33Z <p>I'd say take the time to think before doing something.. I often come up by doing it simpler/faster than I would have done it. </p> <p>Also, I try to write clean code even in langages where good practice aren't always forced.. For instance, in python or bash :D </p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/304329#304329 8 Answer by MikeHoss for Your personal, successful coding practices. MikeHoss 2008-11-20T04:26:17Z 2008-11-20T07:09:38Z <p>I try to live by the words of Brian Kernighan:</p> <blockquote> <p>Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.</p> </blockquote> <p>I summarize to my co-workers as "Clever code kills".</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/304422#304422 0 Answer by Andrew for Your personal, successful coding practices. Andrew 2008-11-20T05:33:34Z 2008-11-20T05:33:34Z <p>Well designed interfaces are crucial to managing complexity. When the interface between two pieces of code is ill-defined or "loose" things get out of hand very quickly. I've found that perl is especially good a letting you create an entire castle out of matchsticks... In any language, you have to be diligent and protect your code with a clean interface.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/304452#304452 0 Answer by melaos for Your personal, successful coding practices. melaos 2008-11-20T05:56:44Z 2008-11-20T05:56:44Z <p>design a really well and easy to understand data structure/db structure, then even if your code is whacked, it's still pretty much self explanatory.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/304714#304714 0 Answer by ben mcgraw for Your personal, successful coding practices. ben mcgraw 2008-11-20T09:04:46Z 2008-11-20T09:04:46Z <p>Personally, my best "get things done efficiently and organized" is to write the problem's solution out. This takes two forms:</p> <ol> <li><p>A high level to-do list, crossing off items as they are slain.</p></li> <li><p>Actually coding it on paper first.</p></li> </ol> <p>It almost seems like I think through problems more completely when I code on paper first than when I'm hacking on a screen. Your mileage may vary.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/304926#304926 5 Answer by Scott Langham for Your personal, successful coding practices. Scott Langham 2008-11-20T10:46:19Z 2009-11-08T18:09:48Z <p><strong>Reduce the number of possible 'states of being' that can exist</strong></p> <p>Ensure objects are initialized and consistent the instant they are constructed and stay so until they are destructed.</p> <p>If you know your objects members are all initialized and valid while the object exists you can write methods to rely on that without worrying.</p> <p>I often see code where the author doesn't recognize how important object lifetimes are. They expect you to construct an object and then call various initialize methods on it to get it bought properly to life. This means their code is littered with checks to see if members are valid before they're used. All these checks reduce the code to an impenetrable mess.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/340419#340419 0 Answer by naumlist for Your personal, successful coding practices. naumlist 2008-12-04T12:21:32Z 2008-12-04T12:21:32Z <p>One thing which I read somewhere is "<strong>Always select the SECOND workable solution for the problem</strong>". </p> <p>The first solution that you get to most of the time is probably the easiest one but that will come back to bite you in the future.</p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/344780#344780 1 Answer by neves for Your personal, successful coding practices. neves 2008-12-05T18:48:36Z 2008-12-05T18:48:36Z <p><strong>Defensive programming</strong>. I really like to use defensive coding techniques in the style of <a href="http://en.wikipedia.org/wiki/Design_by_contract" rel="nofollow">Design By Contract</a>. It's cheap to put assertions to verify "impossible" conditions, they document your code, and save your live failing fast when something impossible happens. </p> <p>The best reference I have in the subject is chapter 8 of McConnell's Code Complete Book. </p> http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/598353#598353 0 Answer by Mike Dunlavey for Your personal, successful coding practices. Mike Dunlavey 2009-02-28T17:33:08Z 2009-02-28T17:33:08Z <p>This is a performance analysis practice that leads to better coding practices.</p> <p>Somehow the idea got around that you can't dynamically analyze performance without a profiler. Not so.</p> <p>When code is being sluggish, use the simple random-halt technique to find things that take time that are not necessary. You can do this in the normal process of running the code under a debugger or IDE.</p> <p>Especially in large software, you usually find that, after you fix a few "low-hanging-fruit", the fundamental reason for slow performance is over-design with way too much data structure.</p> <p>This leads to a better coding practice of minimizing data structure and not over-designing.</p>