3
votes
6answers
106 views
Best practices, PHP, tracking millions of impressions per day.
What do I have to do to make 20k mysql inserts per second possible (during peak hours around 1k/sec during slower times)? I've been doing some research and I've seen the "INSERT DELAYED" suggestion, …
2
votes
3answers
64 views
Define two functions, or branch within one?
I was reading about how to detect the encoding of a file in PHP, and on some blog or somewhere, it was suggested to do this:
if (function_exists('mb_detect_encoding')) {
function is_utf8($str) {
…
4
votes
2answers
116 views
Uniform initialization in C++0x, when to use () instead of {}?
Hi,
Is there a rule of thumb to decide when to use the old syntax () instead of the new syntax {}?
To initialize a struct:
struct myclass
{
myclass(int px, int py) : x(px), y(py) {}
private:
…
1
vote
2answers
39 views
Java daemon - handling shutdown requests
I'm currently working on a daemon that will be doing A LOT of different tasks. It's multi threaded and is being built to handle almost any kind of internal-error without crashing. Well I'm getting to …
13
votes
16answers
580 views
Constant abuse?
I have run across a bunch of code in a few C# projects that have the following constants:
const int ZERO_RECORDS = 0;
const int FIRST_ROW = 0;
const int DEFAULT_INDEX = 0;
const …
1
vote
6answers
107 views
Teamworking in software development etiquette
A lot of the coding I do at work (when lucky enough to be assigned some...) is usually individual projects. As I only run source control locally, what are the best practices for working with source …
2
votes
3answers
64 views
Why does ‘unspecified_bool’ for classes which have intrinsic conversions to their wrappered type fail?
I have recently read the safe bool idiom article. I had seen this technique used a few times, but had never understood quite why it works, or exactly why it was necessary (probably like many, I get …
5
votes
2answers
38 views
TFS: Merge best practices
Gentlemen,
We have a standard branch architechture where we have a development branch for each team
common integration branch (from where all development branches are branched) and production branch …
0
votes
5answers
49 views
ASP.NET In a Web Farm
What issues do I need to be aware of when I'm deploying an ASP.NET application as a web farm?
1
vote
2answers
97 views
Static String constants VS enum in Java 5+
I've read that question & answers:
http://stackoverflow.com/questions/66066/what-is-the-best-way-to-implement-constants-in-java
And came up with a decision that enum is better way to implement a …
3
votes
4answers
68 views
What should I store in cookies to implement “Remember me” during user login
I have a login system in place for my website, the details of the user which are stored in the database are userid(unique for every user and identifier), email address(unique), display name(not …
3
votes
3answers
52 views
Defining event handlers
I can define an event like this(declared function):
MyElement.Keyup +=MyDeclaredFunction
I can also define it like this(anonymous delegate):
MyElement.Keyup+=new delegate(object sender, eventargs …
7
votes
1answer
97 views
Git workflow for corporate Linux kernel development
I work for a company which builds embedded systems using Linux. Historically we've always used CVS to store our kernel work. Our kernels end up being a collection of:
Drivers for our proprietary …
2
votes
5answers
144 views
When would it make sense to pass a function to a function?
Ok, so it is possible to pass a function to another function.
http://stackoverflow.com/questions/148982/passing-a-function-to-another-function-in-actionscript-3
This is obviously very powerful, but …
0
votes
2answers
45 views
DataReader best-practices
Similar to this question, but the answers never really got around to what I want to know. Is there any standards around getting values from a DataReader? I.e., is this
…
