Skip to content

Instantly share code, notes, and snippets.

@yamadapc
Last active December 31, 2015 09:09
Show Gist options
  • Save yamadapc/7965226 to your computer and use it in GitHub Desktop.
Save yamadapc/7965226 to your computer and use it in GitHub Desktop.
v0.0.1 Codename Renzo
# v0.0.1 Codename Renzo
from random import randint
import sys
import os
def say_dyslexic(msgs):
for msg in msgs: os.system("say -r " + str(randint(0, 300)) + " " + msg)
def intro():
for i in range(5): say_dyslexic(["o", "renzoo"])
def finale():
msgs = ["renzoo", "vamo say"]
say_dyslexic(msgs)
finale()
def main():
intro()
finale()
if __name__ == "__main__":
main()
@yamadapc
Copy link
Author

dedicated with care to @renzocom

@yamadapc
Copy link
Author

git clone https://gist.github.com/7965226.git ; python 7965226/annoying-renzo.py &

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