Friday 11 November 2011

Well, here we are with a new contract at a new job. Happy days.

Monday 18 April 2011

How old am I?

I once built an astable multivibrator (using, as I recall, a pair of BC108s). My brother's comment when I showed him the bulb flashing on and off was, 'how old are you?'

So, I have now for the first time in my life redirected the error to null:

$ find . 2>/dev/null -name "redacted.pl" -print

Blimey. How old am I? :-)

Friday 15 April 2011

Here is a handy chunk of code for cross thread updates to UI.

public void MyUIMethodCalledFromWorkerThread(string message)
{
BeginInvoke((Action)delegate
{
someControl.Text = message;
});
}

Friday 8 April 2011

scdelete

A new command: scdelete
This deleted a Windows Service and also cleans up its entry in Services plugin.
Huzzah! (My thanks to Jake Palmer for this useful hint)