Ruby Succinctness competition
For some reason I never was that excited about trying to accomplish these sorts of things in Perl:
1..rand(256)).inject("") {|string,n| string + ('a'..'z').to_a[rand(25)] }
This generates a string from 1 to 256 characters long, containing random letters from 'a' to 'z'.
Normally, I wouldn't use something that's quite so unreadable, but I'm starting to like Ruby's way of taking what should be a very simple operation that I might have done in 3-5 lines in Perl and boiling it down to a single line.