Search Results

5
votes

What is the one programming skill you have always wanted to master but haven’t had time?

Faster at cranking out unit tests (so I don't have to put off writing them when time gets tight as it always does in a project). …
3
votes

How do you keep a balance between working, training, health and family?

Get involved in some kind of exercise activity that is fun to do. For years I was a gym rat, but I found myself having a hard time going because it stopped being fun me me. I picked up ten …
1
vote

Is it just me or are interfaces overused?

I think you can overuse interfaces, however the reason for using them should be to decouple the components in a system. Even in small systems tight coupling between components is not a good thing ( …
2
votes

When do you use dependency injection?

"Dependency injection should only be used for the parts of the application that need to be changed dynamically without recompiling the base code" DI should be used to isolate your code from …
1
vote

Self-documenting code

I think what he might be getting at is that if comments explain what the code is doing it should be re-written to be clear what it's intent is. That's what he means by self documenting code. Often …