/ Published in: Rails
Expand |
Embed | Plain Text
def domain_name [ "www", ("a".."z").to_a.sort_by{rand}.join.slice(0..rand(15)), %w{com net org}[rand(3)] ].join('.').downcase end
You need to login to post a comment.
t0d0r on 06/24/07
textmate rails random name domain generate
1 person have marked this snippet as a favorite
def domain_name [ "www", ("a".."z").to_a.sort_by{rand}.join.slice(0..rand(15)), %w{com net org}[rand(3)] ].join('.').downcase end
You need to login to post a comment.