Skip to content

Instantly share code, notes, and snippets.

@automata
Created June 5, 2020 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save automata/8e64b5f67134f51c4cca9bd564e84e66 to your computer and use it in GitHub Desktop.
Save automata/8e64b5f67134f51c4cca9bd564e84e66 to your computer and use it in GitHub Desktop.
Code poem published to http://code-poems.com/ at 2012
# Three.py ~ Rising
from time import sleep
from random import random
mom = open(__file__).read()
while True:
child = open(str(random()) + '.py', 'w')
child.write(mom)
child.close()
sleep(random()*10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment