Skip to content

Instantly share code, notes, and snippets.

@zacps
Created March 12, 2023 02:27
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 zacps/e9858a0a8541aefc5c1e1176c8ab3330 to your computer and use it in GitHub Desktop.
Save zacps/e9858a0a8541aefc5c1e1176c8ab3330 to your computer and use it in GitHub Desktop.
import time
import numpy as np
from playsound import playsound
CREEPY_TEXT = [
"breathing",
"can I be your friend",
"give me my body back",
"just like I thought your not real",
"moan",
"navy seal",
"sponsored by nestle",
"why cant I go outside",
"never going to give you up",
"stop youve violated the law",
"can I sleep in your fridge"
]
def main():
i = 0
while True:
delay = np.random.poisson(5)
file = np.random.choice(CREEPY_TEXT)
playsound(f'voice/{file}.mp3')
time.sleep(delay)
i += 1
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment