What do you consider the 1st principle(s) of programming? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T14:26:45Zhttp://stackoverflow.com/feeds/question/159176http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming38What do you consider the 1st principle(s) of programming?pongba2008-10-01T19:03:43Z2009-08-03T17:25:12Z
<p>I always liked to ask myself "what's the first principle(s) of this?" after I learned the basic stuff of something (e.g. programming). It's an inspiring question, IMO, that can force you to think about the most important principle(s) behind something, especially a skill such as programming.</p>
<p>So, what do you think is the first principle(s) of programming? I'll give my answer below a little later.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159180#159180-4Answer by Mostlyharmless for What do you consider the 1st principle(s) of programming?Mostlyharmless2008-10-01T19:04:40Z2008-10-01T19:04:40Z<p>No infinite loops. </p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159182#15918217Answer by Dima for What do you consider the 1st principle(s) of programming?Dima2008-10-01T19:04:46Z2008-10-01T19:51:29Z<p>KISS (keep it simple, stupid).</p>
<p>It does indeed beg the question "How do you define simple?" And also "When is something too simple for the task at hand?" This is why you cannot become a good programmer just by knowing the first principle of programming.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159184#15918435Answer by Daok for What do you consider the 1st principle(s) of programming?Daok2008-10-01T19:05:09Z2008-10-01T19:05:09Z<p>Write code like if it was you that would have to maintain that code.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159186#1591862Answer by Joel Coehoorn for What do you consider the 1st principle(s) of programming?Joel Coehoorn2008-10-01T19:05:18Z2008-10-01T19:05:18Z<p>Sequence, Choice, Repetition</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159187#15918787Answer by Bill for What do you consider the 1st principle(s) of programming?Bill2008-10-01T19:05:30Z2009-08-03T16:33:14Z<ol>
<li>KISS - Keep It Simple Stupid</li>
<li>DRY - Don't Repeat Yourself</li>
<li>YAGNI - You ain't gonna need it</li>
</ol>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159188#159188-1Answer by Pokus for What do you consider the 1st principle(s) of programming?Pokus2008-10-01T19:05:43Z2008-10-01T19:05:43Z<p>Do not overuse Interface.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159193#15919324Answer by OedipusPrime for What do you consider the 1st principle(s) of programming?OedipusPrime2008-10-01T19:06:26Z2008-10-01T19:06:26Z<p>Be as lazy as possible.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159197#15919715Answer by Daok for What do you consider the 1st principle(s) of programming?Daok2008-10-01T19:06:55Z2008-10-01T19:06:55Z<p>Do not reinvent the wheel.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159198#1591983Answer by torial for What do you consider the 1st principle(s) of programming?torial2008-10-01T19:06:56Z2008-10-01T19:06:56Z<p>Program with an audience in mind. By that, don't assume that anything you write will not be read and maintained by you or someone else.</p>
<p>A corollary to that: Prove that you understand the problem you are trying to solve by naming your variables and functions and classes well!</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159202#159202-1Answer by Jim C for What do you consider the 1st principle(s) of programming?Jim C2008-10-01T19:07:14Z2008-10-01T19:07:14Z<p>Sequencing, what do I do and When do I do it. </p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159212#1592120Answer by Pokus for What do you consider the 1st principle(s) of programming?Pokus2008-10-01T19:08:47Z2008-10-01T19:08:47Z<p>Refactor before it's too late.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159213#1592131Answer by Joshua for What do you consider the 1st principle(s) of programming?Joshua2008-10-01T19:09:05Z2008-10-01T19:09:05Z<p>Any problem can be solved with another layer of indirection.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159217#1592170Answer by Giao for What do you consider the 1st principle(s) of programming?Giao2008-10-01T19:10:12Z2008-10-01T19:10:12Z<ol>
<li>Don't do it.</li>
<li>If not doing it isn't possible, get someone else to do it.</li>
</ol>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159218#159218-6Answer by dacracot for What do you consider the 1st principle(s) of programming?dacracot2008-10-01T19:10:26Z2008-10-01T19:10:26Z<pre><code>0 + 1 = 1
1 + 1 = 10
10 + 1 = 11
11 + 1 = 100
100 + 1 = 101
101 + 1 = 110
</code></pre>
<p>Get it?</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159223#1592233Answer by dmckee for What do you consider the 1st principle(s) of programming?dmckee2008-10-01T19:11:29Z2008-10-01T19:11:29Z<p>Know your tools.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159225#159225-1Answer by Rich B for What do you consider the 1st principle(s) of programming?Rich B2008-10-01T19:11:43Z2008-10-01T19:11:43Z<p>In general: Problem solving. </p>
<p>That is what it all boils down to.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159256#1592562Answer by Bill the Lizard for What do you consider the 1st principle(s) of programming?Bill the Lizard2008-10-01T19:19:07Z2008-10-01T19:19:07Z<p>I got into programming by way of studying digital electronics, so I guess for me the basic logic gates (not, and, or, xor, implies) were the first principles of programming.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159279#1592791Answer by Jeff Yates for What do you consider the 1st principle(s) of programming?Jeff Yates2008-10-01T19:22:12Z2008-10-01T19:22:12Z<p>This is a good question.</p>
<ul>
<li>Know your requirements</li>
<li>Know your user</li>
<li>Know your limits</li>
<li>Always assume you don't know everything</li>
<li>Always understand the code you're using/writing</li>
<li>Never reach conclusions without evidence </li>
</ul>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159283#1592830Answer by pongba for What do you consider the 1st principle(s) of programming?pongba2008-10-01T19:24:35Z2008-10-02T02:51:32Z<p>Think as if you don't know any particular programming languages (so that you don't fall into the trap of "thinking in XXX".
Code to realize that thinking using the proper language.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159285#1592859Answer by ctrlShiftBryan for What do you consider the 1st principle(s) of programming?ctrlShiftBryan2008-10-01T19:25:00Z2008-10-01T19:25:00Z<p>Knowing when not to program.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159288#1592882Answer by James Curran for What do you consider the 1st principle(s) of programming?James Curran2008-10-01T19:25:22Z2008-10-01T19:25:22Z<p>When refactoring unnecessarily complex code, I often repeat the mantra: </p>
<p><em>The computer wants to do the right thing, you just need to get out of the way.</em></p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159301#1593012Answer by S.Lott for What do you consider the 1st principle(s) of programming?S.Lott2008-10-01T19:29:22Z2008-10-01T19:29:22Z<p>Principle: <strong>Software is Knowledge Capture</strong>.</p>
<p>Consequences: Many techniques for knowledge representation, all founded on <strong>Abstraction</strong>. Gives us layers, tiers, encapsulation, separation of concerns.</p>
<p>Many techniques for procedure representation, all founded on <strong>Sequence</strong>, <strong>Choice</strong>, <strong>Repetition</strong>.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159314#1593141Answer by sharvell for What do you consider the 1st principle(s) of programming?sharvell2008-10-01T19:32:55Z2008-10-01T19:32:55Z<p>While keeping it simple (KISS) and not duplicating code (DRY):</p>
<ul>
<li>Make it work right </li>
<li>Make it work fast</li>
</ul>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159332#159332-1Answer by pmlarocque for What do you consider the 1st principle(s) of programming?pmlarocque2008-10-01T19:36:48Z2008-10-01T19:36:48Z<p>Progamming is not for the lonely geek.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159335#1593354Answer by CrashCodes for What do you consider the 1st principle(s) of programming?CrashCodes2008-10-01T19:37:26Z2008-10-01T19:37:26Z<p>Programming is a means not an end. Or perhaps, "Can does not mean should."</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159348#1593481Answer by Will M for What do you consider the 1st principle(s) of programming?Will M2008-10-01T19:39:43Z2008-10-01T21:08:53Z<p>Never completely believe what you are told about how the program will be used.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159473#1594736Answer by mamama for What do you consider the 1st principle(s) of programming?mamama2008-10-01T20:09:03Z2008-10-01T20:09:03Z<p>Coffee in, code out.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159478#1594782Answer by Bryan Oakley for What do you consider the 1st principle(s) of programming?Bryan Oakley2008-10-01T20:10:40Z2008-10-01T20:10:40Z<p>It's all about the user.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159504#15950419Answer by Georgi for What do you consider the 1st principle(s) of programming?Georgi2008-10-01T20:18:07Z2008-12-09T16:21:09Z<p><strong>Zen, part I: Programming is only the road, not the way.</strong></p>
<p>Programming is only the technique to teach a computer what it's gotta do. To be successful in creating fast, reliable software means to know your algorithms, best-practices and all the other stuff not necessarily connected to your Programming (language).</p>
<p><strong>Zen, part II: If you are in a hurry, stroll along slowly. If you really are in a hurry, make a detour.</strong></p>
<p>Sounds silly, but do not let yourself get into compromises that (really) may trouble you afterwards. I got a rule: If you are at the core of a program, try to be as precise and good as possible. If you are using methods from the core that are deep in your software, try to be faster in coding. If you are coding above these two, you can even get a little bit more sloppy.</p>
<p>Design errors are the hardest to find and/or fix, next step are programming errors in parts everyone relies on, then the "real showing-off software parts". If you need to fix a design error at the end of a project, ummm, that's not good... ;-)</p>
<p><strong>Zen, part III: Know your path, Neo.</strong></p>
<p>Know your environment, tools and the stuff you rely on on a daily basis and get it sorted so that it works for you. Best if you use your programming "environment" so natural that you do not even have to think of it. If you have to get a job done do not introduce "fancy new stuff" but do your work. This stuff can be introduced in a new project, namely then when you have time to prepare and use it.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159520#1595201Answer by Ates Goral for What do you consider the 1st principle(s) of programming?Ates Goral2008-10-01T20:22:25Z2008-10-01T20:22:25Z<p>In practice, and very unfortunately, good testing turns out to be more important than good programming. <a href="http://www.1729.com/blog/EconomicsOfTestingUglyCode.html" rel="nofollow">Testing increases the value of ugly code</a>. If you can't write beautiful code, you should at least make it testable.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159552#1595520Answer by Joshua for What do you consider the 1st principle(s) of programming?Joshua2008-10-01T20:29:44Z2008-10-01T20:29:44Z<p>Structured Programming</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159571#15957115Answer by Oscar Reyes for What do you consider the 1st principle(s) of programming?Oscar Reyes2008-10-01T20:33:49Z2008-10-01T20:33:49Z<p>Understand the problem first!</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159576#1595764Answer by Audun for What do you consider the 1st principle(s) of programming?Audun2008-10-01T20:35:00Z2008-10-01T20:35:00Z<p>it doesn't work till you showed it in a test</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159578#1595782Answer by Gabriel Isenberg for What do you consider the 1st principle(s) of programming?Gabriel Isenberg2008-10-01T20:35:28Z2008-10-01T20:35:28Z<p>Write code for the next guy.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159596#1595963Answer by Michael Easter for What do you consider the 1st principle(s) of programming?Michael Easter2008-10-01T20:41:07Z2008-10-01T20:41:07Z<ol>
<li><p>Distinguish between cause and effect (working with computers)</p></li>
<li><p>Distinguish between fact and opinion (working with people)</p></li>
<li><p>As simple as possible, but no simpler (design)</p></li>
</ol>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159623#1596231Answer by HLGEM for What do you consider the 1st principle(s) of programming?HLGEM2008-10-01T20:45:50Z2008-10-01T20:45:50Z<p>Garbage in - Garbage Out
It doesn't matter how nice your user interface is if the data is bad.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159685#1596850Answer by millenomi for What do you consider the 1st principle(s) of programming?millenomi2008-10-01T20:53:45Z2008-10-01T20:53:45Z<p><em>When you assume, you make a YOU-KNOW-WHAT out of U and ME.</em></p>
<p>The golden rule, that one is. Always verify what you're taking for granted.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159686#1596862Answer by Quibblesome for What do you consider the 1st principle(s) of programming?Quibblesome2008-10-01T20:53:45Z2008-10-01T20:53:45Z<p>DRY, pretty much everything else spawns from it. KISS is the other end of the balancing act to make sure you don't pursue software elegance to levels of insanity.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159896#1598961Answer by Throknor for What do you consider the 1st principle(s) of programming?Throknor2008-10-01T21:46:05Z2008-10-01T21:46:05Z<p>Think about how then end product will be used at least as much about how the code looks. You could write the best commented, most maintainable, most brilliantly logical code ever but it's essentially a failure if no one wants to use the end product.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159899#1598991Answer by CAD bloke for What do you consider the 1st principle(s) of programming?CAD bloke2008-10-01T21:47:03Z2008-10-01T21:47:03Z<p>Occam's Razor. Reduce the problem/task to its simplest form. Then - and only then - start coding. Don't put the cart before the horse. Requirements first. Sure, they may evolve but the core requirement will be the core of your code.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159935#1599357Answer by Raz for What do you consider the 1st principle(s) of programming?Raz2008-10-01T21:54:29Z2008-10-01T21:54:29Z<p>If it wasn't tested, it is broken.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/160237#1602373Answer by Christian Vest Hansen for What do you consider the 1st principle(s) of programming?Christian Vest Hansen2008-10-01T23:33:54Z2008-10-01T23:33:54Z<blockquote>
<p>There are two ways of constructing a software design:
One way is to make it so simple that there are obviously
no deficiencies, and the other way is to make it so
complicated that there are no obvious deficiencies.
The first method is far more difficult.</p>
</blockquote>
<p>-- Charles Antony Richard Hoare </p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/160450#1604500Answer by Tobias for What do you consider the 1st principle(s) of programming?Tobias2008-10-02T01:06:30Z2008-10-02T01:06:30Z<p>Don't repeat yourself!</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/160471#16047114Answer by Ryszard Szopa for What do you consider the 1st principle(s) of programming?Ryszard Szopa2008-10-02T01:23:26Z2008-10-02T01:23:26Z<blockquote>
<p>Premature optimization is the root of
all evil.
-- Donald Knuth</p>
</blockquote>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/160553#1605531Answer by Booji Boy for What do you consider the 1st principle(s) of programming?Booji Boy2008-10-02T01:58:52Z2008-10-02T02:03:52Z<p>If the system won't work on paper then it won't work as a program. The reverse isn't always true, but a good computer system is usually based on a good paper system. </p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/160560#1605600Answer by mea for What do you consider the 1st principle(s) of programming?mea2008-10-02T02:00:56Z2008-10-02T02:00:56Z<p>Start with the output and work backward.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/160600#160600-1Answer by Martin Cote for What do you consider the 1st principle(s) of programming?Martin Cote2008-10-02T02:17:31Z2008-10-02T02:17:31Z<p>I will go with an item that is too often neglected: <b>check your I/O</b>.
<br><br>
When you write a program/function/etc. make sure that the input/output is valid.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/160609#16060912Answer by Brian M. Hunt for What do you consider the 1st principle(s) of programming?Brian M. Hunt2008-10-02T02:22:24Z2009-07-31T18:30:26Z<p><a href="http://en.wikipedia.org/wiki/You%5FAin%27t%5FGonna%5FNeed%5FIt" rel="nofollow">YAGNI - You Ain't Gonna Need It</a>. The idea behind YAGNI is to program for your requirements, not for prospective, potential features. The premise is that by keeping to what you need to program, you will (among other things) cut code bloat, reduce complexity, avoid feature creep, and reduce the restrictions on what can be done (and how it can be done) in the future.</p>
<p>I suppose it works in tandem with modular design: Future features can be augmented without redesigning existing code.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/160687#1606870Answer by Chris for What do you consider the 1st principle(s) of programming?Chris2008-10-02T02:54:36Z2008-10-02T02:54:36Z<p>If it (the project) doesn't give you a hard-on, don't do it.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/162214#1622140Answer by charliebeattie for What do you consider the 1st principle(s) of programming?charliebeattie2008-10-02T13:17:46Z2008-10-02T13:17:46Z<p>When you start something finish it!<br>
Use the other principles to achieve this.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/162289#1622891Answer by Jivko Petiov for What do you consider the 1st principle(s) of programming?Jivko Petiov2008-10-02T13:34:48Z2008-10-02T13:34:48Z<p>"Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." ---- Martin Golding</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/171660#1716600Answer by edfoh for What do you consider the 1st principle(s) of programming?edfoh2008-10-05T08:06:57Z2008-10-05T08:06:57Z<p>One important aspect of programming that is often neglected and ignored is "Separation of concerns". Before starting to code, it is crucial to analyze and design your classes to ensure they are not tightly coupled. Otherwise you will end up with very dependent objects and code, which makes change very difficult and refactoring a nightmare.</p>
<p>Applications should be layered sufficiently and use of design patterns to decouple your classes allows for easy maintainence and ease of testing. </p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/171710#1717101Answer by blizpasta for What do you consider the 1st principle(s) of programming?blizpasta2008-10-05T08:43:29Z2008-10-05T08:43:29Z<p>Besides not reinventing the wheel, you should understand how the wheel was built and what it really does.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/181304#1813046Answer by Dov Wasserman for What do you consider the 1st principle(s) of programming?Dov Wasserman2008-10-08T04:07:08Z2008-10-08T04:07:08Z<ol>
<li>Understand why the program will <strong>make someone happy</strong> (otherwise, why aren't you outside playing with all the other kids?). (This person can be you.)</li>
<li>Develop a conceptual <strong>model of the business</strong> domain that captures all the needed complexity, and no more.</li>
<li>Develop a conceptual <strong>model of the software</strong> architecture that captures all the needed complexity, and no more.</li>
<li><strong>Ruthlessly</strong> keep all other complexity out.</li>
</ol>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/328542#3285421Answer by J.T. Hurley for What do you consider the 1st principle(s) of programming?J.T. Hurley2008-11-30T06:43:49Z2008-11-30T06:43:49Z<p>There are only three things in the universe: data, containers for data, and tools that either put data in a container, take data out of a container, or change the data in a container, and they overlap.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/330880#3308800Answer by mannu for What do you consider the 1st principle(s) of programming?mannu2008-12-01T13:43:25Z2008-12-01T13:43:25Z<p>Humbleness.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/339889#3398892Answer by Norman Ramsey for What do you consider the 1st principle(s) of programming?Norman Ramsey2008-12-04T08:27:25Z2008-12-04T08:27:25Z<p>Paraphrasing Fred Brooks:</p>
<blockquote>
<p>Representation is the essence of programming. Much more often, strategic breakthrough will come from redoing the representation of the data. This is where the heart of a program lies. Show me your code and conceal your type definitions and function prototypes, and I shall continue to be mystified. Show me your type definitions and your header files, and I won't usually need the bodies of your functions or methods; they'll be obvious.</p>
</blockquote>
<p>And just to add a shred of originality, when you write down your data-structure definitions, document their bloody invariants already!</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/339901#3399011Answer by seanb for What do you consider the 1st principle(s) of programming?seanb2008-12-04T08:33:34Z2008-12-04T08:33:34Z<p>What is the simplest thing that could possibly work...</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/397714#3977141Answer by Thomas Danecker for What do you consider the 1st principle(s) of programming?Thomas Danecker2008-12-29T13:29:02Z2008-12-29T13:29:02Z<p>SOC - Separation of concerns<br />
KISS - Keep it simple stupid<br />
DRY - Don't repeat yourself</p>
<p>in that order</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/425408#4254082Answer by mh for What do you consider the 1st principle(s) of programming?mh2009-01-08T18:56:45Z2009-01-08T19:06:34Z<p>In my opinion, the most important principle is the <b>reduction of complexity</b> by <b>creation of good abstractions</b>.</p>
<p>This includes</p>
<ul>
<li>understanding the problem to be solved, </li>
<li>designing an appropriate solution for it and </li>
<li>implementing it, </li>
<li>preferably in a way that keeps the code understandable and maintainable,</li>
</ul>
<p>but also determination of the point where to stop creating abstractions and get down to the fundamental properties of the implementation technologies (e.g. database system, programming language) to prevent creation of avoidable additional complexity.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/425471#4254711Answer by Demian Garcia for What do you consider the 1st principle(s) of programming?Demian Garcia2009-01-08T19:10:31Z2009-01-08T19:10:31Z<p>Knowing <strong>WHAT</strong> not to program is as (sometimes even more) important as knowing what to program.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/425478#4254783Answer by Mike Hofer for What do you consider the 1st principle(s) of programming?Mike Hofer2009-01-08T19:11:26Z2009-01-08T19:11:26Z<p>Think first, code later.</p>
<p>You're nowhere near as smart as you think you are. Ask questions. Learn to value your peers.</p>
<p>When debugging, the first answer will almost always be wrong.</p>
<p>Code you write with the intention of tossing out tends to become a cornerstone of much larger processes. Never leave anything written haphazardly.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/425500#4255001Answer by Orkun Balkancı for What do you consider the 1st principle(s) of programming?Orkun Balkancı2009-01-08T19:16:46Z2009-01-08T19:16:46Z<p>making it bug free.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/425513#425513-1Answer by Jim C for What do you consider the 1st principle(s) of programming?Jim C2009-01-08T19:18:54Z2009-08-03T16:58:52Z<p>0 + 0 = 0</p>
<p>1 + 0 = 1</p>
<p>0 + 1 = 1</p>
<p>1 + 1 = 10</p>
<p>1 * 10 = 10</p>
<p>10 / 10 = 01</p>
<p>~ 0 = 1</p>
<p>~ 1 = 0</p>
<p>That is all there is to computers</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/425625#4256251Answer by peSHIr for What do you consider the 1st principle(s) of programming?peSHIr2009-01-08T19:51:48Z2009-01-08T19:51:48Z<ul>
<li>The way of thinking is more important than pushing the actual buttons</li>
<li>All good programmers are lazy, but not necessarily the other way around (!)</li>
</ul>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/425693#4256931Answer by Bill for What do you consider the 1st principle(s) of programming?Bill2009-01-08T20:09:35Z2009-01-08T20:09:35Z<p>I would have to say that testing is one of the most important pieces of the puzzle. In my opinion test early and test often. Whether you design method is highly planned or agile there is nothing more important than testing to keep you on the right path.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/425787#4257871Answer by johnny for What do you consider the 1st principle(s) of programming?johnny2009-01-08T20:32:13Z2009-01-08T20:32:13Z<p>Understand the problem.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/425868#4258681Answer by duffymo for What do you consider the 1st principle(s) of programming?duffymo2009-01-08T20:49:44Z2009-01-08T20:49:44Z<p>Decomposition. Solve large, complex problems by breaking them into smaller, more manageable pieces.</p>
<p>And - style matters.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/425984#4259842Answer by Konrad Rudolph for What do you consider the 1st principle(s) of programming?Konrad Rudolph2009-01-08T21:15:03Z2009-01-08T21:15:03Z<p><strong>Indirection.</strong></p>
<p>It might not be obvious why this is, or even what this means. But indirection is really at the basis of all of programming.</p>
<p>At a more superficial glance, it only seems to touch abstraction (as a concept), or perhaps also <em>pointers</em> (after all, they are the archetype of indirection). But pointers are just one instance (there! indirection!) of the concept, and there are many more, that are effectively equivalent upon closer examination.</p>
<p>First and foremost, <em>variables</em> are indirections because they allow the manipuation of a value <em>indirectly</em> via a <em>symbol</em> (<em>name</em>). As a direct consequence, <em>functions</em> are an indirection, because they replace one symbol (the <em>formal parameter</em>) with another (the <em>actual parameter</em>, or <em>argument</em> (sometimes, the definition is the other way round)).</p>
<p>Since classes are historically just functions in disguise, <em>classes</em> are obviously an indirection for the same reasons as functions.</p>
<p><em>Arrays</em> (or lists, same thing) are another indirection, often exposed as a fundamental type. In fact, there is <em>no difference</em> between an array and a pointer. Both refer to other things, or none (in which case the array is <em>empty</em>, the pointer is <code>null</code> or a special placeholder, “not in list”: <code>NIL</code>).</p>
<p>I've recently read a paper where the pseudo code contained the following function, and use:</p>
<pre><code>function UpdateItem(item, position) do
P <- { }
if item.x > position then
item.count <- 0
P <- { item }
item.count <- item.count + 1
item.x = position
Results <- { }
for something or other do
position <- GetPosition()
Result <- Result U UpdateItem(current, position)
</code></pre>
<p>The point here is that, like all good mathematical pseudo-codes, it operates on mathematical sets, and augments a <code>Results</code> set by joining it to another one. Now, how would one implement this? Obviously, we could just use a <code>Set</code> data structure, or an array, or a vector, or any of these. But usually, this is done via pointers, right?</p>
<pre><code>item_t* update_item(item_t* item, int position) {
if (item->x > position) {
item->count = 0;
return NULL;
}
++item->count;
item->x = position;
return item;
}
item_t* result = (item_t*)malloc(sizeof item_t * N);
unsigned index = 0;
for (something; or; other) {
item_t* r = update_item(item, get_position());
if (r != NULL)
result[index++] = item;
}
</code></pre>
<p>For me, this shows really well that many, many different programming concepts just implement/perform some kind of indirection and that, despite all their differences, most of them can be expressed in terms of other means of indirection trivially.</p>
<p>So yes, I think indirection is really the first principle of programming, since all others are just indirection in disguise. Except recursion. Of course, recursion can be used to describe indirection. ;-)</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/425998#4259981Answer by Rob K for What do you consider the 1st principle(s) of programming?Rob K2009-01-08T21:18:18Z2009-01-08T21:18:18Z<p>Do one thing, and do it well. It's the UNIX philosophy (<a href="http://en.wikipedia.org/wiki/Unix_philosophy" rel="nofollow">http://en.wikipedia.org/wiki/Unix_philosophy</a>). It works at every layer.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/426014#4260141Answer by Clint Simon for What do you consider the 1st principle(s) of programming?Clint Simon2009-01-08T21:22:42Z2009-01-08T22:51:37Z<p><strong>BE SMART AND LAZY</strong></p>
<p>Just smart, and you will be engineering your way into bloated frameworks and writing UML until <em>Duke Nukem Forever</em> is released.</p>
<p>Just lazy and you are worthless, eating bon-bons in your sweats with no hope of amounting to anything.</p>
<p>If you are smart and lazy, that's where the money is. Engineering your way to nirvana by being pragmatic and recognizing ways to make your life easier daily.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/426023#4260231Answer by Christopher Klein for What do you consider the 1st principle(s) of programming?Christopher Klein2009-01-08T21:24:05Z2009-01-08T21:24:05Z<p>When in doubt, manipulate the data!</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/556848#5568481Answer by pmlarocque for What do you consider the 1st principle(s) of programming?pmlarocque2009-02-17T13:44:31Z2009-02-17T13:44:31Z<p>You have to resolve all the problems in the world with "if, for, while".</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/556872#5568721Answer by ng5000 for What do you consider the 1st principle(s) of programming?ng50002009-02-17T13:51:10Z2009-02-17T13:51:10Z<p>JFDI - Just @#*&^%$ do it.</p>
<p>A friend recently suggested that agile, waterfall, iterative, etc etc etc are a waste of time and the best way to write software is the JFDI school of thought. Not my mantra, but made me smile.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/625599#6255991Answer by xiaoxiaopan for What do you consider the 1st principle(s) of programming?xiaoxiaopan2009-03-09T09:48:36Z2009-03-09T09:48:36Z<p>This is a good question.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/626016#6260161Answer by pi for What do you consider the 1st principle(s) of programming?pi2009-03-09T12:25:18Z2009-03-09T12:25:18Z<p>Abstraction, Composition</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/626019#6260192Answer by Mike Sickler for What do you consider the 1st principle(s) of programming?Mike Sickler2009-03-09T12:26:49Z2009-03-09T12:26:49Z<p>Do no harm :)</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/992674#9926741Answer by Ollie Saunders for What do you consider the 1st principle(s) of programming?Ollie Saunders2009-06-14T11:40:53Z2009-06-14T11:40:53Z<p>Beneficially relating elements. </p>
<p>This means that there are elements (modules, subroutines, whatever) that relate in order to benefit one another (nothing superfluous). This is part of Kent Beck's responsive design concept. There's a <a href="http://www.infoq.com/presentations/responsive-design" rel="nofollow">talk on it</a>.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/992714#9927142Answer by tomjen for What do you consider the 1st principle(s) of programming?tomjen2009-06-14T12:09:27Z2009-06-14T12:09:27Z<p>Use your head. It is terrifying how many people fail that one.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1026409#10264091Answer by hiboys for What do you consider the 1st principle(s) of programming?hiboys2009-06-22T10:13:37Z2009-06-22T10:13:37Z<ul>
<li><p>20% code for function</p></li>
<li><p>80% code for exception</p></li>
</ul>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1026424#10264243Answer by Amy for What do you consider the 1st principle(s) of programming?Amy2009-06-22T10:18:35Z2009-06-22T10:18:35Z<p>Always write code as if the person who will be maintaining it is a psychotic serial killer who knows where you live</p>
<p>Also, never think you know everything about programming, keep learning</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1214161#12141611Answer by yelinna for What do you consider the 1st principle(s) of programming?yelinna2009-07-31T18:39:53Z2009-07-31T18:39:53Z<p>"Computers Are Blind, Deaf and Stupid".</p>
<p>I should tell this to that teacher (not a programmer) who thinks that the formula is enough for programming an app that makes math calculations. You must tell the computer what to do with that formula, doh!! (the same is for data from a BD).</p>
<p>Blind and Deaf... if you make signal and image processing, you know this.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1214183#12141831Answer by Kevin Pang for What do you consider the 1st principle(s) of programming?Kevin Pang2009-07-31T18:44:14Z2009-07-31T18:44:14Z<p>It doesn't exist unless it's committed.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1214199#12141991Answer by Timur Fanshteyn for What do you consider the 1st principle(s) of programming?Timur Fanshteyn2009-07-31T18:47:47Z2009-07-31T18:47:47Z<p>Computers do ONLY what you tell them to. If it doesn't work right, its because you haven't "told it" (coded) it right.</p>
<p>2nd favorite: its usually a problem with you (your code) - interpret this as in "first look for bugs in your code, before blaming it on bugs in libraries you use"</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1214208#12142081Answer by nwahmaet for What do you consider the 1st principle(s) of programming?nwahmaet2009-07-31T18:51:25Z2009-07-31T18:51:25Z<p><a href="http://en.wikipedia.org/wiki/Coupling%5F%28computer%5Fscience%29" rel="nofollow">Loose coupling.</a>
<a href="http://en.wikipedia.org/wiki/Cohesion%5F%28computer%5Fscience%29" rel="nofollow">High cohesion.</a></p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1214220#12142201Answer by littlegeek for What do you consider the 1st principle(s) of programming?littlegeek2009-07-31T18:52:59Z2009-07-31T18:52:59Z<ol>
<li>Think First</li>
<li>See 1.</li>
</ol>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1214222#12142221Answer by Michael Stum for What do you consider the 1st principle(s) of programming?Michael Stum2009-07-31T18:53:03Z2009-07-31T18:53:03Z<blockquote>
<p>Always code as if the person who will maintain your code is a maniac serial killer that knows where you live</p>
</blockquote>
<p>No idea where that phrase originated from (possibly from some humorous caption), but I think there is some truth in it: Code for maintainability. If other people can maintain it, then that usually means that it's kept simple and well structured for the most part.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1214223#12142231Answer by Mike Two for What do you consider the 1st principle(s) of programming?Mike Two2009-07-31T18:53:08Z2009-07-31T18:53:08Z<p>Don't be stupid on purpose</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1214228#12142281Answer by ojrac for What do you consider the 1st principle(s) of programming?ojrac2009-07-31T18:54:28Z2009-07-31T18:54:28Z<p>Code is written once, and read many times. Optimize for the reader.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1214281#12142810Answer by Captain Segfault for What do you consider the 1st principle(s) of programming?Captain Segfault2009-07-31T19:04:14Z2009-07-31T19:04:14Z<p><a href="http://www.kuro5hin.org/story/2004/2/15/71552/7795" rel="nofollow" title="We are morons.">We are morons.</a></p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1223319#12233190Answer by osij2is for What do you consider the 1st principle(s) of programming?osij2is2009-08-03T16:37:24Z2009-08-03T16:37:24Z<blockquote>
<p>So, what do you think is the first
principle(s) of programming? I'll give
my answer below a little later.</p>
</blockquote>
<ol>
<li>Never trust data from users or other sources.</li>
</ol>
<p>In other words, always check data for validity <em>first</em>. Bad (or unexpected) data can create havoc.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1223386#12233860Answer by Jay for What do you consider the 1st principle(s) of programming?Jay2009-08-03T16:47:35Z2009-08-03T16:47:35Z<p>I'll second DRY and KISS. I'd also add, "Knowing a language is not the same as knowing how to program. Just like knowing how to use the steering wheel is not the same as knowing how to drive." Learn fundamental principles, and then apply those using whatever language or tools you have available. Languages and database engines and the like come and go. Data structures and algorithms are forever.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1223449#12234490Answer by SP for What do you consider the 1st principle(s) of programming?SP2009-08-03T17:02:21Z2009-08-03T17:02:21Z<p>Ask Questions first.</p>
http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1223538#12235381Answer by jeje for What do you consider the 1st principle(s) of programming?jeje2009-08-03T17:25:12Z2009-08-03T17:25:12Z<p>I think that one consequence of the <a href="http://en.wikipedia.org/wiki/Church%E2%80%93Turing%5Fthesis" rel="nofollow">Church-Turing thesis</a> is that any algorithm that can be thought of, can be programmed on a machine.</p>
<p>It makes it incredibly hard to tell a manager/a client 'this is impossible' because in theory, if you can describe it, it is possible.</p>
<p>The rest is a matter of resource. The difference between a programmer and a non-programmer is that a non-programmer will ask for features which will range from 5 minutes development to 5 billion years, and they will be equally happy with each one of them. I exaggerate a bit, but that's the idea.</p>
<p>So here's the first rule of programming:</p>
<p><strong>Maximize your 'end users satisfaction'/'resource' ratio.</strong></p>