Console logging and the passage of time

2 Feb 2019 tips

I frequently write console applications to automate things that I used to do manually. Sometimes these are test frameworks for my own use, other times they are utilities that I share.


Capturing Transient Errors

9 Feb 2019 tips

Have you ever tried to fix a problem where you only got a glimpse of the error before the entire application disappeared in a puff of smoke?


Explicit Interfaces and Delegate Properties

16 Feb 2019 csharp

When unit testing, it is common to create a fake implementation of an interface so that you can test another component in isolation. But how do you handle the case where each test needs a fake that does something different?


Converting a List to a Queue

23 Feb 2019 priority-queues csharp

While chatting with a friend about this series, he made a suggestion about a significantly more effective way to implement the ToImmutablePriorityQueue extension method.