What are your top design consideration? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T06:25:44Zhttp://stackoverflow.com/feeds/question/48732http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/48732/what-are-your-top-design-consideration4What are your top design consideration?Oded2008-09-07T20:07:59Z2008-11-12T08:45:37Z
<p>When designing and writing code, after "make it work" what are your top design considerations?</p>
http://stackoverflow.com/questions/48732/what-are-your-top-design-consideration/48735#487350Answer by Brian Warshaw for What are your top design consideration?Brian Warshaw2008-09-07T20:10:40Z2008-09-07T20:10:40Z<p>Make it flexible and extensible.</p>
<p>Requirements change very quickly, and I've bitten myself far too often by writing spaghetti in the first iteration and twirling it tightly around my fork with each subsequent change.</p>
http://stackoverflow.com/questions/48732/what-are-your-top-design-consideration/48737#487371Answer by Kyle Cronin for What are your top design consideration?Kyle Cronin2008-09-07T20:13:01Z2008-09-07T20:13:01Z<p>My motto is "make it work, make it fast - in that order". It's basically to guard against premature optimization. Don't worry too much about making it robust initially - you may find you've spent too much time making something a jewel of software reuse only to never use it again because requirements have changed.</p>
<p>Lastly, take some advice from The Mythical Man-Month: "plan to throw one away". Once you have something working you can begin to redesign its structure and make it what you should have written the first time around.</p>
http://stackoverflow.com/questions/48732/what-are-your-top-design-consideration/48739#487390Answer by Jagmal for What are your top design consideration?Jagmal2008-09-07T20:13:38Z2008-09-07T20:13:38Z<p>Maintainability</p>
<p>Performance</p>
<p>Extensibility</p>
<p>Code Quality (how much reuse of old code etc)</p>
http://stackoverflow.com/questions/48732/what-are-your-top-design-consideration/48741#487411Answer by pilif for What are your top design consideration?pilif2008-09-07T20:17:48Z2008-09-07T20:17:48Z<p>also, I've learned that when you decouple as many parts of your code as possible (separate different pieces into components not knowing about their users, for example), you can much more easy make modifications to accommodate the changes Brian was writing about.</p>
<p>One submodule doesn't do what you would have wanted it to? Easy. Just extend it. As it implements a defined interface, no other part of your project would break.</p>
<p>Once you have clean interfaces, you may even find out that component C also needs a certain functionality of component A which you didn't think of in the initial design phase when you designed B as an user of A. </p>
<p>But now that A knows nothing about B, C is free to use A aswell without you having to go around an fix up A to work with C aswell.</p>
<p>This proves to be very helpful over and over and is certainly something I'm after whenever I'm designing something fresh.</p>
http://stackoverflow.com/questions/48732/what-are-your-top-design-consideration/48751#487511Answer by Tom Hawtin - tackline for What are your top design consideration?Tom Hawtin - tackline2008-09-07T20:24:40Z2008-09-07T20:24:40Z<p>Even before "make it work", I want code that is readable. Rather than hacking until something appears to work, prefer code that obviously has no bugs than has no obvious bugs.</p>
<p>Trying to be flexible and extensible often leads to speculative generalisation. Writting code that "you might need", but never do in that form. Causes lots of upfront work and additional maintenance.</p>
<p>For my day job, making security is the top consideration (closely followed by not breaking anybody else).</p>
http://stackoverflow.com/questions/48732/what-are-your-top-design-consideration/48754#487540Answer by deuseldorf for What are your top design consideration?deuseldorf2008-09-07T20:27:55Z2008-09-07T20:27:55Z<p>Readability</p>
<p>Maintainability</p>
<p>Reuseability</p>
http://stackoverflow.com/questions/48732/what-are-your-top-design-consideration/48798#487984Answer by Chris Dail for What are your top design consideration?Chris Dail2008-09-07T21:20:29Z2008-09-07T21:20:29Z<p>This is my design philosophy.</p>
<p>Readability - Write Code that is readable. You or someone else will appreciate it when you have to come back to it at a later point in time.</p>
<p>Simplicity - Keep it simple. Only build in complexity where required and only to the degree required. You can always refactor it later.</p>
<p>Say Less - Less code is more. If you can leverage something that exists, do so.</p>
http://stackoverflow.com/questions/48732/what-are-your-top-design-consideration/48807#488071Answer by George Mauer for What are your top design consideration?George Mauer2008-09-07T21:32:07Z2008-09-07T21:32:07Z<p>As Michael Feathers says in Working Effectively With Legacy Code, legacy (bad) code is code with no tests.
I find that by designing and writing test-first code or even code with an eye for tests it WILL turn out to be loosely coupled, it WILL be more readable and it will certainly be more maintainable. So in a word, primary design concern: Testability.</p>
<p>Seriously, I went from not knowing how to design a durn thing to feeling fairly comfortable in my designs simply by considering tests. At some point, it all just clicks.</p>
http://stackoverflow.com/questions/48732/what-are-your-top-design-consideration/133246#1332460Answer by Friedrich for What are your top design consideration?Friedrich2008-09-25T13:15:53Z2008-09-25T13:15:53Z<p>Readability
Simplicity</p>
<p>Unfortunatly it seems that Simplicity is not very high up that list. I've the impression that learning to click somewhere which then generates (barely readable) code is very popular. And there a configuration file and there another probably best in XML. There another makefile, there another manifest and well there another thing is not that unpopular....</p>
http://stackoverflow.com/questions/48732/what-are-your-top-design-consideration/283342#2833420Answer by sTEVE for What are your top design consideration?sTEVE2008-11-12T08:40:32Z2008-11-12T08:40:32Z<p>Readability
Flexability
Simplicity
Efficiency</p>
<p>Flexibility and simplicity are sometimes at odds, but generally the more flexible the code the more natural the design becomes.</p>