1
vote
What development book made the most impact on you as a developer?
Mine is Test Driven Development by Example
…
227
votes
5
votes
What are the best design patterns books you have read?
My favorites have already been mentioned above. I'll just add in Uncle Bob's Agile Principles Patterns and Practices. Not just about design patterns, but also about design principles.
…
16
votes
Is JavaScript object-oriented?
Javascript is a multi-paradigm language that supports procedural, object-oriented (prototype-based) and functional programming styles.
Here is an …
33
votes
What is your single favorite development tool?
Unix utilities. I even install Cygwin when in Windows.
…
2
votes
7
votes
Which software expert do you have as a role model?
Dave Thomas & Andy Hunt - pragmatic programmers
…
0
votes
3
votes
Should .NET developers *really* be spending time learning C for low-level exposure?
I already know C and that helped me during the 1.1 days where there are a lot of things that are not yet in the .NET base libraries and I have to P/Invoke something from the Platform SDK.
…
20
votes
What is the worst code you’ve ever written?
I once inherited an stored procedure that is 40 thousand lines long.
That is a single stored procedure.
The file is about 1.5 MB.
I'm still looking for the person who wrot …
0
votes
So you’ve entered the wild rainforest of someone’s new API. How do you find your way through?
I skim through the docs and start using it. I also find people that has used the API and forums about the new API and ask for quick tutorials.
If the API has published it's unit test code, …
33
votes
How often should you refactor?
Just like you said: refactor early, refactor often.
Refactoring early means the necessary changes are still fresh on my mind. Refactoring often means the changes tend to be smaller.
…
4
votes
1
vote
Are you a code neat freak?
If I just wrote the code, then I clean it up before committing it.
If I need to modify existing code (add new functionality or fix a bug) I refactor it first so that my changes fits …
3
votes
Will learning a couple of languages in parallel blow my mind?
If you want to blow your mind, try learning just one that is completely different from what you are currently using.
If you are on C#/Java now, try to learn a functional language like Lisp, …
