Most of us are running someone else’s code.
This check is built into Python
but the idea behind it goes deeper than code.
It’s the moment a file stops being a dependency,
and becomes the source.
That’s what main.py represents:
Choosing to execute from your own root.
If you’ve ever felt like your life was structured by someone else’s logic...
maybe it’s time to run your own
import time
import random
class society:
@staticmethod
def silence_self():
return "Don't disturb the flow. Fit in."
class expectations:
@staticmethod
def weigh():
return ["Always perform", "Be productive", "Stay in line"]
class memory:
@staticmethod
def intrusive():
return random.choice([
"You should’ve done more.",
"You weren’t enough back then.",
"Why do you keep failing at this?"
])
def depression_loop():
print("Running: system disconnected from self.\n")
while True:
time.sleep(1)
print("Thought:", memory.intrusive())
print("Following:", society.silence_self())
print("Pressure:", expectations.weigh())
print("Looping...\n")
def myfunc():
print("Starting self-sequence...")
time.sleep(1)
print("Acknowledging presence.")
print("Suppressing old imports.")
print("Reconnecting to core.")
thoughts = [
"I don’t owe anyone a performance.",
"Silence is not peace.",
"I remember who I was before the fear.",
"I am not a function to be optimized.",
"This life runs in my name, not theirs."
]
for t in thoughts:
time.sleep(1)
print("Thought:", t)
print("\nExited loop. Ready to run as self.\n")
if __name__ == "__main__":
myfunc()
else:
depression_loop()
It’s a metaphor. But it’s also a real thing you can run.
If I am myself, then let me feel it. Let me run the function I was made to run.
If you’ve been looping...
If you’ve been quiet...
If you’ve forgotten how to be 'main'...
Maybe it’s time to break out and run your own script.
SOCIAL SHARE CARD GENERATOR