Skip to content

Instantly share code, notes, and snippets.

@boinger
Created April 25, 2017 02:07
Show Gist options
  • Save boinger/07bce8fd83baacb6ad914c5c36f19c24 to your computer and use it in GitHub Desktop.
Save boinger/07bce8fd83baacb6ad914c5c36f19c24 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
#
import datetime
import random
import string
for i in range(1,10000):
for j in range(i,10000):
print "%s Message #%s,%s: %s" % (datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"),str(i),str(j),''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(8)))
##end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment