Skip to content

Instantly share code, notes, and snippets.

@uhhuhyeah
Created October 7, 2009 01:22
Show Gist options
  • Save uhhuhyeah/203629 to your computer and use it in GitHub Desktop.
Save uhhuhyeah/203629 to your computer and use it in GitHub Desktop.
def create_token(len = 20)
chars = (("a".."z").to_a + ("1".."9").to_a )- %w(i o 0 1 l 0)
token = Array.new(len, '').collect{chars[rand(chars.size)]}.join
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment