Skip to content

Instantly share code, notes, and snippets.

@pjmelling
Created March 23, 2016 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pjmelling/d85bc9dd6c3f0b66c041 to your computer and use it in GitHub Desktop.
Save pjmelling/d85bc9dd6c3f0b66c041 to your computer and use it in GitHub Desktop.
random_base_36.rb
length = 8
(36**(length-1) + rand(36**length - 36**(length-1))).to_s(36).upcase
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment