Case-Insensitive Regex Patterns in .NET

June 28, 2008

For some reason, I haven’t had to do this in a long time, so had to look it up. There are three options for doing case-insensitive regular expressions in .NET. The first is to use the RegexOptions enumeration to specify case-insensitive behavior: Regex.IsMatch(“Fubar”,”^fubar”,RegexOptions.IgnoreCase) The equivalent option is to put (?i) at the start of the […]

Read the full article →

Twitter Explained for Greybeards

June 17, 2008

My old friend Whil Hentzen, who is still somehow making a living in the FoxPro world with a side of Linux, posted a hilarious and enlightening explanation of Twitter, how it’s used in the real world, and why it might be necessary to indulge in even if you were born before dirt was invented. I’m […]

Read the full article →

On Exceeding Requirements

May 7, 2008

Not having fun as a software developer? I didn’t think so. It’s written all over your code.

Read the full article →

Are Modeling Languages the Next Big Thing in Software Development?

February 9, 2008

Five years from now will we be describing applications rather than coding them?

Read the full article →

Is Software Development Failing as a Craft?

January 6, 2008

… or is it just that craftsmanship isn’t really needed anymore? Maybe a little of both.

Read the full article →

A Reason To Keep a Project on Visual Studio 2003 — in 2007

December 21, 2007

Think twice before moving an ASP.NET project to VS 2005 or 2008 if it also includes classic ASP pages.

Read the full article →

Sql Server Error 18456: Login Failed

December 13, 2007

Getting to the bottom of unhelpful “Login failed for user x” exceptions in SQL Server.

Read the full article →

Fixing the “Specified web server is not running ASP.NET version 1.1” Error

November 25, 2007

I could no longer put off some work on an ASP.NET 1.1 application so I fired up Visual Studio 2003 and immediately got the “specified web server is not running ASP.NET version 1.1” error. This, despite the fact that ASP.NET 1.1 was set in IIS as the framework version for that app. There are plenty […]

Read the full article →

Notes From Beyond the Grave

November 9, 2007

Some things just don’t happen in this life. When they start happening, there can be only one explanation.

Read the full article →

Talking to a Tomcat-Hosted Web Service from .NET

November 5, 2007

On how to herd (Tom)cats from .NET applications. It doesn’t involve catnip, but it will get you out of the litter box.

Read the full article →