Last active
July 11, 2022 23:14
-
-
Save mattantonelli/287f07e9a777b4e64110bb86502e4a51 to your computer and use it in GitHub Desktop.
Generates completely fictional item codes that can be redeemed for absolutely nothing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = ('A'..'Z').to_a + (1..9).to_a | |
5.times.map { 4.times.map { a.sample }.join }.join(' - ') | |
# "4H8Y - 3OQD - 9DO8 - 6WTW - KROI" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment