Skip to content

Instantly share code, notes, and snippets.

@onigra
Created August 28, 2012 01:31
Show Gist options
  • Save onigra/3494125 to your computer and use it in GitHub Desktop.
Save onigra/3494125 to your computer and use it in GitHub Desktop.
Make Random Password
puts (("a".."z").to_a + ("A".."Z").to_a + (0..9).to_a).sample(7).join
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment