It's just an Internal Tool

Sunday, August 07 2016 lies

Some developers (often the most effective ones) are tool makers - they see something that happens repeatedly and instead of tediously doing the same task over and over again, they create a tool to make the job easier and more reliable.

Read more »

Null arguments are evil

Sunday, August 14 2016 code-gardening

Don’t pass null as an explicit argument into a method. The problem with passing null as an explicit value into a method is very similar to that of passing explicit bool values into a method - the code is fundamentally unreadable.

Read more »