Improvements, continued Nov 16 2005
Ok, so I’ve gotten most of the improvements done. The title at the top is hyperlinked to my e-mail address now for those that want to contact me. There is a link at the bottom of the page to the RSS feed for those not using a browser that will pick up the feed automatically. I’ve changed the tagging of posts so I can tag a post with however many tags I need. I’ve improved the blog formatting, so I can space posts properly, and most importantly, I’ve added text formatting and syntax highlighting so I can write code snippets within posts. For example, check this out:
using System;
namespace El
{
public class TestSnippet
{
static void Main(string[] args)
{
//Test comment within snippet!
Console.WriteLine(‘Test snippet of code demonstrating syntax highlighting!’);
}
}
}
So thats most of the improvements and fixes I wanted to get done, watch this space as I work a bit more on a few projects I’ve got bubbling, and of course as I keep working on getting those xFramework releases out the door!
EDIT: Just deployed a quick fix, as it seemed like one of the improvements added today (most likely the text formatting) was having an adverse effect on performance. The fix should speed things up a little again.