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. …
0
votes

What do you use to keep notes as a developer?

Text files in ~/lib/docs …
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 …