Downloads

myIP: A robust command line tool for retrieving local and remote IP addresses

Posted by on May 13, 2011 at 3:53 pm

In usual fashion I sat down the other day and tried to come up with a useful tool I could quickly code. After about a week of coding and testing I’ve come up with a simple command line tool that will retrieve and display both v4 and v6 IP address information for one or more [...]

Linksys WUSB54GSC Version 1.0 x64 Vista Windows 7 Driver

Posted by on September 28, 2010 at 8:12 pm

I have a legacy Linksys WUSB54GSC USB Wi-Fi adapter that I wanted to use on my new workstation; a power house with x64 Windows 7. I needed that Wi-Fi, but unfortunately it is a first generation of the two versions of the device and Linksys supports neither. Their support site only provides XP drivers that [...]

FindDuplicate: Find duplicate files quickly in C#

Posted by on September 26, 2010 at 10:09 pm

If you’re like me, you’ve got a slew of duplicate files lurking all over your hard drive. I couldn’t find any programs for windows that would allow me to find duplicate files for free, so I decided to write this simple console application. It will take a few parameters and allow you to find files [...]

GloboResource: Use Google to Translate your Visual Studio RESX strings

Posted by on September 4, 2010 at 1:00 am

There exists a need to globalize your applications but copying and pasting each string from a resource file into Google translate is tiresome. 3rd party applications are fraught with translation errors and/or are expensive. Simply put there exists a need to have a simple way to extract resource strings from RESX files and have them [...]

ProgramInfo class: Retrieving custom assembly attributes in C# for Name, Copyright, and Version

Posted by on August 29, 2010 at 11:31 pm

There may exist a need to programmatically retrieve a program’s assembly attributes to provide product information to a user. This can be problematic if you are not using the System.Windows.Forms.Application library. Retrieving this information however is still possible using commands within the System.Reflection.Assembly class. I have encapsulated the most commonly used attributes in the following [...]