Ubiquity 0.5; Updated Ping.fm command

Ubiquity 0.5 is out! If you currently have and older version of Ubiquity installed for Firefox, it won’t automatically update since it would break a lot of other commands in the wild. If that’s ok with you, you can download Ubiquity 0.5 at Planet Ubiquity. Of course, mine broke, too, and I just updated it! [...]

Don’t Repeat Yourself using LINQ & Delegates

In one of my projects, I had to look for certain objects using certain qualifiers: ID, Name, ID & Name, etc… Without optional parameters (Hello C# 4.0!), I ended up with copying & pasting whole blocks of code: initializing, filtering, returning the result, error handling, etc. I wondered if there was an easier solution to [...]