cluestick

How to Report Bugs the Smart Way

I want to write (or find) a guide to effective bug reporting in a style similar to ESR's How To Ask Questions The Smart Way What are your top tips for effective bug reports? ...

Don't monkey with the loop index

One of Steve McConnell's checklist items (pdf) is that you should not monkey with the loop index. This makes intuitive sense and is a practice I've always followed except maybe as I learned how to program back in the day. In a recent code review I found this awkward loop and immediately flagged it as suspect. for ( int i=0 ...