active questions tagged rules-of-thumb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T14:46:58Z http://stackoverflow.com/feeds/tag/rules-of-thumb http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1294666/rules-of-thumb-in-gdi 3 Rules of Thumb in GDI+ Agnel Kurian 2009-08-18T15:33:11Z 2009-10-20T09:35:11Z <p>I have been working on some GDI+ code in .NET and have been learning my lessons the hard way. Simple things like:</p> <ul> <li>What looks good on screen may not look nice on paper and vice versa</li> <li>Caching too many objects can result in an OutOfMemoryException</li> <li>Floats aren't exact</li> </ul> <p>...and so on. I'm sure there is a lot more that experienced folk can add to this.</p> <p>What are some good rules to follow when using GDI+ or any graphics library in general?</p> <p>One useful tip per post will be nice. Thanks.</p> http://stackoverflow.com/questions/276386/how-to-structure-includes-in-c 4 How to structure #includes in C Paggas 2008-11-09T19:58:29Z 2009-08-28T08:50:54Z <p>Say I have a C program which is broken to a set of *.c and *.h files. If code from one file uses functions from another file, where should I include the header file? Inside the *.c file that used the function, or inside the header of that file?</p> <p>E.g. file <code>foo.c</code> includes <code>foo.h</code>, which contains all declarations for <code>foo.c</code>; same for <code>bar.c</code> and <code>bar.h</code>. Function <code>foo1()</code> inside <code>foo.c</code> calls <code>bar1()</code>, which is declared in <code>bar.h</code> and defined in <code>bar.c</code>. Now the question is, should I include <code>bar.h</code> inside <code>foo.h</code>, or inside <code>foo.c</code>?</p> <p>What would be a good set of rules-of-thumb for such issues?</p> http://stackoverflow.com/questions/1166178/thumb-rules-to-decide-between-web-service-implementations-soap-rest 1 Thumb-rules to decide between web service implementations: SOAP / REST? Swanand 2009-07-22T15:39:29Z 2009-07-22T19:30:31Z <p>Are there any thumb-rules to decide between two schools of thought: SOAP and REST?</p> http://stackoverflow.com/questions/1033482/java-collections-implimentations-e-g-hashmaps-vs-hashset-vs-hashtable-wha 1 Java Collections Implimentations (e.g. HashMaps vs HashSet vs HashTable ...), what is the cost of choosing the wrong one? e5 2009-06-23T15:53:59Z 2009-06-23T18:14:46Z <p>In my code I default to using ArrayList for all Lists, HashMap for all maps, HashSet for all sets.</p> <p>From a practical standpoint how much am I losing in flexibility, scalability, readability and performance by choosing the wrong implementation? When does it make sense to spend time to decide to use one rather than another?</p> <p>I certainly see a very clear cut case for why someone would use a LinkedList instead of an ArrayList given certain circumstances. When does someone feel that it is critical they use a HashMap rather than a TreeMap or a HashTable? What about Sets? </p> <p>Questions:</p> <ol> <li>What is the cost of choosing poorly? </li> <li>Does anyone have an disaster stories about choosing the wrong implementation and the datacenter catching fire?</li> <li>Any good rules of thumb?</li> <li>Are there any obscure collections implementations you can't live without?</li> </ol> <p>I've read through:</p> <ul> <li><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/TreeMap.html" rel="nofollow">http://java.sun.com/j2se/1.4.2/docs/api/java/util/TreeMap.html</a> </li> <li><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/HashMap.html" rel="nofollow">http://java.sun.com/j2se/1.4.2/docs/api/java/util/HashMap.html</a> </li> <li><a href="http://stackoverflow.com/questions/896139/java-arraylist-for-list-hashmap-for-map-and-hashset-for-set">http://stackoverflow.com/questions/896139/java-arraylist-for-list-hashmap-for-map-and-hashset-for-set</a> etc...</li> </ul> <p>I found <a href="http://stackoverflow.com/questions/40471/java-hashmap-vs-hashtable">this</a> question to be related from a theoretical point of view, but I'm more interested in a real world, down in the trenches answer.</p> http://stackoverflow.com/questions/315378/c-performance-tips-and-rules-of-thumb-anyone 6 C++ performance tips and rules of thumb anyone? carleeto 2008-11-24T20:37:18Z 2009-06-17T07:25:38Z <p>When coding, what is a good rule of thumb to keep in mind with respect to performance? There are endless ways to optimize for a specific platform and compiler, but I'm looking for answers that apply equally well (or almost) across compilers and platforms.</p> http://stackoverflow.com/questions/982559/balancing-iis-compression-with-cpu-time 1 Balancing IIS compression with CPU time? AngryHacker 2009-06-11T17:41:25Z 2009-06-11T21:12:01Z <p>For instance, with a level of IIS compression set to 9, the web browsing is significantly faster. However, I also have a Web Services application on the box, which transfers significant amounts of data (e.g. 3MB payload is typical), it actually takes 20-30% longer for the data to get to the client, because the CPU on the server takes a while to compress it.</p> <p>Is there a rule of thumb for the level of IIS compression vs amount of data transfered?</p> <p>Anecdotal experience is welcome as well.</p> http://stackoverflow.com/questions/855133/coding-rules-of-thumb 4 Coding Rules of Thumb [closed] rjstelling 2009-05-12T22:11:48Z 2009-05-13T08:58:57Z <p>What are your general <strong>Coding Rules of Thumb</strong>. Things that you can apply generally to a new or existing project to increase the quality of the code.</p> <p>For example, how many lines of code is <em>too</em> many for a single function?</p> http://stackoverflow.com/questions/513953/i-am-compiling-a-rules-of-programming-mindset-for-my-team-what-are-yours 33 I am compiling a Rules of Programming Mindset for my team: What are yours? Jas Panesar 2009-02-05T00:05:47Z 2009-04-11T19:59:13Z <p>I have been working on a list for a while that helps me share the <strong>why</strong> of programming approach and thought as much as <strong>how</strong> to do something.</p> <p>For this, I wanted to build a list of things that are:</p> <ul> <li>best practice, </li> <li>best thought,</li> <li>best approach...</li> </ul> <p>that help a programmers ability to analyze, think, approach, solve and implement in the most effective way.</p> <p>I have seen dozens of incredibly valuable comments in questions throughout SO but I couldn't find a place where we keep them together. There is the most controversial opinion on SO, however I'm just looking for sagely insights that can be shared and help my team and I approach and solve problems better through better programming. </p> <p>Hopefully this can be one place to gather the one or two liners that are concise, profound and easy to share, repeat, review. If we keep it to one rule per answer it might be easiest to vote up/down.</p> <p>I'll start with the first.</p> <p><strong>DRY - Don't Repeat Yourself - In code, comments or documentation.</strong></p> <p><strong>EDIT: This is now a community wiki. Appreciate the flood of answers!</strong></p> http://stackoverflow.com/questions/535367/hardware-sizing-thumb-rules 0 Hardware Sizing - Thumb Rules gnlogic 2009-02-11T04:00:59Z 2009-02-14T11:37:51Z <p>In many Enterprise System architectures, it becomes imperative to size the hardware according to concurrency &amp; workload requirements. Mostly product vendors will provide their own hardware sizing sheets wherein you just plug in the metrics and it will throw out details of number of servers, RAM required and so on.</p> <p>What I'd like to know is that how do we arrive at these sizes. I mean say if there is a concurrency requirement of 1000 users. What are the considerations that would make one finally say that 2 servers in a cluster are required for meeting this concurrency requirement.</p> <p>What are the thumb rules determining how many users,threads etc a processor can handle (for x86, RISC etc). At the start of a project - how do you efficiently determine the sizing for an Enterprise System ?</p> http://stackoverflow.com/questions/431911/namespace-rule-of-thumb 5 Namespace Rule of Thumb Frank 2009-01-10T22:52:37Z 2009-01-10T23:28:59Z <p>Is there a general rule of thumb as to how many classes, interfaces etc should go in to a given name space before the items should be further classfied in to a new name space? Like a best practice or a community preference? Or is this all personal preference? </p> <pre><code>namespace: MyExample.Namespace interface1 interface2 interface3 interface4 interface5 interface6 interface7 interface8 interface9 </code></pre> <p>Or</p> <pre><code>namespace: MyExample.Namespace.Group1 interface1 interface2 interface3 namespace: MyExample.Namespace.Group2 interface4 interface5 interface6 namespace: MyExample.Namespace.Group3 interface7 interface8 interface9 </code></pre> http://stackoverflow.com/questions/422632/rule-of-thumb-on-when-to-use-with-recompile-option 0 Rule of thumb on when to use WITH RECOMPILE option TrickyNixon 2009-01-07T23:34:12Z 2009-01-08T00:05:40Z <p>I understand that the WITH RECOMPILE option forces the optimizer to rebuild the query plan for stored procs but when would you want that to happen?</p> <p>What are some rules of thumb on when to use the WITH RECOMPILE option and when not to?</p> <p>What's the effective overhead associated with just putting it on every sproc?</p> http://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb 2 Where is the best place in an app to do validation? Rules of thumb? jle 2008-11-30T15:15:27Z 2008-12-01T04:49:07Z <p>I am making a C# app for a class project. I want to ensure a string has one of three values. Normally, in a web app, I would do validation with javascript on the client side. However, this is currently a console app. I know that I should do the validation early, but what are some good rules of thumb for validation?</p> http://stackoverflow.com/questions/172219/probability-of-hardware-related-disk-or-memory-corruption 0 Probability of hardware related disk or memory corruption? twk 2008-10-05T16:27:12Z 2008-10-05T16:48:25Z <p>I've got a few hundred computers running an app. On one computer, I've seen two instances of a single bit being incorrectly set on some strings that I pull out of SQLite. If this was my dev computer I would assume I have a bug somewhere, but there is certainly some number of installations at which point I'll start seeing rare hardware based errors. </p> <p>This is certainly dependent on how much IO I do, but are there any rules of thumbs for when there is a decent chance of seeing this kind of thing? For example, for TCP packets, <a href="http://portal.acm.org/citation.cfm?doid=347059.347561" rel="nofollow">this paper</a> determined that silent, undetected corruption will occur in "roughly 1 in 16 million to 10 billion packets". </p> <p>Unfortunately, running a mem/disk checker on the machine in question is not likely to happen. </p>