I’m pretty good at time estimation for programming tasks that I understand.

I’m pretty good at time estimation for programming tasks that I understand. But (like everyone else) I get killed by the parts that I never even thought would be an issue.

I thought I’d just be pulling a few fields out of my Apple iPhoto SQLite database — pretty easy stuff…

To work with a third-party Obj-C library, I needed to upgrade my dev machine to Lion and XCode 4.1. OK, fine. I was probably going to upgrade anyway eventually. 10 GB of downloads later, I’m pointlessly trying to think of efficient ways to do queries across two SQLite databases without holding both of them open for long periods of time (why did Apple put the face data in a separate database instead of just in a different table?). Oh, and my forked copy of the fmdb SQLite helper database conflicts with the same library bundled with another third-party library. Why doesn’t Apple have a middle-level API that’s simpler than CoreData but not just raw sqlite C calls?

Then I scratched my head for a while trying to understand why my photos came out saying they were all taken in the 70s… An hour of trial-and-error and some lucky web searches, I found my answer. iPhoto records timestamps as seconds since Jan 1, /2001/ instead of Jan 1, /1970/ like everyone else. Why, why, why?

3 replies on “I’m pretty good at time estimation for programming tasks that I understand.”

Comments are closed.