Search Results

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 …
3
votes

When is it good (if ever) to scrap production code and start over?

I wonder if the people who vote for scrapping and starting over have ever successfully refactored a large project, or at least seen a large project in poor condition that they think could use a ref …
1
vote

What’s the best stable C++ IDE with a GUI that runs on linux?

I like SciTE on linux and windows. It's very lightweight, and customizable. …
48
votes

What real life bad habits has programming given you?

One thing I've noticed lately is that many engineers in different fields (EE, ME) don't try to simplify and automate things as much as software people do. I'm not sure why that is, or even if it's …
2
votes

Why do we still program with flat files?

Labview and Simulink are two graphical programming environments. Th …
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 …
0
votes

How is your Development Environment Set up?

I put all toolchains and other apps needed to build my code into revision control, and write makefiles for all projects such that the version of the tools from the repository is used, not whatever …
13
votes

What Programming Book would you NOT recommend to Developers?

The Art of Computer Programming, by Donald Knuth. …
1
vote

Do you find that programmers generally get half way through a project and then slow to a crawl and how to resolve this?

The case that sticks out most in my mind was large team that worked on a big project for a long time, continuously acting like they were almost done. Eventually they were drowning in half-baked qu …
31
votes

How can you tell if a person is a programmer?

Easy question. They aren't. I'd guess this method is 99% accurate, given a random sample of people. …