I am compiling a Rules of Programming Mindset for my team: What are yours? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T23:16:12Zhttp://stackoverflow.com/feeds/question/513953http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours32I am compiling a Rules of Programming Mindset for my team: What are yours?Jas Panesar2009-02-05T00:05:47Z2009-04-11T19:59:13Z
<p>I have been working on a list for a while that helps me share the <strong>why</strong> of programming approach and thought as much as <strong>how</strong> to do something.</p>
<p>For this, I wanted to build a list of things that are:</p>
<ul>
<li>best practice, </li>
<li>best thought,</li>
<li>best approach...</li>
</ul>
<p>that help a programmers ability to analyze, think, approach, solve and implement in the most effective way.</p>
<p>I have seen dozens of incredibly valuable comments in questions throughout SO but I couldn't find a place where we keep them together. There is the most controversial opinion on SO, however I'm just looking for sagely insights that can be shared and help my team and I approach and solve problems better through better programming. </p>
<p>Hopefully this can be one place to gather the one or two liners that are concise, profound and easy to share, repeat, review. If we keep it to one rule per answer it might be easiest to vote up/down.</p>
<p>I'll start with the first.</p>
<p><strong>DRY - Don't Repeat Yourself - In code, comments or documentation.</strong></p>
<p><strong>EDIT: This is now a community wiki. Appreciate the flood of answers!</strong></p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513957#5139575Answer by Jens Roland for I am compiling a Rules of Programming Mindset for my team: What are yours?Jens Roland2009-02-05T00:07:17Z2009-02-05T01:25:27Z<p><strong>Publish Early, Publish Often</strong></p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513959#51395945Answer by Torsten Marek for I am compiling a Rules of Programming Mindset for my team: What are yours?Torsten Marek2009-02-05T00:08:23Z2009-02-05T00:08:23Z<p>Always leave the code a little better than when you found it.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513962#5139623Answer by Jens Roland for I am compiling a Rules of Programming Mindset for my team: What are yours?Jens Roland2009-02-05T00:09:00Z2009-02-05T02:07:42Z<p><strong>Convention over Configuration</strong></p>
<p>Especially where conventions are strong and some flexibility can be sacrificed</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513965#51396542Answer by Jens Roland for I am compiling a Rules of Programming Mindset for my team: What are yours?Jens Roland2009-02-05T00:10:08Z2009-02-05T00:10:08Z<p>Code does not exist until entered into a versioning system</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513970#5139701Answer by Jens Roland for I am compiling a Rules of Programming Mindset for my team: What are yours?Jens Roland2009-02-05T00:11:35Z2009-02-05T02:09:21Z<p><strong>Design patterns are your friends</strong></p>
<p>Make sure to keep a copy of the Gang Of Four book lying around somewhere as a reference.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513972#51397225Answer by Rex M for I am compiling a Rules of Programming Mindset for my team: What are yours?Rex M2009-02-05T00:11:49Z2009-02-09T04:26:51Z<p><strong>Someone else <em>won't</em> fix it.</strong></p>
<p>If a problem comes to your attention, take ownership long enough to ensure it will be taken care of one way or another.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513973#5139735Answer by Webjedi for I am compiling a Rules of Programming Mindset for my team: What are yours?Webjedi2009-02-05T00:11:57Z2009-02-05T00:11:57Z<p>Build Breaker Buys Lunch</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513976#51397613Answer by Jens Roland for I am compiling a Rules of Programming Mindset for my team: What are yours?Jens Roland2009-02-05T00:13:30Z2009-02-09T10:27:09Z<p><strong>Test Driven Development (TDD) makes coders sleep better at night</strong></p>
<blockquote>
<p>Just to clarify: Some people seem to think TDD is just an incompetent coder's way of limping from A to B without borking everything up too much, and that if you know what you're doing, that means there is no need for (unit) testing methodologies. <em>That completely misses the point of Test Driven Development.</em> TDD is about three (update: apparently four) things:</p>
<ol>
<li><p><strong>Refactoring magic</strong>. Having a full set of tests means you can make otherwise insane refactoring stunts, juggling the entire structure of your application without missing even one of the two hundred crazy subtle side effects that result from it. Even the best programmers are reluctant to refactor their core classes and interfaces without good (unit) test coverage, because it's damn near impossible to track down all the little 'ripple effects' it causes without them.</p></li>
<li><p><strong>Detecting pitfalls early</strong>. If you are writing tests the right way, it means forcing yourself to consider all the fringe cases. Often, this leads to better design choices once the actual development begins, because the coder has already considered some of the trickier situations that may call for a different inheritance structure or a more flexible design pattern. The need for these changes is often not apparent - or intuitive - during initial planning and analysis, but those exact changes can make the application much easier to extend and maintain down the line.</p></li>
<li><p><strong>Ensuring that tests get written</strong>. TDD requires you to write the tests before writing the code. Sure, that can be a pain in the ass, since writing tests is tedious compared to writing <em>actual</em> code - and often takes longer, too. However, doing so is the only way to make sure the tests will be written at all. If you think you'll remember to write the tests once the code is done, you're almost always wrong.</p></li>
<li><p><strong>Forcing you to write better code</strong>. Since TDD forces all code to be testable (you don't write code before there is a test for it), it requires you write more decoupled code so that you can test the components in isolation. So TDD forces you to write better code. (<em>Thanks, Esko</em>)</p></li>
</ol>
</blockquote>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513979#51397924Answer by Jens Roland for I am compiling a Rules of Programming Mindset for my team: What are yours?Jens Roland2009-02-05T00:14:36Z2009-02-05T00:14:36Z<p><strong>Don't reinvent the wheel</strong></p>
<p>If there <em>ought</em> to be a function for it in the core library - there probably is</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513984#51398420Answer by dw.mackie for I am compiling a Rules of Programming Mindset for my team: What are yours?dw.mackie2009-02-05T00:17:21Z2009-02-05T00:17:21Z<p><b>How hard can it be?</b>
<br>
Don't let any problem intimidate you. </p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513986#51398620Answer by Whatsit for I am compiling a Rules of Programming Mindset for my team: What are yours?Whatsit2009-02-05T00:18:02Z2009-02-05T00:18:02Z<p>Don't optimize unless there's a demonstrable problem.<br />
Most of the time when people try to optimize code before it's been proved necessary, they'll spend a lot of resources, make the code harder to read and maintain, and achieve no noticeable effect. Sometimes they'll even make it worse.</p>
<blockquote>
<p>"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil."<br />
- Donald Knuth</p>
</blockquote>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513990#51399011Answer by Jas Panesar for I am compiling a Rules of Programming Mindset for my team: What are yours?Jas Panesar2009-02-05T00:18:41Z2009-02-05T00:18:41Z<p>Less code is better than more, as long as it makes more sense than lots of code.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513999#5139993Answer by WolfmanDragon for I am compiling a Rules of Programming Mindset for my team: What are yours?WolfmanDragon2009-02-05T00:23:00Z2009-02-05T00:28:29Z<p>Plan First, Design Second, Code Third, Test Always. </p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514007#51400722Answer by lillq for I am compiling a Rules of Programming Mindset for my team: What are yours?lillq2009-02-05T00:27:51Z2009-02-11T18:59:23Z<p><strong>Maintainability is important.</strong></p>
<p>Write code as if the person who will end up maintaining it is crazy and knows where you live.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514009#51400927Answer by nzpcmad for I am compiling a Rules of Programming Mindset for my team: What are yours?nzpcmad2009-02-05T00:28:41Z2009-02-05T00:28:41Z<p>Don't be afraid to admit "I don't know" and ask.</p>
<p>10 minutes asking someone could save a day pulling your hair out!</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514021#51402115Answer by Esko Luontola for I am compiling a Rules of Programming Mindset for my team: What are yours?Esko Luontola2009-02-05T00:33:43Z2009-02-05T01:15:37Z<p>Follow the <a href="http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod" rel="nofollow">SOLID principles</a>:</p>
<p><strong><a href="http://www.objectmentor.com/resources/articles/srp.pdf" rel="nofollow">Single Responsibility Principle</a> (SRP)</strong></p>
<blockquote>
<p>There should never be more than one reason for a class to change.</p>
</blockquote>
<p><strong><a href="http://www.objectmentor.com/resources/articles/ocp.pdf" rel="nofollow">Open-Closed Principle</a> (OCP)</strong></p>
<blockquote>
<p>Software entities (classes, modules, functions, etc.)
should be open for extension, but closed for
modification.</p>
</blockquote>
<p><strong><a href="http://www.objectmentor.com/resources/articles/lsp.pdf" rel="nofollow">Liskov Substitution Principle</a> (LSP)</strong></p>
<blockquote>
<p>Functions that use pointers or references to base
classes must be able to use objects of derived classes
without knowing it.</p>
</blockquote>
<p><strong><a href="http://www.objectmentor.com/resources/articles/isp.pdf" rel="nofollow">Interface Segregation Principle</a> (ISP)</strong></p>
<blockquote>
<p>Clients should not be forced to depend upon interfaces
that they do not use.</p>
</blockquote>
<p><strong><a href="http://www.objectmentor.com/resources/articles/dip.pdf" rel="nofollow">Dependency Inversion Principle</a> (DIP)</strong></p>
<blockquote>
<p>A. High level modules should not depend upon low
level modules. Both should depend upon abstractions.</p>
<p>B. Abstractions should not depend upon details. Details
should depend upon abstractions.</p>
</blockquote>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514024#5140241Answer by WolfmanDragon for I am compiling a Rules of Programming Mindset for my team: What are yours?WolfmanDragon2009-02-05T00:34:11Z2009-02-05T00:34:11Z<p>Declare everything. Never nest 15 functions into 1 variable. </p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514025#5140255Answer by gbrandt for I am compiling a Rules of Programming Mindset for my team: What are yours?gbrandt2009-02-05T00:34:51Z2009-02-05T00:34:51Z<p>Build it correct first
Make it fast second</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514040#5140404Answer by dj_segfault for I am compiling a Rules of Programming Mindset for my team: What are yours?dj_segfault2009-02-05T00:40:39Z2009-02-05T00:40:39Z<p>Anything that could affect how the application runs should be treated as code, and that means putting it in version control. Especially build scripts and database schema and data (.sql) files. </p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514050#5140501Answer by Jas Panesar for I am compiling a Rules of Programming Mindset for my team: What are yours?Jas Panesar2009-02-05T00:43:14Z2009-02-05T00:43:14Z<p>Instead of being someone who says "I don't know", be someone who says "I want to know". It changes your approach from avoiding/reacting, to proactive discovery and growth.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514055#5140551Answer by Chris Ballance for I am compiling a Rules of Programming Mindset for my team: What are yours?Chris Ballance2009-02-05T00:43:48Z2009-02-05T01:23:27Z<p><strong>Red, Green, Refactor!</strong></p>
<p>TDD or <a href="http://www.agiledata.org/essays/tdd.html" rel="nofollow">Test Driven Development</a>.</p>
<ol>
<li><p>Write your tests for the piece of functionality you want to develop, ensuring that they fail since you have yet to write any code.</p></li>
<li><p>Write the least amount of code that you need to to make the test pass.</p></li>
<li><p>Refactor as needed for things such as efficiency or clarity.</p></li>
<li><p>After refactoring, ensure you tests still pass.</p></li>
</ol>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514067#5140670Answer by MSN for I am compiling a Rules of Programming Mindset for my team: What are yours?MSN2009-02-05T00:47:36Z2009-02-05T00:47:36Z<p>Understand the intent of the SOLID principles (or any other set of principles or methodology).</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514094#5140948Answer by Aaron Wagner for I am compiling a Rules of Programming Mindset for my team: What are yours?Aaron Wagner2009-02-05T00:58:13Z2009-02-05T00:58:13Z<p><strong>Be a Catalyst for Change</strong></p>
<p>You can't force change on people. Instead, show them how the future might be and help them participate in creating it.</p>
<p>via <a href="http://www.pragprog.com/the-pragmatic-programmer" rel="nofollow">The Pragmatic Programmer</a></p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514102#5141026Answer by Aaron Wagner for I am compiling a Rules of Programming Mindset for my team: What are yours?Aaron Wagner2009-02-05T00:59:34Z2009-02-05T00:59:34Z<p><strong>It's Both What You Say and the Way You Say It</strong></p>
<p>There's no point in having great ideas if you don't communicate them effectively.</p>
<p>via <a href="http://www.pragprog.com/the-pragmatic-programmer" rel="nofollow">The Pragmatic Programmer</a></p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514106#51410617Answer by Aaron Wagner for I am compiling a Rules of Programming Mindset for my team: What are yours?Aaron Wagner2009-02-05T01:01:12Z2009-02-05T01:01:12Z<p><strong>Don't Gather Requirements -- Dig for Them</strong></p>
<p>Requirements rarely lie on the surface. They're buried deep beneath layers of assumptions, misconceptions, and politics</p>
<p>via <a href="http://www.pragprog.com/the-pragmatic-programmer" rel="nofollow">The Pragmatic Programmer</a></p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514112#51411224Answer by dw.mackie for I am compiling a Rules of Programming Mindset for my team: What are yours?dw.mackie2009-02-05T01:04:13Z2009-02-05T01:04:13Z<p><b>KISS - Keep it simple, stupid.</b>
<br>
Pick the simplest solution that <i>works</i>. <br>
Don't make things (too) complicated before they need to be. <br>
Just because everyone else is using some complicated framework to solve their problem, doesn't mean you have to.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514116#5141164Answer by Aaron Wagner for I am compiling a Rules of Programming Mindset for my team: What are yours?Aaron Wagner2009-02-05T01:05:28Z2009-02-05T01:05:28Z<p><strong>Think! About Your Work</strong></p>
<p>Turn off the autopilot and take control. Constantly critique and appraise your work.</p>
<p>via <a href="http://www.pragprog.com/the-pragmatic-programmer" rel="nofollow">The Pragmatic Programmer</a></p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514122#5141220Answer by Aaron Wagner for I am compiling a Rules of Programming Mindset for my team: What are yours?Aaron Wagner2009-02-05T01:07:21Z2009-02-05T01:07:21Z<p><strong>Some Things Are Better Done than Described</strong></p>
<p>Don't fall into the specification spiral---at some point you need to start coding.</p>
<p>via <a href="http://www.pragprog.com/the-pragmatic-programmer" rel="nofollow">The Pragmatic Programmer</a></p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514129#51412910Answer by jfsantos for I am compiling a Rules of Programming Mindset for my team: What are yours?jfsantos2009-02-05T01:08:34Z2009-02-05T01:08:34Z<p>I think almost everything that is listed under "The Zen of Python" applies for every "Rules of Programming Mindset" list. Start with 'python -c "import this"':</p>
<p>The Zen of Python, by Tim Peters</p>
<p>Beautiful is better than ugly.</p>
<p>Explicit is better than implicit.</p>
<p>Simple is better than complex.</p>
<p>Complex is better than complicated.</p>
<p>Flat is better than nested.</p>
<p>Sparse is better than dense.</p>
<p>Readability counts.</p>
<p>Special cases aren't special enough to break the rules.</p>
<p>Although practicality beats purity.</p>
<p>Errors should never pass silently.</p>
<p>Unless explicitly silenced.</p>
<p>In the face of ambiguity, refuse the temptation to guess.</p>
<p>There should be one-- and preferably only one --obvious way to do it.</p>
<p>Although that way may not be obvious at first unless you're Dutch.</p>
<p>Now is better than never.</p>
<p>Although never is often better than <em>right</em> now.</p>
<p>If the implementation is hard to explain, it's a bad idea.</p>
<p>If the implementation is easy to explain, it may be a good idea.</p>
<p>Namespaces are one honking great idea -- let's do more of those!</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514131#5141319Answer by Aaron Wagner for I am compiling a Rules of Programming Mindset for my team: What are yours?Aaron Wagner2009-02-05T01:08:38Z2009-02-05T01:08:38Z<p><strong>Don't Panic When Debugging</strong></p>
<p>Take a deep breath and THINK! about what could be causing the bug.</p>
<p>via <a href="http://www.pragprog.com/the-pragmatic-programmer" rel="nofollow">The Pragmatic Programmer</a></p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514135#5141352Answer by nailitdown for I am compiling a Rules of Programming Mindset for my team: What are yours?nailitdown2009-02-05T01:09:23Z2009-02-05T01:09:23Z<ol>
<li><p>Audience - everything we build is for an audience, it'll be used by end users as well as other coders. Ensure it's usable by both.</p></li>
<li><p>Simplicity - if you find yourself implementing something complex and convoluted, you're probably missing a more effective, simple solution.</p></li>
<li><p>Quality, not perfection - keep your mind on what's important - delivering quality within a timeframe. if you double the estimate, delivering perfection won't save your ass.</p></li>
</ol>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514138#5141388Answer by Jens Roland for I am compiling a Rules of Programming Mindset for my team: What are yours?Jens Roland2009-02-05T01:10:09Z2009-02-05T01:10:09Z<p><strong>Habits of the lazy coder</strong></p>
<p>The first time you are asked to do something, do it (right).</p>
<p>The second time you are asked to do it, make a tool that does it automatically.</p>
<p>And the third time, if the tool doesn't cut it, design a domain specific language for generating more tools.</p>
<p><em>(not to be taken too seriously)</em></p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514140#5141407Answer by Kyralessa for I am compiling a Rules of Programming Mindset for my team: What are yours?Kyralessa2009-02-05T01:10:48Z2009-02-05T01:10:48Z<p><strong>You may copy and paste to get it working, but you may not leave it that way.</strong></p>
<p>Duplicated code is an intermediate step, not a final product.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514146#5141463Answer by Jens Roland for I am compiling a Rules of Programming Mindset for my team: What are yours?Jens Roland2009-02-05T01:14:33Z2009-02-05T02:26:28Z<p><strong><em>It doesn't have to be art, but it has to be on time</em></strong></p>
<p>An old rule from journalism that I've had to learn the hard way.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514153#5141530Answer by Scott Evernden for I am compiling a Rules of Programming Mindset for my team: What are yours?Scott Evernden2009-02-05T01:16:39Z2009-02-05T01:16:39Z<p>strive to find solutions that require the least amount of code</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514224#5142243Answer by Jens Roland for I am compiling a Rules of Programming Mindset for my team: What are yours?Jens Roland2009-02-05T01:53:15Z2009-02-05T01:53:15Z<p><strong>Take part in open source development</strong></p>
<p>If you are using open source code in your projects, remember to post your bugfixes and improvements back to the community. It's not a development best practice <em>per se</em>, but it's definitely a programmer mindset to strive for.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514246#5142460Answer by Jas Panesar for I am compiling a Rules of Programming Mindset for my team: What are yours?Jas Panesar2009-02-05T02:01:57Z2009-02-05T02:01:57Z<p><strong>Creating software is like.. building a house.</strong></p>
<p>You can try building it without a blueprint, a plan, experience, an architect or qualified tradespeople. </p>
<p>As a result it will almost always cost more, take longer, and be full of future, ongoing surprises that need your time and money. </p>
<p>Just because someone can build a shed without a blueprint doesn't mean they should.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514255#5142550Answer by LarryF for I am compiling a Rules of Programming Mindset for my team: What are yours?LarryF2009-02-05T02:07:05Z2009-02-05T02:07:05Z<p>I started a document for my team at my last job, as they had <em>NO</em> programing guidelines, suggestions or anything... It started to get pretty large, but it all made sense.</p>
<p>I'd be happy to share it. But it's not just ONE rule, it was more "Coding Guidelines" than anything else.</p>
<p>Here is a sample outline of what my document contained:</p>
<pre>
A. Source Code
a. Formatting
b. Variable naming
c. Error handling
d. Logging
e. Text Editor
f. Scope Declaration
g. Comments / Comment blocks
h. Documentation
i. API/Library Development standards
B. Source Control
a. Check-in/Check-out
b. Version information
c. What belongs in Source Control?
</pre>
<p>And here is an example from section A.
<HR></p>
<pre>
<b><H2>Source Code</H2></b>
<b>Text Editor:</b></pre>
<p>The choice of text editor is purely up to the developer. Fonts should be mono-spaced, no larger than 18 and no smaller then 8. Although, this is the developers choice, code comments should be present at the top of the source file indicating which editor, font, font size and if applicable indent size should be present. See Comments / Comment Blocks for more information.
<pre>
<b>Tabs:</b></pre> Tabs should NEVER be in source files. Tabs should be replaced with spaces, and have an indent of 4.
<pre>
<b>Line Endings:</b></pre> Line endings should be in the format CRLF. Most {your company name} source code is on the Windows platform, so line endings should be set to CRLF to be readable on Windows. Line endings should never be mixed in any source file.
<pre>
<b>Line Length:</b></pre> Line Length should not extend past 200 chars for most lines. Very long lines of single statement source is acceptable. Function definitions, or function calls should be broken up (and documented). (See API/Library section for more information.)</p>
<p><p><HR>
Of course, this is what worked for US, your MMV, and you'd have to adjust the rules to match your coding styles.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514265#5142653Answer by eking for I am compiling a Rules of Programming Mindset for my team: What are yours?eking2009-02-05T02:12:08Z2009-02-05T02:12:08Z<p>Think of your work as a craft, not as a duty.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514431#5144310Answer by mP for I am compiling a Rules of Programming Mindset for my team: What are yours?mP2009-02-05T03:30:51Z2009-02-05T03:30:51Z<p>Shouldnt your team already know these things ?</p>
<p>Its a bit of a worry they need to be told what values they already know from past experience. Its a bit like running a courier company and telling your drivers to know they shouldnt have accidents. If they need to be told this because they didnt already know this - i would be seriously worried tha tthey are the right choices for my team.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514642#5146421Answer by Chui Tey for I am compiling a Rules of Programming Mindset for my team: What are yours?Chui Tey2009-02-05T05:04:36Z2009-02-05T05:04:36Z<p>This comes from Steve McConnell</p>
<p>"Every new line of code should be single stepped through the debugger"</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514957#51495714Answer by Ludwig Wensauer for I am compiling a Rules of Programming Mindset for my team: What are yours?Ludwig Wensauer2009-02-05T07:58:32Z2009-02-05T07:58:32Z<p>Best Practice: <strong>Use your brain</strong><br/>
Don't follow any trend/principle/pattern without thinking about it</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/514970#5149706Answer by Ludwig Wensauer for I am compiling a Rules of Programming Mindset for my team: What are yours?Ludwig Wensauer2009-02-05T08:02:46Z2009-02-05T08:02:46Z<p><strong>Always code as if the person who ends up maintaining your code is a violent psychopath who knows where you live.</strong></p>
<p>From: <a href="http://www.codinghorror.com/blog/archives/001137.html" rel="nofollow">Coding Horror</a></p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/515015#5150150Answer by ThomasD for I am compiling a Rules of Programming Mindset for my team: What are yours?ThomasD2009-02-05T08:20:11Z2009-02-05T08:20:11Z<p>Don't try to make things simpler than they are.</p>
<p>Knowing what you are doing is preferable to unit tests.</p>
<p>Understanding the technology is preferable to test driven development.</p>
<p>Why would you want to waste your life with trial and error methodologies?</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/515030#5150309Answer by Michal Dymel for I am compiling a Rules of Programming Mindset for my team: What are yours?Michal Dymel2009-02-05T08:29:07Z2009-02-05T08:29:07Z<p>Google before you will ask your colleague and interrupt his coding.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/515329#5153293Answer by Treb for I am compiling a Rules of Programming Mindset for my team: What are yours?Treb2009-02-05T10:30:47Z2009-02-05T10:30:47Z<p><strong>Take a step back and look at the whole picture</strong></p>
<p>Every once in a while, you should step back from your code and think about what you are doing in abstract terms. If you don't, you will overlook something that will come back to bite you a few days from now.</p>
<p>I love to dive deep into the code, but from time to time I need to return to the surface and get some air...</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/515375#5153751Answer by Treb for I am compiling a Rules of Programming Mindset for my team: What are yours?Treb2009-02-05T10:42:25Z2009-02-05T10:42:25Z<p><strong>It is never as easy as you think</strong></p>
<p>This is in response to another <a href="http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/513984#513984">answer</a>, but does not contradict it! Both are valuable principles that should be followed. </p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/515468#5154682Answer by endian for I am compiling a Rules of Programming Mindset for my team: What are yours?endian2009-02-05T11:12:18Z2009-02-05T11:12:18Z<p>Always build a prototype. Nine times out of ten it will be worth the day/week/month that it takes. Corollary: the length of time spent on a prototype should be proportional to the length/size of the main project.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/515549#5155490Answer by Peter Morris for I am compiling a Rules of Programming Mindset for my team: What are yours?Peter Morris2009-02-05T11:45:29Z2009-02-05T11:45:29Z<p>"I just can't see how it can fail" is just "It can fail, I just can't see how" with the words rearranged. TEST EVERYTHING!</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/515656#5156563Answer by Steve Bosman for I am compiling a Rules of Programming Mindset for my team: What are yours?Steve Bosman2009-02-05T12:14:03Z2009-02-05T12:14:03Z<p>If you're stuck, talk about it (even if you only talk to a <a href="http://c2.com/cgi/wiki?RubberDucking" rel="nofollow">rubber duck</a>)</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/515750#5157504Answer by Richard Gadsden for I am compiling a Rules of Programming Mindset for my team: What are yours?Richard Gadsden2009-02-05T12:40:51Z2009-02-05T12:40:51Z<p><strong>Understand the tools you use</strong></p>
<p>Don't use a pattern until you've understood why you're using it; don't use a tool without knowing why; don't rely on your framework or language designer always being right for your situation, but also don't assume they're wrong until proven to be!</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/515882#5158820Answer by Ferds for I am compiling a Rules of Programming Mindset for my team: What are yours?Ferds2009-02-05T13:28:13Z2009-02-05T13:28:13Z<ol>
<li><p>Understand/walkthrough application code that is good, <strong>bad and ugly</strong>. You will be better placed at understanding what works and what doesn't.</p></li>
<li><p><strong>Talk to people</strong> (both IT AND Business) and don't be afraid to ask questions. This works for you in two ways:- </p>
<p>a) You become more approachable as you seem more human than just that <em>nerd who doesn't speak</em> </p>
<p>b) Your approach to coding/designing an application is based on real answers - not just on documentation/emails, that could be obsolete.</p></li>
</ol>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/517723#5177231Answer by pirho for I am compiling a Rules of Programming Mindset for my team: What are yours?pirho2009-02-05T20:19:11Z2009-02-05T20:19:11Z<p><strong>YAGNI</strong></p>
<p><strong>You Ain't Gonna Need It</strong></p>
<p>Be critical of what you do aka Think!</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/517785#5177851Answer by Peter Boughton for I am compiling a Rules of Programming Mindset for my team: What are yours?Peter Boughton2009-02-05T20:32:32Z2009-02-05T20:32:32Z<p>For databases...</p>
<p><strong>Normalise as far as you can. Then normalise again.</strong></p>
<p>Having a good database (in both structure and data) is critical for making programming less stressful.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/518521#5185212Answer by CountZero for I am compiling a Rules of Programming Mindset for my team: What are yours?CountZero2009-02-05T23:46:57Z2009-02-05T23:46:57Z<p><a href="http://www.codinghorror.com/blog/files/Pragmatic%20Quick%20Reference.htm" rel="nofollow">http://www.codinghorror.com/blog/files/Pragmatic%20Quick%20Reference.htm</a></p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/519325#5193253Answer by MehdiK for I am compiling a Rules of Programming Mindset for my team: What are yours?MehdiK2009-02-06T06:36:32Z2009-02-06T06:36:32Z<p><strong>Frequently conduct code reviews</strong></p>
<p>Code review and consequently refactoring is an ongoing task. Here is a few goodies about code review in my opinion:
1. It improves code quality.
2. It helps refactor reusable codes into reusable libraries.
3. It helps you learn from your felow developers.
4. It helps you learn from your mistakes and refresh your memory about a genious code you have written before.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/519355#5193551Answer by davogones for I am compiling a Rules of Programming Mindset for my team: What are yours?davogones2009-02-06T06:49:06Z2009-02-06T06:49:06Z<p>Your code should be so simple that anyone who looks at it can understand what it does without reading any documentation.</p>
<p>But don't forget to document everything anyway.</p>
<p>If your API is not braindead-simple to use, there is something wrong with the API. Refactor it until it takes no effort to use correctly.</p>
<p>Before you write any code, research first to find out if the framework already has built-in support or extensible interfaces for what you're trying to do.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/519371#5193711Answer by amit.dev for I am compiling a Rules of Programming Mindset for my team: What are yours?amit.dev2009-02-06T06:57:48Z2009-02-06T06:57:48Z<p>Catch bugs early:</p>
<ul>
<li>Use statically typed language so that compiler and static analysis can help you.</li>
<li>Unit Test (first or last)</li>
<li>Code review</li>
<li>Continuous integration</li>
<li>Finally, thing that matters the most - Continuous learning.</li>
</ul>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/519541#5195410Answer by Alexander for I am compiling a Rules of Programming Mindset for my team: What are yours?Alexander2009-02-06T08:23:38Z2009-02-06T08:23:38Z<p>Always write documentation for your code! In half a year you won't remember about how it works. So don't write any code without documentation!</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/520265#5202652Answer by Lolindrath for I am compiling a Rules of Programming Mindset for my team: What are yours?Lolindrath2009-02-06T13:21:46Z2009-02-06T13:21:46Z<p><strong><a href="http://www.codinghorror.com/blog/archives/001160.html" rel="nofollow">Quantity Always Trumps Quality</a></strong></p>
<p>Coding more (even if it isn't great) will give you a better feel of what good code should look like.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/521764#5217640Answer by Jas Panesar for I am compiling a Rules of Programming Mindset for my team: What are yours?Jas Panesar2009-02-06T19:19:45Z2009-02-06T19:19:45Z<p>It's never easy the first time. It will be a snap to do every time after. It's like trying to find a short cut the first time you're driving somewhere. Before GPS.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/524902#5249020Answer by Ali A for I am compiling a Rules of Programming Mindset for my team: What are yours?Ali A2009-02-08T00:54:06Z2009-02-08T00:54:06Z<p><strong>Code without unit tests is, by definition, broken.</strong></p>
<p>Self-explanatory.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/524910#5249101Answer by CatZ for I am compiling a Rules of Programming Mindset for my team: What are yours?CatZ2009-02-08T00:59:00Z2009-02-08T00:59:00Z<p><strong>Never tell business everything!</strong></p>
<p>Refactoring is part of your job and not something that is up for discussion. If you allways add a little "estimated" time to be able to do necessary refactoring there won't be any complaints about it!</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/628569#6285690Answer by Jas Panesar for I am compiling a Rules of Programming Mindset for my team: What are yours?Jas Panesar2009-03-10T00:46:07Z2009-03-10T00:46:07Z<p>People that know just a little about something (process/software) are the most dangerous people in the world.</p>
http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours/740697#7406970Answer by Johannes Stiehler for I am compiling a Rules of Programming Mindset for my team: What are yours?Johannes Stiehler2009-04-11T19:59:13Z2009-04-11T19:59:13Z<p>Write self-explanatory code (and then still document it), which includes</p>
<ul>
<li>meaningful names avoiding abbreviations and especially consonant clusters</li>
<li>functions that are just introduced to make real code read like pseudo-code</li>
<li>keeping the level of abstraction constant inside one code unit
etc. etc.</li>
</ul>