2
votes
Command Pattern : How to pass parameters to a command ?
Pass the person when you create the command object:
ICommand command = new DeletePersonCommand(person);
so that when you execute the command, it already knows ever …
3
votes
How often to commit changes to source control ?
I commit everytime I'm done with a task. That usually takes 30 mins to 1 hr.
…
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, …
9
votes
What is so bad about Singletons
It is easily used (abused) as a global variable.
Classes that depend on singletons are relatively harder to unit test in isolation.
…
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.
…
3
votes
12
votes
Language agnostic skills
Focus on the paradigms and not on the languages and libraries.
procedural/imperative programming
declarative programming
object oriented programmming
class …
39
votes
Invert “if” statement to reduce nesting
A return in the middle of the method is not necessarily bad. It might be better to return immediately it it makes the intent of the code clearer. For example:
double getPayAmount() …
0
votes
1
vote
How many constructors should a class have?
I limit my class to only have one real constructor. I define the real constructor as the one that has a body. I then have other constructors that just delegate to the real one dep …
