A piggy bank of commands, fixes, succinct reviews, some mini articles and technical opinions from a (mostly) Perl developer.

Jump to

Quick reference

Misc Ruby stuff

  • Write to a file:
  • File.open(local_filename, 'w') {|f| f.write(doc) }
  • Read from a file:
  • File.open(local_filename, 'w') {|f| f.write(doc) }
  • stringify: .inspect