Search Results

7
votes

What is your single most favorite command-line trick using Bash?

I use the following a lot: The :p modifier to print a history result. E.g. !!:p Will print the last command so you can check that it's correct …
1
vote

What development book made the most impact on you as a developer?

Most impact? K&R C second edition when I read it at college. It's effectively what started my career. …
1
vote

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

Non-const references as arguments are evil as it's non-obvious (from just reading the code at the callsite) that an argument is potentially being modified. E.g., given: void …
2
votes

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

Operator overloading can be pretty evil. Say you overloaded the operator '*' and you need to modify the implementation/contract. Now, being a good coder, you'll go and check all the uses of the ove …
2
votes

OpenGL still better than Direct3D for non-games ?

This doesn't directly answer your question (sorry), but I was one of the original guys working on Direct3D and hehe: Are there scenegraph libraries for Direct3D? …
15
votes

Why are Vi and Emacs popular ?

Just in case you hadn't seen this: …
2
votes

What would it take for people to move away from C++?

C++ is a tool in my toolbox. So is java and python and a few other things. Handily my company's environment enables me to use whatever is appropriate. C++ == perf when necessa …