Code.
Collection of code (mostly c#) I have released over the last while. You will need a Subversion client to pull the code down. Username is guest (when needed)
Wrote for a project I never started. Pretty much loads your Live Messenger chat history file/s into an object and back to XML if needed.
Allows you to work with the API using objects instead of XML. Can pull data out of Xero and push it back in.
A small but powerfull content management system core based on XML. Borrows some ideas from MVC styled systems.
Generates objects. Not amazingly useful, but can speed up development.
A library that does a few different things. Mostly HTTP based. But some others.
Creates a text tree file based on the folders in a given directory.
Test your regular expressions online (sample). Written in C# using ASP.NET MVC, Lightspeed Model. Also shows how to use OpenID.
Checks that the file is valid before it tries to parse it out to objects. Logs any errors it comes across (using nlog). Extends FileHelpers.
Sample
using (ValidatedMultiRecordEngine engine = new ValidatedMultiRecordEngine(
CustomSelector,
typeof(FileHeaderRecord),
typeof(TransactionDetailRecord),
typeof(AccountTrailerRecord),
typeof(EndOfFileRecord)
))
{
_parsedResults = engine.ReadFile(_filename);
}