GFXMonk.net is the dumping ground for my ideas, thoughts and random links.
If you just want to get in touch, you can talk to me in an emailwardly fashion here.
→ 13 June 2008. Tags: programming, ruby
Pay attention to the output types, kids:
>> { "key" => "val" }.reject { false } => {"key" => "val"}
looking good so far...
>> { "key" => "val" }.select { true } => [["key", "val"]]
eww... what?