Oct 06

Friday(ish) Post: Hanging out with Eben and Liz

Hey all,

Sorry for the late post.  The past two days have been jam packed and I had limited internet access.

Friday and Saturday I was at Magic Ruby.  It was a Ruby conference at the Walt Disney World Hollywood Studios park. I’m still decompressing from the conference, so I’m not ready to make a full review about it.  Some talks were amazing, some were downright crappy.  I’m just exhausted.

Right after the conference Friday night, I had to run straight to the FamiLAB Hacker Space in Longwood, Florida because they were hosting Eben and Liz from the Raspberry Pi foundation!

We spent the first part of the night hanging out with Eben and Liz, showing off our projects.  Liz loved my arcade cabinet, and I need to get a kit out to her ASAP 🙂  Eben and Liz then did an interview with the Orlando Sentinel (as did I regarding my projects).  After the interview, Eben did a presentation to a standing room only gathering of people regarding the Pi, as well as a QA from the audience.  It was a great event!

Eben and Liz are both really humble and genuinely nice people.  I’m really glad I was able to spend some time with them.

Also, on a side note, my little Color Picker test app for Windows 8 passed certification, and is now in the Windows App Store!  Go me!

Have a great weekend!

-Shea

Jun 22

Installing Django and MySQL on Mac OS X Lion

In the past 6 months I’ve had to setup Django and MySQL 4 times on our various Mac hardware at work.  I figured since I’ve seen to have it down pat now I should document it somewhere 🙂

Python should already be installed.

sudo easy_install pip

download MySQL dmg from mysql.com.  This is the version I’m using.

Mac OS X ver. 10.6 (x86, 64-bit), DMG Archive 5.5.25 111.9M
(mysql-5.5.25-osx10.6-x86_64.dmg) MD5: 081d3345daaae6f5f36a9f245855798b

sudo easy_install django

nano ~/.profile
paste this in:
export PATH=/usr/local/mysql/bin:$PATH
export DYLD_LIBRARY_PATH=”$DYLD_LIBRARY_PATH:/usr/local/mysql/lib/”

Download and install https://github.com/kennethreitz/osx-gcc-installer

sudo easy_install MySQL-python

You are ready to go 🙂