pjhyett (owner)

Fork Of

gist: 49680 by eltiare Random charactar generator ...

Revisions

gist: 49705 Download_button fork
public
Public Clone URL: git://gist.github.com/49705.git
Embed All Files: show embed
Ruby #
1
2
chars = ('A'..'Z').to_a + ('a'..'z').to_a + ('0'..'9').to_a
str = chars.sort_by { rand }.first(50)