Skip to content

Instantly share code, notes, and snippets.

@mieubrisse
mieubrisse / zombie_mode_calculator.py
Created May 1, 2025 20:25
Calculating additional days I spend in a sleep deprivation cycle from point of realizing, varied on advice quality
import random
# chance_to_get_free = 0.3 # untrained
chance_to_get_free = 0.75 # exobrain
# From point of realizing I'm in a cycle and going to ChatGPT for advice
additional_days_spent_in_cycle = []
for i in range(10_000_000):
for night_no in range(0, 6):
user: "kevin"
password: "shhh"