Search Results

3
votes

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

Obfuscation. Things like automatic constructors that do too much, overriding operators, throwing exceptions, etc. Even macros to some extent. C's beauty is that you can look at a snippet of …
14
votes

What is your favorite “programmer” t-shirt?

Google SREs all got t-shirts that read I have root @google Simple & bad-ass. …
1
vote

Most Influential CS Class You’ve Taken

I've only taken one, a C class. When I asked how strings were copied (I'd been using Turbo Pascal, where a string is allocated on the stack and assigning one string to another involves a memcpy) an …
3
votes

Switching Career Paths in Programming

First answer: I think it depends what you mean by "web development", which can span anything from simple HTML pages to Google. Second answer: do the hardest thing you can be good at and tha …
4
votes

Does it matter where you get your CS degree

Let me relay an anecdote: I was once in a meeting where this topic came up. A colleague, who is in the top 3 engineers I've ever been lucky enough to work with, said, "it's stupid to worry about de …
1
vote

Infinite loops - top or bottom?

for (;;) is what I usually see. …
3
votes

Learning experiences for young developers

No, experience trumps almost everything else, even if that experience isn't ideal (because, you know, no matter where you work, it won't be ideal). Just by working with other people, on a p …