# Sunday, September 13, 2009
On meta.stackoverflow.com Joel announced a need for countdown application for the coming DevDays, as I am planing to attend one, I have decided to make one. Maybe I will watch my counter at the conference. ;)

It looks like:



Source code: PeterStegnarDevDaysCountdown.zip (198.51 KB)

I have used WPF, .NET 3.5. The speciality of this solution is custom Stackoverflow digits. :)

Short manual:
-you can find exe in "PeterStegnarDevDaysCountdown\WPF_StackoverflowCountDown\bin\Debug"
-start the app with the following parameters, for example: 0900 "DevDays begins in %s"
-just hit an "Esc" key to exit

Core functionalitiy is, of course, countdown:

            if (second != 0)
            {
                second--;
            }
            else
            {
                second = 59;
                if (minute != 0)
                {
                    minute--;
                }
                else
                {
                    minute = 59;
                    if (hour != 0)
                    {
                        hour--;
                    }
                    else
                    {
                        throw new ArgumentNullException("No valid time entry!");
                    }
                }
            }


What do you think?

posted on Sunday, September 13, 2009 12:00:59 PM (Central European Daylight Time, UTC+02:00)  #    Comments [0] Trackback
# Tuesday, May 12, 2009
It just come out - Stack Overflow DevDays conference will be held in couple of cities:

October 19 San Francisco
October 21 Seattle
October 23 Toronto
October 26 Washington, DC
October 28 London

We Europeans have only one choice- London. I have already make a reservation and so should you! I believe this will be great conference.

Right now about 2h after Joel's announcement are 231 and 14 tickets available of 300. In less then one day there will be none, when it seeds out (what I am actually doing right now).

posted on Tuesday, May 12, 2009 9:52:31 PM (Central European Daylight Time, UTC+02:00)  #    Comments [1] Trackback