BRAND NEW RUBY BOOKLET While developing the okofcourse.org site I have needed to learn ruby. It seems a nice interesting scripting language, better than python in any case. ARRAY We can filter arrays nicely in ruby * remove all lines in array starting with '#' >> lines=File.readlines(quotes).select{ |s| s !~ /^ *#/}