Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

78
votes
44answers
8k views

GOTO still considered harmful?

Everyone is aware of Dijkstra's Letters to the editor: go to statement considered harmful (also here .html transcript and here .pdf) and there has been a formidable push since that time to eschew the ...
24
votes
13answers
3k views

C++ Iterators Considered Harmful?

At the Boost library conference today, Andrei Alexandrescu author of the book Modern C++ Design and the Loki C++ library, spoke about why iterators are bad, and he had a better solution. I tried to ...
22
votes
17answers
3k views

Why is the 'if' statement considered evil?

I just came from Simple Design and Testing Conference. In one of the session we were talking about evil keywords in programming languages. Corey Haines, who proposed the subject, was convinced that ...
15
votes
19answers
2k views

Best practices considered harmful?

I read an article a few months back where the author suggested that best practices were bad. I can't find the article, but bonus points to the first person who does. Basically the premise of the ...
7
votes
12answers
894 views

Is XML considered harmful? [closed]

The title of the question pretty much says it all. But these are the keypoints that I am interested to find out, and they are just totally random in my mind: Does it it make your job as a developer ...
4
votes
8answers
416 views

Side effects in an iterator considered harmful?

I've written my first C# iterator today. Woohoo. Interestingly, it has side effects. My iterator filters out invalid files from a directory and returns a sequence of valid files to process. Wheneve ...
2
votes
4answers
167 views

Is it bad practice to use environment variables in rm -rf statements? [closed]

I was maintaining some shell scripts that we use for automated builds on our development server, when i moved a variable definition from on script file to another, along with several other lines of ...
1
vote
0answers
117 views

Assignment statement - considered harmful? [closed]

I came across this video of Uncle Bob speaking about the SICP book and the assignment statement and it made me think (and read the corresponding chapter from SICP). I'm wondering whether the ...