Enabling PHP5 on Mac OS X Leopard

Dec 05 2008 Published by Eneko Alonso under uncategorized

I had done this already at work, but for some reason my MacBook Pro still didn’t “understand” PHP. Well, I’ve decided it’s time to activate it:

  1. # Use your favorite editor
  2. mate /etc/apache2/httpd.conf
  3. # Uncomment the line:
  4. #LoadModule php5_module libexec/apache2/libphp5.so
  5. # Restart apache
  6. sudo apachectl restart

Done.

No responses yet

MyGameOfLife source code

Nov 28 2008 Published by Eneko Alonso under uncategorized

Almost a year ago I was learning some Cocoa and I decided it will be fun to implement a Cocoa based version of Conway’s Game of Life. Back then I didn’t publish the source code, not for any special reason. So now I have just uploaded it to Google Code. It’s not fully functional, since the last time I worked on it I was creating an structure editor. My idea was to create a library of structures, with drag&drop and import/export options.

If you are interested on working on the project, let me know :)

http://code.google.com/p/my-gameoflife

My Game of Life

No responses yet