Skip to content

Instantly share code, notes, and snippets.

@hannestyden
Created August 27, 2010 14:44
Show Gist options
  • Save hannestyden/553490 to your computer and use it in GitHub Desktop.
Save hannestyden/553490 to your computer and use it in GitHub Desktop.
N = 10
(1..N).map { rand(36).to_s(36) }.join # => "1w5v8zbwdg"
(1..N).map { c = rand(36).to_s(36); rand(2) == 1 ? c.upcase : c }.join # => "QvM42fvDsJ"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment