I made a Widget!

In the course of the day, I actually open several web pages related to the work I do. The browser, for better or for worse, has become part of my workflow. After a while, it can get annoying to constantly have to log in to separate pages to see all of the data I need … Read more

How to detect what SDK you are building for in Xcode

I recently had to build a file for multiple operating systems and had to figure out a way to enable a feature that is only available on Mac OS X 10.5 and greater, and Windows. Here’s how I did it: #if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5) || defined (_WIN32) #include #endif Now, technically there is no harm … Read more

The Social Network

I just saw “The Social Network” with my wife. I liked the movie and so did my lady. A couple of things I came away with after the movie: 1. I remember why I became a programmer: because it’s cool 😉 No, that’s not being sarcastic. 2. My didn’t my college have programming drinking games. … Read more