Skip to content

Instantly share code, notes, and snippets.

@biesnecker
Created January 16, 2012 07:29
Show Gist options
  • Save biesnecker/1619611 to your computer and use it in GitHub Desktop.
Save biesnecker/1619611 to your computer and use it in GitHub Desktop.
(def charvals (apply vector "ABCDEFGHJKMNPQRSTUVWXYZ23456789")) ; some characters weren't allowed in the codes
(defn rand-char [] (charvals (rand-int (count charvals))))
(apply str (take 10 (repeatedly rand-char)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment