15
votes
71answers
4k views
What’s the coolest machine you’ve ever worked on?
What's the most exotic, coolest, unique, or interesting machine you've worked on? Most of us work on machines with x86 architectures using some Windows or Linux variant. I'm sure there are those …
31
votes
What development book made the most impact on you as a developer?
Godel, Escher, Bach: An Eternal Golden Braid (A Metaphorical Fugue on Minds and Machines in the Spirit of Lewis Carr …
2
votes
Common Lisp or Scheme?
Scheme. The core language is small. The "define" operator makes defining functions and variables very clean. It supports tail recursion. You can build object oriented programs in Scheme. One o …
7
votes
What do you do if you cannot resolve a bug?
I do a number of different things:
throw out all my assumptions and start from scratch. Remember, a bug exists because something which appears correct is actually wrong. Even tho …
2
votes
“Must Have” Books on Your Bookshelf
Chicago Manual of Style. I use it frequently. You gotta be able to write about your designs and your code.
(P.S. "You gotta" is probably not an acceptable construct in CMS.)
…
0
votes
How can I convince my boss to buy books for programmers?
It's very simple: How many hours would it take you to learn the same thing without the book? How many hours with the book? If the number of hours with the book is less than without, then the cos …
2
votes
Language features you should never use?
Never rely on the compiler to initialize a variable. For example, never assume that integers are initialized to 0 or pointers to null. It may work fine in the current compiler you are using but c …
2
votes
What degree should I choose to become a better programmer, and why?
Computer engineering, software engineering, computer science, and mathematics are all degress that are highly regarded amongst employers that hire programmers. A strong ability to solve complex pr …
