accurate depiction of sam altman funding @openai via "seed round"

This commit is contained in:
@chinsuko_chan 2024-08-10 14:58:50 +09:00
parent 53b3b7fdfc
commit f8c8dcd212
No known key found for this signature in database
GPG key ID: 9208EBC03DFB56BA
2 changed files with 63 additions and 47 deletions

63
penis.py Normal file
View file

@ -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")

View file

@ -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.")