Thought for the Dazed

I've had to give up that Distance Learning course as I was having trouble seeing the teacher.

Flickr
www.flickr.com
RobMiles' items Go to RobMiles' photostream
Twitter
C# Yellow Book

Search entire site
Friday
May212010

Sad Rob

Behind the scenes: Gordon Brown and family leave Downing St

We were talking about different versions of Windows today and I mentioned that in Number 10 Downing Street they still use Windows XP on their systems. I told everyone that I’d seen it on the “historic” pictures taken inside the Prime Ministers’ residence during the election aftermath.

For some reason knowing this was regarded as sad…

Thursday
May202010

Rob’s Guide to Marking

Exam Scripts
See rule 5

It was my “big” exam yesterday. Two hours of panic for the students. Four days of marking for me. So, nobody comes out of it particularly happy I suppose. For any academics out there I present Rob’s guide to marking.

  1. Don’t try and do it all at once. You will fail. Make a big hole in your schedule and set out how much you want to get done each day. Then you can point to a day in the future and say “I’ll be clear of marking then”.
  2. Make yourself a nice place to work. I used to cut up the question paper and stick it into one long strip that I could have by the answers so I didn’t have to keep flicking between question and answer as I marked. Now the students write their answers underneath each question. Easier for them, and much quicker for me to mark.
  3. Use a really nice pen. I’ve been known to spend up to twenty minutes in the Student Union shop choosing a pen with the right colour, feel and heft. Actually, this might be a displacement activity, but if the pen makes you enjoy writing the marks then at least some part of the marking process will be fun.
  4. Take regular breaks. I’ve got Professor Layton and the Curious Village fired up on the Nintendo DS. A puzzle every 12 scripts or so stops my brain from melting.
  5. On no account should you make a single pile of all the scripts that you have to mark. This is invariably depressing.
Wednesday
May192010

“Hello Silverlight” Book from Manning Publications

image

I’ve been lucky enough to get hold of an early copy of this book. If you are new to Silverlight and want to find out more this will tell you in a very nicely written way. It even has cartoons that are both funny and relevant – which is great. I strongly recommend it.

The book isn’t finished yet, but you can download and read the early chapters and even send comments back to the author. I’m looking forward to getting my hands on a proper printed copy when it comes out.

Tuesday
May182010

Google Phone – Latest Developments

Tuesday
May182010

Final Exception Funny

Think you know about exceptions? What would this method return?

static int funAndGames()
{
    int result = 99;
    try
    {
        throw new Exception("Boom");
    }
    catch
    {
        return result;
    }
    finally
    {
        result = 100;
    }
}