Skip to content

Instantly share code, notes, and snippets.

@felixhummel
Last active October 27, 2018 22:18
Show Gist options
  • Save felixhummel/8914811 to your computer and use it in GitHub Desktop.
Save felixhummel/8914811 to your computer and use it in GitHub Desktop.
You go figure it out. :P
import string
import sys
print (lambda c: (string.letters + string.digits) * (c/len((string.letters + string.digits))) + (string.letters + string.digits)[:c-len((string.letters + string.digits) * (c/len((string.letters + string.digits))))])(int(sys.argv[1]))
@felixhummel
Copy link
Author

felixhummel commented Feb 10, 2014

Try

curl -s https://gist.githubusercontent.com/felixhummel/8914811/raw/556b7db536a358272b87766b78c0a1d2b72643d6/useless.py | python - 255

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment