More simple C#
Might as well put all of this stuff up. Surely my hosting provider's backup procedure is better than mine...
While I was in Portland a few months ago, I picked up a copy of Graham Stephen's String Searching Algorithms at Powell's. Fun little book, although given its size and scope, somewhat overpriced. Out of that: C# project number two. Eventually, this might wind up as part of a diff tool I've been thinking about for a while, but for now, it just does generalized string distance computation using Ukkonen's algorithm, and Boyer-Moore-Horspool searching. It's extremely general and inefficient, since the idea was that the symbols that would be compared would be entire lines rather than entire characters.
The next project I put up should be a little more substantial.