Created
February 15, 2012 11:36
-
-
Save nickboyce/1835207 to your computer and use it in GitHub Desktop.
Youtube-style IDs in Ruby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# courtesy of juliocapote (http://news.ycombinator.com/item?id=485423) | |
def generate_code(len = 5) | |
(1..len).map { (("a".."z").to_a + ("A".."Z").to_a + (0..9).to_a)[rand(62)] }.join | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment