3
votes
6answers
103 views
Rules of Thumb in GDI+
I have been working on some GDI+ code in .NET and have been learning my lessons the hard way. Simple things like:
What looks good on screen may not look nice on paper and vice versa
Caching too many …
1
vote
3answers
105 views
Thumb-rules to decide between web service implementations: SOAP / REST?
Are there any thumb-rules to decide between two schools of thought: SOAP and REST?
1
vote
3answers
771 views
Java Collections Implimentations (e.g. HashMaps vs HashSet vs HashTable …), what is the cost of choosing the wrong one?
In my code I default to using ArrayList for all Lists, HashMap for all maps, HashSet for all sets.
From a practical standpoint how much am I losing in flexibility, scalability, readability and …
1
vote
2answers
54 views
Balancing IIS compression with CPU time?
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 …
4
votes
18answers
596 views
Coding Rules of Thumb [closed]
What are your general Coding Rules of Thumb. Things that you can apply generally to a new or existing project to increase the quality of the code.
For example, how many lines of code is too many for …
0
votes
2answers
530 views
Hardware Sizing - Thumb Rules
In many Enterprise System architectures, it becomes imperative to size the hardware according to concurrency & workload requirements. Mostly product vendors will provide their own hardware sizing …
33
votes
65answers
3k views
I am compiling a Rules of Programming Mindset for my team: What are yours?
I have been working on a list for a while that helps me share the why of programming approach and thought as much as how to do something.
For this, I wanted to build a list of things that are:
best …
5
votes
5answers
337 views
Namespace Rule of Thumb
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 …
0
votes
4answers
307 views
Rule of thumb on when to use WITH RECOMPILE option
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?
What are some rules of thumb on when to use the …
2
votes
9answers
385 views
Where is the best place in an app to do validation? Rules of thumb?
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 …
6
votes
26answers
1k views
C++ performance tips and rules of thumb anyone?
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 …
4
votes
6answers
669 views
How to structure #includes in C
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 …
0
votes
3answers
170 views
Probability of hardware related disk or memory corruption?
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 …
