May 1, 2007
Bebe Carat joined the ranks of our Rubyist character list. Soon after, Ruby Tuesday was drawn into the fun as well. This sort of thing, I hope, is good for your eyes.
Both of these were drawn Tuesday, May 1st, 2007 by our young artist of 12.
These latest creations will help us with our work on color and other features that are visually appealing in Hackety Hack.


We're getting ready to write the code to load in the presentation definition in YAML format. Greg Brown has given me lots of good tips on writing clear code. Here's what he tells me: ## You Write This def load_config_file(file) require "yaml" YAML.load_file(file) end ## The HH writes this load_config_file "foo.yaml" My objective is to hide the messy code from the Hackety Hacketer.. and let them write that one line of goodness. Thanks Greg!