Skip to content

Instantly share code, notes, and snippets.

@theMagicalKarp
Created November 27, 2013 17:29
Show Gist options
  • Save theMagicalKarp/7679728 to your computer and use it in GitHub Desktop.
Save theMagicalKarp/7679728 to your computer and use it in GitHub Desktop.
A sample of the new programming music craze.
import time
def beeps(count, offset):
for x in xrange(count):
print '\a'
time.sleep(offset)
for n in xrange(10):
beeps(n, .1)
time.sleep(.1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment