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

Logan Koester http://logankoester.com

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

Generate a random string of letters

// Generates a random string of lowercase letters. Great for email verification codes ;)

Array.new(6) { (rand(122-97) + 97).chr }.join

Generate a random string of letters

// Generates a random string of lowercase letters. Great for email verification codes ;)

Array.new(6) { (rand(122-97) + 97).chr }.join

Generate a random string of letters

// Generates a random string of lowercase letters. Great for email verification codes ;)

Array.new(6) { (rand(122-97) + 97).chr }.join

Generate a random string of letters

Generates a random string of lowercase letters. Great for email verification codes ;)

Array.new(6) { (rand(122-97) + 97).chr }.join

Generate a random string of letters

Generates a random string of lowercase letters. Great for email verification codes ;)

Array.new(6) { (rand(122-97) + 97).chr }.join
« Newer Snippets
Older Snippets »
Showing 1-5 of 5 total  RSS