DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Ruby Dictionary Username Generation
Generate a new random name from dictionary words.
DICT_PATH = '/usr/share/dict/words'
DICT_SIZE = 234936
def self.generated_name words = 2, length = 23
name = 'a'*(length+1)
while name.length > length
name = (1..words).map{%x[sed -n '#{rand(DICT_SIZE)} {p;q;}' '#{DICT_PATH}'].chomp.capitalize}.join
end
end





