Links from June 2010

GitHub Introduces Organizations

This is just awesome. Prices feel a little high (for private repositories, the plans start at $100/mo), but if you’re a business that needs this, you’re likely able to afford it.

Posted on June 29, 2010 Leave a Comment
Tagged with: ,

Install LAMP stack from source with Homebrew

A quick tutorial on installing PHP from source using Homebrew. I needed to recompile PHP and could not get things to work, until Ben Bleikamp pointed me towards Homebrew, and this tutorial worked great. One thing to note: the tutorial is a bit out of date, as it uses newer versions of the software, so make sure to check the versions in the commands. For me, I had to change this line:

sudo ln -s /usr/local/Cellar/php52/5.2.12/libexec/apache2/libphp5.so /usr/libexec/apache2/libphp5.2.so

I updated it to 5.2.13:

sudo ln -s /usr/local/Cellar/php52/5.2.13/libexec/apache2/libphp5.so /usr/libexec/apache2/libphp5.2.so

Posted on June 7, 2010 Leave a Comment
Tagged with: , , ,