Skip to content

Instantly share code, notes, and snippets.

@davidtolsma
Created November 7, 2015 01:31
Show Gist options
  • Save davidtolsma/ba259144845ee4dc3dd2 to your computer and use it in GitHub Desktop.
Save davidtolsma/ba259144845ee4dc3dd2 to your computer and use it in GitHub Desktop.
def uid(length=10)
dictionary = %w[A C D E F H J K L M N P R T W X Y Z 3 4 6 7 9]
dictionary_length = dictionary.length
uid = ''
(1..length).each do |n|
uid << dictionary[rand(0..dictionary_length)].to_s
end
uid
end
puts uid
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment