Search Results

1
vote

What are some Real-Time Operating Systems for 32-bit processors?

This question is awfully vague, considering the range of 32-bit processors available nowadays. I've liked QNX in the past on a 933MHz Pentium-3 with 512MB of RAM, and I'm using FreeRTOS now on a 7 …
0
votes

What is your single most effective interview question?

I wonder how many of these answers are based on the long term success at hiring productive developers, and how many are merely based on what types of questions make for an interesting/enjoyable int …
2
votes

What 8-bit embedded platform have you used for a design?

The only 8-bit processors I've used in embedded systems have been 8051s, which I'm not a huge fan of. 32 bit microcontrollers have come down in price and power consumption to the point where I'd n …
2
votes

Poll: If TODO comments were more “visible”, would you resolve them faster?

I use an extended comment marker ("//#"), which I modify my syntax highlighting rules to highlight, and regularly grep my repository for. I copied the idea from a coworker 10 years ago ("-- …
13
votes

What is the most spectacular way to shoot yourself in the foot with C++?

In C/C++, if you start a numeric constant with a zero, it's interpreted as octal: int a = 123; // Decimal 123 int b = 0123; // Octal 123, decimal 83 I …
2
votes

C++ RTTI Viable Examples

I worked on an aircraft simulation once, that had what they (somewhat confusingly) referred to as a "Simulation Database". You could register variables like floats or ints or strings in it, and pe …
0
votes

Where do you keep your code?

/home/myusername When using cygwin on windows, it's equivalent to c:\cygwin\home\myusername (depending on how you set up your mount point) …