Skip to content

Instantly share code, notes, and snippets.

@nickboyce
Created February 15, 2012 11:36
Show Gist options
  • Save nickboyce/1835207 to your computer and use it in GitHub Desktop.
Save nickboyce/1835207 to your computer and use it in GitHub Desktop.
Youtube-style IDs in Ruby
# 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