Snippets: String to enumerated values
Useful code I use to convert string values to its enumerated counter parts.
public static T StringToEnum<T>(string name)
{
return (T)Enum.Parse(typeof(T), name, false);
}
public static T NumToEnum<T>(int number)
{
return (T)Enum.ToObject(typeof(T), number);
}
Pretty cool. Lois Lane uses a Windows Phone on an episode of Smallville. Just saw this during lunch today. I had to record it. Although, I am sure I am the last to know of course.
Working on some graphics for GoGetter. An alarm clock! Whoa!
Unofficial Klout app coming to Windows Phone. We're impressed. [Video]
Klout for Windows Phone. Finally.
I have two Windows Phones!
New emulator theme I am using for my development. Sure does look spiffy.
Windows Phone feeds
Here is a bundle of Windows Phone 7 feeds I made. It has the exact same feeds as the app “Windows Phone News” for the Windows Phone. Enjoy!
My list of todos in @gogetter Yes, I use my own app too much.
Coding Starbucks






