Search Results

0
votes

Composite primary keys versus unique object ID field

Composite keys can be good - they may affect performance - but they are not the only answer, in much the same way that a unique (surrogate) key isn't the only answer. What concerns me is th …
3
votes

Prevent site data from being crawled and ripped

Realistically you can't stop malicious crawlers - and any measures that you put in place to prevent them are likely to harm your legitimate users (aside from perhaps adding entries to robots.txt to …
0
votes

When should you start optimising code?

As you are writing code it is important to be aware of the cost implications of each action that you write, i.e. the cost in terms of CPU cycles, database access, File IO etc. I am frequently amaze …
7
votes

Should I agree to ban the “using” directive from my c# projects?

Making it easier to move code around by copy and paste is simply a non sequitur, and quite possibly a warning sign of …
0
votes

Gettext: Is it a good idea for the message ID to be the english text?

Having produced many i18n applications most with language switching I will confirm that using a distinct key that isn't the English equivalent is the only way to do it. Apart from the examp …
12
votes

Good techniques for understanding someone else’s code

When working with production code the first thing that I always do is to get the current code built and working - and verify that it is as per the production system. Always aim to understan …
2
votes

How do you ensure that you as programmer have written quality C code?

Use a static analysis tool, traditionally called lint, however I've used splint which is good. See recommendations in this …