Too bad the iPhone makes you get sucked into the world if iTunes - because it sucks. I knew this going in, but it still isn’t fun when the limitations smack you in the face.
The limitation of which I speak is its inability to detect new files in its directories, automatically update its library database, [...]
iTunes is iAnnoying
December 4th, 2008 · 1 Comment
Tags: General
Unit Testing
March 14th, 2008 · 7 Comments
I would love some input on this from you fellow developers out there, as this is something I continue to try and improve on… WARNING, CODE BELOW THE BREAK!
Tags: General
Recipe Slideshows
December 10th, 2007 · Comments Off
Chef has a feature called Recipe Slideshows which allow you to view a recipe fullscreen in a PowerPoint-like format that’s much easier to read while you’re cooking than the small text of a cookbook, or the regular view of a recipe in Chef for that matter. I’ve had that feature around for a while, [...]
Tags: General
C# operator== overloading
October 26th, 2007 · 4 Comments
I recently came to a situation where operator overloading C# (specifically the == operator) would really be beneficial. Since I’ve typically steered away from this technique, for readability and maintainability, I hadn’t had much experience with it.
My overloaded operator looks something like this:
static bool operator==(Id<T> a, Id<T> b)
{
return a.Value == [...]
Tags: General
