site banner

Friday Fun Thread for December 23, 2022

Be advised: this thread is not for serious in-depth discussion of weighty topics (we have a link for that), this thread is not for anything Culture War related. This thread is for Fun. You got jokes? Share 'em. You got silly questions? Ask 'em.

4
Jump in the discussion.

No email address required.

Feel free to share any fun short scripts you find yourself using often. Useful scripts are fine too.

I have a running joke with some of my friends that goes along the lines of "I am better than you at {followed by an extremely long list of things}".

If you want to let someone know that they don't belong to any profession in the world, use this.


import pyautogui

import time

import requests


jobs = requests.get("https://gist.githubusercontent.com/wsc/1083459/raw/d8d0aa8737a36912e6c119a172c8367276b76260/gistfile1.txt").text.split("\n")


print("------Starting spam script------")

print("Move your cursor to the spam location.")

time.sleep(3)


for c in range(5,0,-1):

    print(f"T-minus -> {c}")

    time.sleep(1)

print("GO GO GO! Starting Spam")


    

pyautogui.write("You are no genius \n")

for job in jobs:

    try:

        pyautogui.write(f"or a {job}")

        time.sleep(0.5)

        pyautogui.press("enter")

    except KeyboardInterrupt:

        print("EZ $")

        break