What do you consider the 1st principle(s) of programming? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T14:26:45Z http://stackoverflow.com/feeds/question/159176 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming 38 What do you consider the 1st principle(s) of programming? pongba 2008-10-01T19:03:43Z 2009-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 -4 Answer by Mostlyharmless for What do you consider the 1st principle(s) of programming? Mostlyharmless 2008-10-01T19:04:40Z 2008-10-01T19:04:40Z <p>No infinite loops. </p> http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159182#159182 17 Answer by Dima for What do you consider the 1st principle(s) of programming? Dima 2008-10-01T19:04:46Z 2008-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#159184 35 Answer by Daok for What do you consider the 1st principle(s) of programming? Daok 2008-10-01T19:05:09Z 2008-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#159186 2 Answer by Joel Coehoorn for What do you consider the 1st principle(s) of programming? Joel Coehoorn 2008-10-01T19:05:18Z 2008-10-01T19:05:18Z <p>Sequence, Choice, Repetition</p> http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159187#159187 87 Answer by Bill for What do you consider the 1st principle(s) of programming? Bill 2008-10-01T19:05:30Z 2009-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 -1 Answer by Pokus for What do you consider the 1st principle(s) of programming? Pokus 2008-10-01T19:05:43Z 2008-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#159193 24 Answer by OedipusPrime for What do you consider the 1st principle(s) of programming? OedipusPrime 2008-10-01T19:06:26Z 2008-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#159197 15 Answer by Daok for What do you consider the 1st principle(s) of programming? Daok 2008-10-01T19:06:55Z 2008-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#159198 3 Answer by torial for What do you consider the 1st principle(s) of programming? torial 2008-10-01T19:06:56Z 2008-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 -1 Answer by Jim C for What do you consider the 1st principle(s) of programming? Jim C 2008-10-01T19:07:14Z 2008-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#159212 0 Answer by Pokus for What do you consider the 1st principle(s) of programming? Pokus 2008-10-01T19:08:47Z 2008-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#159213 1 Answer by Joshua for What do you consider the 1st principle(s) of programming? Joshua 2008-10-01T19:09:05Z 2008-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#159217 0 Answer by Giao for What do you consider the 1st principle(s) of programming? Giao 2008-10-01T19:10:12Z 2008-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 -6 Answer by dacracot for What do you consider the 1st principle(s) of programming? dacracot 2008-10-01T19:10:26Z 2008-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#159223 3 Answer by dmckee for What do you consider the 1st principle(s) of programming? dmckee 2008-10-01T19:11:29Z 2008-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 -1 Answer by Rich B for What do you consider the 1st principle(s) of programming? Rich B 2008-10-01T19:11:43Z 2008-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#159256 2 Answer by Bill the Lizard for What do you consider the 1st principle(s) of programming? Bill the Lizard 2008-10-01T19:19:07Z 2008-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#159279 1 Answer by Jeff Yates for What do you consider the 1st principle(s) of programming? Jeff Yates 2008-10-01T19:22:12Z 2008-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#159283 0 Answer by pongba for What do you consider the 1st principle(s) of programming? pongba 2008-10-01T19:24:35Z 2008-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#159285 9 Answer by ctrlShiftBryan for What do you consider the 1st principle(s) of programming? ctrlShiftBryan 2008-10-01T19:25:00Z 2008-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#159288 2 Answer by James Curran for What do you consider the 1st principle(s) of programming? James Curran 2008-10-01T19:25:22Z 2008-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#159301 2 Answer by S.Lott for What do you consider the 1st principle(s) of programming? S.Lott 2008-10-01T19:29:22Z 2008-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#159314 1 Answer by sharvell for What do you consider the 1st principle(s) of programming? sharvell 2008-10-01T19:32:55Z 2008-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 -1 Answer by pmlarocque for What do you consider the 1st principle(s) of programming? pmlarocque 2008-10-01T19:36:48Z 2008-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#159335 4 Answer by CrashCodes for What do you consider the 1st principle(s) of programming? CrashCodes 2008-10-01T19:37:26Z 2008-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#159348 1 Answer by Will M for What do you consider the 1st principle(s) of programming? Will M 2008-10-01T19:39:43Z 2008-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#159473 6 Answer by mamama for What do you consider the 1st principle(s) of programming? mamama 2008-10-01T20:09:03Z 2008-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#159478 2 Answer by Bryan Oakley for What do you consider the 1st principle(s) of programming? Bryan Oakley 2008-10-01T20:10:40Z 2008-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#159504 19 Answer by Georgi for What do you consider the 1st principle(s) of programming? Georgi 2008-10-01T20:18:07Z 2008-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#159520 1 Answer by Ates Goral for What do you consider the 1st principle(s) of programming? Ates Goral 2008-10-01T20:22:25Z 2008-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#159552 0 Answer by Joshua for What do you consider the 1st principle(s) of programming? Joshua 2008-10-01T20:29:44Z 2008-10-01T20:29:44Z <p>Structured Programming</p> http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/159571#159571 15 Answer by Oscar Reyes for What do you consider the 1st principle(s) of programming? Oscar Reyes 2008-10-01T20:33:49Z 2008-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#159576 4 Answer by Audun for What do you consider the 1st principle(s) of programming? Audun 2008-10-01T20:35:00Z 2008-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#159578 2 Answer by Gabriel Isenberg for What do you consider the 1st principle(s) of programming? Gabriel Isenberg 2008-10-01T20:35:28Z 2008-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#159596 3 Answer by Michael Easter for What do you consider the 1st principle(s) of programming? Michael Easter 2008-10-01T20:41:07Z 2008-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#159623 1 Answer by HLGEM for What do you consider the 1st principle(s) of programming? HLGEM 2008-10-01T20:45:50Z 2008-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#159685 0 Answer by millenomi for What do you consider the 1st principle(s) of programming? millenomi 2008-10-01T20:53:45Z 2008-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#159686 2 Answer by Quibblesome for What do you consider the 1st principle(s) of programming? Quibblesome 2008-10-01T20:53:45Z 2008-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#159896 1 Answer by Throknor for What do you consider the 1st principle(s) of programming? Throknor 2008-10-01T21:46:05Z 2008-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#159899 1 Answer by CAD bloke for What do you consider the 1st principle(s) of programming? CAD bloke 2008-10-01T21:47:03Z 2008-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#159935 7 Answer by Raz for What do you consider the 1st principle(s) of programming? Raz 2008-10-01T21:54:29Z 2008-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#160237 3 Answer by Christian Vest Hansen for What do you consider the 1st principle(s) of programming? Christian Vest Hansen 2008-10-01T23:33:54Z 2008-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#160450 0 Answer by Tobias for What do you consider the 1st principle(s) of programming? Tobias 2008-10-02T01:06:30Z 2008-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#160471 14 Answer by Ryszard Szopa for What do you consider the 1st principle(s) of programming? Ryszard Szopa 2008-10-02T01:23:26Z 2008-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#160553 1 Answer by Booji Boy for What do you consider the 1st principle(s) of programming? Booji Boy 2008-10-02T01:58:52Z 2008-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#160560 0 Answer by mea for What do you consider the 1st principle(s) of programming? mea 2008-10-02T02:00:56Z 2008-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 -1 Answer by Martin Cote for What do you consider the 1st principle(s) of programming? Martin Cote 2008-10-02T02:17:31Z 2008-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#160609 12 Answer by Brian M. Hunt for What do you consider the 1st principle(s) of programming? Brian M. Hunt 2008-10-02T02:22:24Z 2009-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#160687 0 Answer by Chris for What do you consider the 1st principle(s) of programming? Chris 2008-10-02T02:54:36Z 2008-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#162214 0 Answer by charliebeattie for What do you consider the 1st principle(s) of programming? charliebeattie 2008-10-02T13:17:46Z 2008-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#162289 1 Answer by Jivko Petiov for What do you consider the 1st principle(s) of programming? Jivko Petiov 2008-10-02T13:34:48Z 2008-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#171660 0 Answer by edfoh for What do you consider the 1st principle(s) of programming? edfoh 2008-10-05T08:06:57Z 2008-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#171710 1 Answer by blizpasta for What do you consider the 1st principle(s) of programming? blizpasta 2008-10-05T08:43:29Z 2008-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#181304 6 Answer by Dov Wasserman for What do you consider the 1st principle(s) of programming? Dov Wasserman 2008-10-08T04:07:08Z 2008-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#328542 1 Answer by J.T. Hurley for What do you consider the 1st principle(s) of programming? J.T. Hurley 2008-11-30T06:43:49Z 2008-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#330880 0 Answer by mannu for What do you consider the 1st principle(s) of programming? mannu 2008-12-01T13:43:25Z 2008-12-01T13:43:25Z <p>Humbleness.</p> http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/339889#339889 2 Answer by Norman Ramsey for What do you consider the 1st principle(s) of programming? Norman Ramsey 2008-12-04T08:27:25Z 2008-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#339901 1 Answer by seanb for What do you consider the 1st principle(s) of programming? seanb 2008-12-04T08:33:34Z 2008-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#397714 1 Answer by Thomas Danecker for What do you consider the 1st principle(s) of programming? Thomas Danecker 2008-12-29T13:29:02Z 2008-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#425408 2 Answer by mh for What do you consider the 1st principle(s) of programming? mh 2009-01-08T18:56:45Z 2009-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#425471 1 Answer by Demian Garcia for What do you consider the 1st principle(s) of programming? Demian Garcia 2009-01-08T19:10:31Z 2009-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#425478 3 Answer by Mike Hofer for What do you consider the 1st principle(s) of programming? Mike Hofer 2009-01-08T19:11:26Z 2009-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#425500 1 Answer by Orkun Balkancı for What do you consider the 1st principle(s) of programming? Orkun Balkancı 2009-01-08T19:16:46Z 2009-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 -1 Answer by Jim C for What do you consider the 1st principle(s) of programming? Jim C 2009-01-08T19:18:54Z 2009-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#425625 1 Answer by peSHIr for What do you consider the 1st principle(s) of programming? peSHIr 2009-01-08T19:51:48Z 2009-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#425693 1 Answer by Bill for What do you consider the 1st principle(s) of programming? Bill 2009-01-08T20:09:35Z 2009-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#425787 1 Answer by johnny for What do you consider the 1st principle(s) of programming? johnny 2009-01-08T20:32:13Z 2009-01-08T20:32:13Z <p>Understand the problem.</p> http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/425868#425868 1 Answer by duffymo for What do you consider the 1st principle(s) of programming? duffymo 2009-01-08T20:49:44Z 2009-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#425984 2 Answer by Konrad Rudolph for What do you consider the 1st principle(s) of programming? Konrad Rudolph 2009-01-08T21:15:03Z 2009-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 &lt;- { } if item.x &gt; position then item.count &lt;- 0 P &lt;- { item } item.count &lt;- item.count + 1 item.x = position Results &lt;- { } for something or other do position &lt;- GetPosition() Result &lt;- 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-&gt;x &gt; position) { item-&gt;count = 0; return NULL; } ++item-&gt;count; item-&gt;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#425998 1 Answer by Rob K for What do you consider the 1st principle(s) of programming? Rob K 2009-01-08T21:18:18Z 2009-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#426014 1 Answer by Clint Simon for What do you consider the 1st principle(s) of programming? Clint Simon 2009-01-08T21:22:42Z 2009-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#426023 1 Answer by Christopher Klein for What do you consider the 1st principle(s) of programming? Christopher Klein 2009-01-08T21:24:05Z 2009-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#556848 1 Answer by pmlarocque for What do you consider the 1st principle(s) of programming? pmlarocque 2009-02-17T13:44:31Z 2009-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#556872 1 Answer by ng5000 for What do you consider the 1st principle(s) of programming? ng5000 2009-02-17T13:51:10Z 2009-02-17T13:51:10Z <p>JFDI - Just @#*&amp;^%$ 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#625599 1 Answer by xiaoxiaopan for What do you consider the 1st principle(s) of programming? xiaoxiaopan 2009-03-09T09:48:36Z 2009-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#626016 1 Answer by pi for What do you consider the 1st principle(s) of programming? pi 2009-03-09T12:25:18Z 2009-03-09T12:25:18Z <p>Abstraction, Composition</p> http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/626019#626019 2 Answer by Mike Sickler for What do you consider the 1st principle(s) of programming? Mike Sickler 2009-03-09T12:26:49Z 2009-03-09T12:26:49Z <p>Do no harm :)</p> http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/992674#992674 1 Answer by Ollie Saunders for What do you consider the 1st principle(s) of programming? Ollie Saunders 2009-06-14T11:40:53Z 2009-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#992714 2 Answer by tomjen for What do you consider the 1st principle(s) of programming? tomjen 2009-06-14T12:09:27Z 2009-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#1026409 1 Answer by hiboys for What do you consider the 1st principle(s) of programming? hiboys 2009-06-22T10:13:37Z 2009-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#1026424 3 Answer by Amy for What do you consider the 1st principle(s) of programming? Amy 2009-06-22T10:18:35Z 2009-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#1214161 1 Answer by yelinna for What do you consider the 1st principle(s) of programming? yelinna 2009-07-31T18:39:53Z 2009-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#1214183 1 Answer by Kevin Pang for What do you consider the 1st principle(s) of programming? Kevin Pang 2009-07-31T18:44:14Z 2009-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#1214199 1 Answer by Timur Fanshteyn for What do you consider the 1st principle(s) of programming? Timur Fanshteyn 2009-07-31T18:47:47Z 2009-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#1214208 1 Answer by nwahmaet for What do you consider the 1st principle(s) of programming? nwahmaet 2009-07-31T18:51:25Z 2009-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#1214220 1 Answer by littlegeek for What do you consider the 1st principle(s) of programming? littlegeek 2009-07-31T18:52:59Z 2009-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#1214222 1 Answer by Michael Stum for What do you consider the 1st principle(s) of programming? Michael Stum 2009-07-31T18:53:03Z 2009-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#1214223 1 Answer by Mike Two for What do you consider the 1st principle(s) of programming? Mike Two 2009-07-31T18:53:08Z 2009-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#1214228 1 Answer by ojrac for What do you consider the 1st principle(s) of programming? ojrac 2009-07-31T18:54:28Z 2009-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#1214281 0 Answer by Captain Segfault for What do you consider the 1st principle(s) of programming? Captain Segfault 2009-07-31T19:04:14Z 2009-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#1223319 0 Answer by osij2is for What do you consider the 1st principle(s) of programming? osij2is 2009-08-03T16:37:24Z 2009-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#1223386 0 Answer by Jay for What do you consider the 1st principle(s) of programming? Jay 2009-08-03T16:47:35Z 2009-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#1223449 0 Answer by SP for What do you consider the 1st principle(s) of programming? SP 2009-08-03T17:02:21Z 2009-08-03T17:02:21Z <p>Ask Questions first.</p> http://stackoverflow.com/questions/159176/what-do-you-consider-the-1st-principles-of-programming/1223538#1223538 1 Answer by jeje for What do you consider the 1st principle(s) of programming? jeje 2009-08-03T17:25:12Z 2009-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>