Author Archives: historical

Google Custom Searches.

Google have just launched the Google Co-op Custom Search Engine into the wild. I’ve just knocked up a small example of a possible application – just search for C# related information. Minimal testing so far suggests that it might be … Continue reading

Posted in General | Comments Off

Nintendo Web Browser on the DS Lite

I recently bought a Nintendo DS Lite to keep me occupied in one of the many hotels I have to stay in. I was swayed toward the DS by the promise of the Nintendo Browser, and now that my new … Continue reading

Posted in General | Comments Off

SongBird media player / browser

This seem slike a really cool idea – a media play (looks vaguely familiar) with browser support, and remote mp3 playback. I’ve just downloaded it for a look-see, and I’ll let you know how it goes.

Posted in General, Software | Comments Off

Bzzzzzzzzzzzzz!

I want one of these. 

Posted in General | Comments Off

Apostrophe In RowFilter

According to ASP.NET Resources, there is a problem when using apostrophes in a RowFilter expression in a DataView. The fix seems to be to double the apostrophes (“O”Mally”) rather than escaping them (“O\’Mally”)

Posted in C# Snippets | Comments Off

That Star Trek bloke

Posted in General | Comments Off

LiveWriter Bug

There’s a small bug in the LiveWriter preferences pages.  On the “plugins” tab, the user can enable / disable plugins using a couple of radio buttons.  Unfortunately, it appears that there is flawed logic to read the current setting of a … Continue reading

Posted in General | Comments Off

Iterate through enum values

A quick example of how to iterate through the values in an enum… enum myEnum { one, two, three, four, five, }; foreach (int i in Enum.GetValues(typeof(myEnum ))) { myEnum myItem = (myEnum )Enum.ToObject(typeof(myEnum ), i); System.Diagnostics.Debug.WriteLine(myItem.ToString()); }

Posted in .NET, C# Snippets, General, Software | Comments Off

An update to the EmbedVideo Plugin

A minor modification, but I have added a “Preview” button to the chooser form.  It should make it easier for you to double check that the video you specified is the one you want.  This button will open up a … Continue reading

Posted in General | 10 Comments

A List of LiveWriter Plugins

As well as my own humble effort, there are quite a few others out there writing LiveWriter plugins. A good place to start looking would be here or here.

Posted in .NET, General, LiveWriter Plugins | Comments Off