Monthly Archives: August 2006

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

Windows Live Writer Plugin #1 – YouTube Video.

**ANOTHER EDIT** Version 1.0 out now. **EDIT** version 0.2 now includes support for Google Video Version 0.1 still available (in case the new mods give you trouble). Here’s my first ever Plugin for Windows Live Writer. It requests the ID … Continue reading

Posted in General, Plugin, Software, Wordpress | 6 Comments

Windows Live Writer

I’ve been pointed in the direction of this tool by a co-worker, so I thought I’d have a look.  It’s always tough to review these blogging tools because you’re working out what you’re doing as you type. Picking categories for a … Continue reading

Posted in General, Software, Wordpress | Comments Off

Software with a sense of humour

Who says that developers have no sense of humour. Here’s a couple of screenshots I stole shamelessly from The Daily WTF that show that some, at least, have that spark somewhere. Blogged with Flock

Posted in General, Software | Comments Off

Is it me?

I had this flyer through from Wakefield Council his morning. Am I the only one to find their first suggested use a little odd?

Posted in General | Comments Off