3
votes
8answers
442 views
Usability: Dynamic Dropdown Menu Population
I've long thought (but never practiced for some reason) that a dropdown menu that is dynamically generated and only contains one item, should automatically select that item. This would opposed to the …
2
votes
3answers
58 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) {
…
1
vote
2answers
36 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 …
5
votes
2answers
32 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 …
13
votes
16answers
560 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 …
3
votes
2answers
93 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:
…
7
votes
6answers
183 views
Building ASP.NET application - Best Practices
We are building an ASP.NET application and would like to follow the best practices. Some of the best practices are:
Server side Code:
Use catch blocks to trap & log low level errors too.
Use …
0
votes
2answers
94 views
ASP.NET – Web page designing - Best Practices
.
Dear all,
We are building an ASP.NET application with C#.net as language and would like to implement best standards while designing HTML, JavaScript and CSS pages.
Would you please let …
2
votes
3answers
63 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 …
9
votes
8answers
1k views
Best way to migrate from VSS to Subversion?
I'm a single developer looking to get off of Visual Source Safe and move to svn.
A quick search brings up several tools, but I don't see a clear winner and I can't afford to spend a lot of time …
1
vote
6answers
106 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
4answers
231 views
difference between global operator and member operator
Is there a difference between defining a global operator that takes two references for a class and defining a member operator that takes only the right operand?
Global:
class X
{
public:
int …
0
votes
2answers
46 views
Tibco Rendezvous - size constraints
I am attempting to put a potentially large string into a rendezvous message and was curious about size constraints. I understand there is a physical limit (64mb?) to the message as a whole, but I'm …
2
votes
6answers
157 views
Drupal development and use by professional programmers .. are there specific pitfalls or advantages?
Background: Long ago Microsoft Access gained a lot of popularity because you could build pretty powerful desktop database applications with point-and-click ease. It seems like Drupal is now doing the …
23
votes
15answers
2k views
zen of python
There is the Zen of Python written by Tim Peters. It is considered like a summary manual of python's philosophy. Here it is:
>>> import this
The Zen of Python, by Tim Peters
…
