Monthly Archives: November 2008

C# Enum Type Automatic-Figure-It-Out-er

I want this: public enum MeowSound { Angry = 1, Happy = 2 } public class Cat { public void Meow(MeowSound meowSound) { // Do stuff } public void AngryMeow() { // Meow(MeowSound.Angry) // I don’t want this. Meow(Angry); // … Continue reading

Posted in Development | Tagged | Leave a comment

Coding on ADD

A shiny penny can distract me and totally derail my productivity for tens of minutes. Shiny pennies come most commonly in the form of a tweet. I take a lot of steps to reduce the shiny pennies I’m exposed to. … Continue reading

Posted in Personal | Tagged , , , | Leave a comment