My old Mac crashes a lot. I'm wondering if it's because of some bad third-party extension. Here's how to list non-Apple kernel extensions (kext's): kextstat | grep -v apple
Our new MacBook Pro Retina arrived while we were in Hawaii. Our old MacBook Pro was getting long in the tooth. It was a pre-unibody, 2007 model, 2.4 GHz Intel Core 2 Duo with 4 GB of RAM, a 500 GB spinning disk drive, and OS X...
Today's random tech tip of the day - how to check whether you have modifications in a bunch of different locally cloned git repos: ❯ for x in *; do echo $x ; ( cd $x; git status -s ); done contentsvc jobsvc M supervisor.conf...
I blogged previously about how to build _bsddb for Python 2.6 by hacking the Python source code to accommodate changes in berkeley-db. Here's an easier way that doesn't require hacking source code. Install berkeley-db using...
It's well-known that the Python that comes with OS X machines typically doesn't have _bsddb. I downloaded Python 2.6.8 and attempted to build it and it wouldn't build the _bsddb module. Here's what I did to fix this. I used...