Recent Posts

Application To Generate ASP.NET Machine Keys

less than 1 minute read

Frankly, it’s always a pain to create ASP.NET machine keys for each of your web applications. I’ve written a little helper app that creates the <machineKe...

Using Enumerations For Columns With LINQ

1 minute read

One of the great features of LINQ that DataSets didn’t support well is the ability to use enumerations for your columns instead of integers. It can make writ...

Event Handlers That Do Thread-Safe Invokes

1 minute read

I recently ran into a scenario where I wanted to write a class to do a low-level serial interface to a barcode scanner. When the barcode is scanned I wanted ...