Safari 3.1 Update Hangs on Mac OS X Leopard 5
- Deleted Safari.app from the /Applications folder
- Downloaded/Installed Safari 3.1 directly from Apple.com, here.
That's it, Safari Version 3.1 (5525.13) worked after a reboot.
Install RMagick on Mac OS X Leopard from Source 22
Here are the commands I used to compile the required libraries and programs for RMagick to work on Mac OS X 10.5. It is largely the same as this article with slight adjustments. After completing the process I dumped my history.
Before you can execute these commands, you MUST HAVE
- The Developer Tools Installed
- /usr/local in your path, see Hivelogic
Begin by creating a folder to hold the src.
cd ~
mkdir src
cd src
wget
I like wget, which I use in the commands below. To start compile that or replace the wget command with curl -O.
curl -O http://ftp.gnu.org/gnu/wget/wget-latest.tar.gz
tar -zxvf wget-latest.tar.gz
cd wget-1.11/
./configure --prefix=/usr/local
make
sudo make install
cd ..
FreeType
wget http://download.savannah.gnu.org/releases/freetype/freetype-2.3.5.tar.gz
tar zxvf freetype-2.3.5.tar.gz
cd freetype-2.3.5
./configure --prefix=/usr/local
make
sudo make install
cd ..
PNG Library
wget http://internap.dl.sourceforge.net/sourceforge/libpng/libpng-1.2.25.tar.gz
tar -zxvf libpng-1.2.25.tar.gz
cd libpng-1.2.25
./configure --prefix=/usr/local
make
sudo make install
cd ..
JPEG Library
wget ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz
tar -zxvf jpegsrc.v6b.tar.gz
cd jpeg-6b/
ln -s `which glibtool` ./libtool
export MACOSX_DEPLOYMENT_TARGET=10.5
./configure --enable-shared --prefix=/usr/local
make
sudo make install
cd ..
TIFF Library
wget ftp://ftp.remotesensing.org/libtiff/tiff-3.8.2.tar.gz
tar -zxvf tiff-3.8.2.tar.gz
cd tiff-3.8.2
./configure --prefix=/usr/local
make
sudo make install
cd ..
GhostScript Fonts
wget http://superb-east.dl.sourceforge.net/sourceforge/gs-fonts/ghostscript-fonts-std-8.11.tar.gz
tar -zxvf ghostscript-fonts-std-8.11.tar.gz
sudo mkdir /usr/local/share/ghostscript
sudo mv fonts/ /usr/local/share/ghostscript/fonts/
ImageMagick
wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz
tar zxvf ImageMagick.tar.gz
cd ImageMagick-6.3.9/
export CPPFLAGS=-I/usr/local/include
export LDFLAGS=-L/usr/local/lib
./configure --prefix=/usr/local --disable-static --with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8 --with-gs-font-dir=/usr/local/share/ghostscript/fonts
make
sudo make install
cd ..
RMagick
sudo gem install rmagick
MiniMagick
sudo gem install mini_magick
Clean Up
cd ~
rm -Rfv ./src
I am Officially an iPhone Developer 2
Mac OS X 10.4.9 Out

ZFS, Why it Rocks
I have read a lot about ZFS, but this article by far does the best job of summing up the great features of the new file system.
Solution for displaying more than 10000 Diggs

To fix this go to the source of the problem, Apple, for the solution. Recently I backed up my entire GMail account to Mail.app, and found that I had:
New Tutorial: Using Crontab 2
For a while now I have been doing a lot of regular tasks manually on my OS X box. On my linux boxes I have been using good old Cron for these tasks. Today I started using crontab, since it is installed by default on Mac OS X. There are several tutorials and sites that have information on crontab, but they were not as direct as I would have liked so I put together this tutorial, Using Crontab with Mac OS X, Unix, and Linux. Enjoy!
10.4.4
Hot damn. Intel iMacs, Intel PowerBooks... errr.. MacBooks... And OS X 10.4.4. Top it off with a killer commercial, and it's a MacWorld keynote.

Burning .cue / .wav with CDRDAO 3
I downloaded CDRDAO here. After compiling and installing, I ran this command to burn the disc on my Mac (Tiger):
cdrdao write --device IODVDServices --driver generic-mmc my.cue
Of course, replace my.cue with your cue file and have the .wav file in the same directory.


