Every once in awhile I'll make a post that is for my own use, this happens to be one of them. Ayende, put up a great post awhile back that I just bumped into. It has a bunch of good Windsor …
DbDataReader Mishap
This is something that I'm almost afraid to admit to. *sheepish grin* I was debugging a DbDataReader Unit Test and all of a sudden it started to fail. After about 5 minutes of thrashing I saw …
Portable Applications – A Life Saver on a USB Stick
Like many of you out there I'm straight up addicted to using Notepad++. If I can't use N++ I begin to have a productivity melt down. I have a ton of hot keys memorized, a bunch of formatters …
Continue Reading about Portable Applications – A Life Saver on a USB Stick →
Presenting at Arizona .NET User Group – Dependency Injection & Inversion of Control
I will be presenting at the AZ .NET User Group on August 14th. I'm going to cover how to use Dependency Injection along with Inversion of Control to decouple your applications. I will also …
IIS 6 & PHP – Mimicking .htaccess User/Pass Functionality
If you happen to be running PHP on a Windows Server machine you'll probably have to port over some functionality. One of the key things that you'll have to port over is something that mimics the …
Continue Reading about IIS 6 & PHP – Mimicking .htaccess User/Pass Functionality →
Tip: DirectorySeparatorChar
If you look at most file access code you'll see the following somewhere: string filePath = myDirectory + "\\" + myOtherDirectory + "\\" + myfile; Developers will build their file paths with hard coded …