this post was submitted on 05 Jun 2024
94 points (98.0% liked)

Programming

16207 readers
568 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 55 points 3 weeks ago (5 children)

My secret to high uptime:

while True:
    try:
        main()
    except:
        pass
[–] [email protected] 8 points 3 weeks ago

that was hilarious xD

[–] [email protected] 4 points 3 weeks ago

Flask developer?

[–] Phegan 4 points 3 weeks ago

Someone is absolutely going to think this is a real recommendation and do it.

[–] CallMeButtLove 3 points 3 weeks ago (3 children)

Lurking beginner here, why is this bad?

[–] [email protected] 23 points 3 weeks ago

Basically sweeps errors under rug.

No error handling and go again.

[–] [email protected] 12 points 3 weeks ago (1 children)

There you go:

# Start an infinite loop because True will always be True
while True: 
    # try to run the main function, usually where everything happens
    try:
        main()
    # in the case an exception is raised in the main function simply discard (pass) and restart the loop
    except:
        pass
[–] CallMeButtLove 2 points 3 weeks ago

Thank you for that answer! That makes sense.

[–] [email protected] 4 points 3 weeks ago

This gives some better context. https://stackoverflow.com/questions/21553327/why-is-except-pass-a-bad-programming-practice

But essentially ignoring every single error a program could generate is not great. It'd be better to know what those errors are and fix/prevent them from occurring in the first place.