Skip to content

Instantly share code, notes, and snippets.

@SuspiciousLookingOwl
SuspiciousLookingOwl / hack_nasa.py
Created August 8, 2020 18:04
Python Script for Hacking Nasa
import asyncio
import random
async def main():
progress = 0
while progress < 100:
is_quick = True if random.random() < 0.9 else False
await asyncio.sleep(random.randint(1,10 if is_quick else 50)/100)
progress = progress + 1
print(f"Hacking Nasa ({progress}%)")