Skip to content

Instantly share code, notes, and snippets.

@SuspiciousLookingOwl
Created August 8, 2020 18:04
Show Gist options
  • Save SuspiciousLookingOwl/aff19568ba5eb20f4632cd81f17c978b to your computer and use it in GitHub Desktop.
Save SuspiciousLookingOwl/aff19568ba5eb20f4632cd81f17c978b to your computer and use it in GitHub Desktop.
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}%)")
print("Hack Completed ( ͡° ͜ʖ ͡°)")
asyncio.run(main())
@devfemibadmus
Copy link

lol

@theadanielskocher
Copy link

lol

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment