October 2007
12 posts
fixing ruby inline in leopard
inside the ruby inline gem:
lib/inline.rb:387
before: flags = @flags.join(’ ‘)
after: flags = @flags.join(’ ‘) + ’ -lruby’
all better!
fixing leopards terminal prompt
# normal font weight
PS1=’\e[32m\u@\h\e[0m:\e[34m\w\e[0m\$ ‘
# bold
PS1=’\e[1m\e[32m\u@\h\e[0m\e[0m:\e[1m\e[34m\w\e[0m\e[0m\$ ‘
installing mysql gem on leopard
install mysql via package from mysql’s website
sudo env ARCHFLAGS=”-arch i386” gem install mysql — —with-mysql-config=/usr/local/mysql/bin/mysql_config
fixing leopard's dock
defaults write com.apple.dock no-glass -boolean YES && killall Dock
Lessons in Spec'ing →
be careful…
Totally plan on whipping that out.
– Dave Bishop
Amazon Patents Including a String at End of a URL →
wtf?
work expands to fill the time available
– http://en.wikipedia.org/wiki/Parkinson’s_law
hello world…