Never been to DZone Snippets before?

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

About this user

elliott cable http://elliottcable.name/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Ruby dictionary username generation

Generate a new random name from dictionary words.

   1  
   2  DICT_PATH = '/usr/share/dict/words'
   3  DICT_SIZE = 234936
   4  
   5  def self.generated_name words = 2, length = 23
   6    name = 'a'*(length+1)
   7    while name.length > length
   8      name = (1..words).map{%x[sed -n '#{rand(DICT_SIZE)} {p;q;}' '#{DICT_PATH}'].chomp.capitalize}.join
   9    end
  10  end
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS