From f8c8dcd2127e7f10baaf44cbe623748e68daa242 Mon Sep 17 00:00:00 2001 From: "@chinsuko_chan" <177090151+chinsuko-chan@users.noreply.github.com> Date: Sat, 10 Aug 2024 14:58:50 +0900 Subject: [PATCH] accurate depiction of sam altman funding @openai via "seed round" --- penis.py | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++ strawberry.py | 47 -------------------------------------- 2 files changed, 63 insertions(+), 47 deletions(-) create mode 100644 penis.py delete mode 100644 strawberry.py diff --git a/penis.py b/penis.py new file mode 100644 index 0000000..cd1d341 --- /dev/null +++ b/penis.py @@ -0,0 +1,63 @@ +import os +import time + +YELLOW = '\033[93m' +BROWN = '\033[38;5;52m' +RESET = '\033[0m' + +def sama_behind(sub_stage=0): + frame = [ + " ", + " ", + " ", + " ", + f"{BROWN}~~~~~~~~~~~~~~~~{RESET}", + f"{BROWN}################{RESET}", + f"{BROWN}################{RESET}", + f"{BROWN}################{RESET}", + f"{BROWN}################{RESET}", + f"{BROWN}################{RESET}" + ] + + if sub_stage == 0: + frame[0] = f" {YELLOW} W {RESET} " + elif sub_stage == 1: + frame[0] = f" {YELLOW} | |{RESET} " + frame[1] = f" {YELLOW} W {RESET} " + elif sub_stage < 4: + frame[sub_stage - 2] = f" {YELLOW} q p{RESET} " + frame[sub_stage - 1] = f" {YELLOW} | |{RESET} " + frame[sub_stage] = f" {YELLOW} W {RESET} " + elif sub_stage == 4: + frame[2] = f" {YELLOW} q p{RESET} " + frame[3] = f" {YELLOW} | |{RESET} " + frame[4] = f"{BROWN}~~~~~~{YELLOW} W {BROWN}~~~~~~{RESET}" + elif sub_stage == 5: + frame[3] = f" {YELLOW} q p{RESET} " + frame[4] = f"{BROWN}~~~~~~{YELLOW} | |{BROWN}~~~~~~{RESET}" + frame[5] = f"{BROWN}######{YELLOW} W {BROWN}######{RESET}" + elif sub_stage == 6: + frame[4] = f"{BROWN}~~~~~~{YELLOW} q p{BROWN}~~~~~~{RESET}" + frame[5] = f"{BROWN}######{YELLOW} | |{BROWN}######{RESET}" + frame[6] = f"{BROWN}######{YELLOW} W {BROWN}######{RESET}" + elif sub_stage == 7: + frame[4] = f"{BROWN}~~~~~~ ~~~~~~{RESET}" + frame[5] = f"{BROWN}######{YELLOW} q p{BROWN}######{RESET}" + frame[6] = f"{BROWN}######{YELLOW} | |{BROWN}######{RESET}" + frame[7] = f"{BROWN}######{YELLOW} W {BROWN}######{RESET}" + + return "\n".join(frame) + +def insert_capital(): + while True: + for i in range(8): + os.system('cls' if os.name == 'nt' else 'clear') + print(sama_behind(i)) + time.sleep(0.5) + time.sleep(1) + +if __name__ == "__main__": + try: + insert_capital() + except KeyboardInterrupt: + print("\nread: https://x.com/chinsuko_chan/status/1816022262442778871") diff --git a/strawberry.py b/strawberry.py deleted file mode 100644 index f8870f9..0000000 --- a/strawberry.py +++ /dev/null @@ -1,47 +0,0 @@ -import os -import time - -YELLOW = '\033[93m' -BROWN = '\033[38;5;52m' -RESET = '\033[0m' - -def garden(sub_stage=0): - frame = [ - " ", - " ", - " ", - " ", - f"{BROWN}~~~~~~~~~~~~~~~~{RESET}", - f"{BROWN}################{RESET}", - f"{BROWN}################{RESET}", - f"{BROWN}################{RESET}", - f"{BROWN}################{RESET}", - f"{BROWN}################{RESET}" - ] - - if sub_stage < 4: - frame[sub_stage] = f" {YELLOW}(q*){RESET} " - elif sub_stage == 4: - frame[4] = f"{BROWN}~~~~~~{YELLOW}(q*){BROWN}~~~~~~{RESET}" - elif sub_stage == 5: - frame[5] = f"{BROWN}######{YELLOW}(q*){BROWN}######{RESET}" - elif sub_stage == 6: - frame[6] = f"{BROWN}######{YELLOW}(q*){BROWN}######{RESET}" - elif sub_stage == 7: - frame[7] = f"{BROWN}######{YELLOW}(q*){BROWN}######{RESET}" - - return "\n".join(frame) - -def delicious(): - while True: - for i in range(8): - os.system('cls' if os.name == 'nt' else 'clear') - print(garden(i)) - time.sleep(0.5) - time.sleep(1) - -if __name__ == "__main__": - try: - delicious() - except KeyboardInterrupt: - print("\nAnimation stopped.")