18 May 2007

We're moving!

We have a new home on the web: http://www.katgetscrosseyed.com Please come check it out, update your bookmarks, yada yada yada. I realize it is a pain when a blog moves homes, but now we have our own website, so hopefully it will be easier to remember, plus it comes with more space and stuff!

I apologize for the inconvience. (Thank you Douglas Adams).

Labels:

10 May 2007

This just in

The results of the Door Prize Patrol...

1st - Vickie M of LA

2nd - Regina D of NY

3rd - Claudia L of AR

Winners have been notified by email and will be recieving their prize packages soon.

For anyone interested, here is how the winners were chosen. First I counted up all the entries from the blog comments and email responses. There were 133. These were numbered in order received. Finally 3 random numbers were chosen. Since I am a computer geek, I wrote a short program (so technically, these are pseudo-random numbers):


using System;
using System.Collections.Generic;
using System.Text;


namespace myRandom
{
class Generator
{
static void Main(string[] args)
{
Random RandomClass = new Random();
Console.WriteLine("The first Winner is entry #{0}", RandomClass.Next(133));
Console.WriteLine("The second Winner is entry #{0}", RandomClass.Next(133));
Console.WriteLine("The third Winner is entry #{0}", RandomClass.Next(133));
Console.WriteLine("\nCongrats to all the Winners!!");
}
}
}

I took the numbers generated by the program and then matched them up to the entries.

Not much to report in other news. I have been under the weather and now my allergies are kicking up again. I'm stitching like crazy to get my model done; hopefully there won't be any more frogs in it. I finally managed to chart the next Snowfight dragon. I lost my original sketch for this and had to redo it. Things are about to hit a frantic pace in getting ready for TNNA at the end of the month.