Search Results

0
votes

How do you tell someone they’re writing bad code?

It is important to motivate and coach people and be show respect even if someone obviously does mistakes. But there should be the way not only to coach but also to state that mistake is mistake. Ba …
0
votes

Which software development practice would return the highest ROI?

There is such a thing as “local optimum”. You can read about it in Goldratt book Goal. It says that innovation is of any value only if it improves overall throughput. Decision to implement new tech …
1
vote

Inherited class quagmire, how to make this maintainable code

If you do prefer helpers do the same with helpers public class InitUser { public InitUser(SqlDataReader dr, User u) { } } public class InitUserExtension : InitUser { public InitU …
1
vote

How to restrain one’s self from the overwhelming urge to rewrite everything?

Stop rewriting when it is good enough. For this you need to know what good program is for you not only for your employer. After all you do programming for life not for good impression. Develop soun …