Tagged Questions

32
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 thi …
3
votes
6answers
93 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 ve …
4
votes
18answers
578 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 c …
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 …
1
vote
3answers
677 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, re …
1
vote
3answers
101 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?
4
votes
6answers
602 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 …
1
vote
2answers
49 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 signi …
5
votes
5answers
317 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 …
0
votes
2answers
440 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 …
0
votes
4answers
292 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 …
2
votes
9answers
373 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. Ho …
0
votes
3answers
161 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 …