In this post, I demonstrate a solution to the popular FizzBuzz problem using TDD. Given the relative straightforward nature of the problem and corresponding solution, there is no narration. Instead, there’s a cool techno track. Enjoy, and as always, comments are welcome!

I’ve worked with a lot of developers in my time, and I’ve come to realize that just like Al Pacino says, “life is a game of inches.” Or in this case, .NET development is a game of inches. Here are three of those inches that will help any .NET developer become better. 1. Line Numbers [...]
Continuing in the series, we build upon our prior work on the OCR kata, completing our checksum calculation by actually computing a checksum for a valid account number. Enjoy!
Continuing in the series, we build upon our prior work on the OCR kata and proceed to actually compute the checksum of an account number. In order to keep this under fifteen minutes, we only get so far as computing the checksums of empty and invalid account numbers. Enjoy!

This post is as much a reminder for myself as it is for public consumption. I don’t like being too dependent on a tool, especially for mundane things such as auto-closing of brackets and parentheses. My thinking here is that if I do become too dependent on a given tool, when I move to another [...]
This post is a continuation of our prior work on the OCR coding kata. I’ve started narrating, and am keeping the parts down to fifteen minutes or less. This one is about nine minutes, and starts in on the checksum calculation, specifically concentrating on making the digits in the account number aware of their position [...]

This post builds upon prior work where we used C# with DirectShow.NET to enumerate video capture devices on a given machine. We use the device enumerator we built there to help us start composing a filter graph. DirectShow uses the word filter to denote any software component that performs an operation on a multimedia stream. [...]

This post is a quick little ditty about how to enumerate over all video capture devices on your machine using the DirectShow.NET library. The DirectShow.NET library is a C# library that sits atop Microsoft’s DirectShow API. This library helps you avoid some of the headaches associated with accessing unmanaged libraries from managed code. For our [...]