Skip to content

Instantly share code, notes, and snippets.

@uhhuhyeah
Created October 7, 2009 01:20
Show Gist options
  • Save uhhuhyeah/203627 to your computer and use it in GitHub Desktop.
Save uhhuhyeah/203627 to your computer and use it in GitHub Desktop.
def create_token
characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890'
token = ''
4.times do
pos = rand(characters.length)
token += characters[pos..pos]
end
token
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment