Search Results

40
votes

What is your favorite “programmer” t-shirt?

I like this one even better than the one that David Grant posted. ( …
10
votes

What coding mistakes are a telltale giveaway of an inexperienced programmer?

Using parallel arrays when an array of structures/records/objects would be more appropriate. Comments that convey the author's uncertainty as to why the code works (e.g. /* I don't kn …
1
vote

What is the most poorly named application out there?

Naming one product after a substring contained in another product's name is rarely a good idea, especially when they do almost the same thing. The only way this could be more confusing is if the IB …
9
votes

What is the most poorly named application out there?

Another trio of product names that still confuse people to this day: DIVX …
4
votes

What is the most poorly named application out there?

The MS-DOS recover command had …
0
votes

What client do you use for Remote Desktop/VNC?

If you use Remote Desktop to login to multiple computers simultaneously, the "Remote Desktops" application from the …
1
vote

When should BOOL and bool be used in C++?

Another situation where you should use BOOL: when implementing a callback function that takes or returns a BOOL. For example, …
0
votes

What’s Your Biggest Visual Studio 2008 Annoyance?

Debug CRT Deployment: Installing the debug C runtime (msvcr90d.dll) on test systems is far more complicated than it needs to be. I usually would prefer to use a …
9
votes

Which is the best compiler for c++?

If you're looking for a C++ compiler that accurately implements the spec, you may want to look into the Comeau C++ compiler. …