ProgrammerHumor

myDebuggingExperienceSummarized

myDebuggingExperienceSummarized
https://i.redd.it/xunkzn35i2cf1.jpeg
Reddit

Discussion

camander321

It's always a little terrifying when there are edge cases you definitely haven't accounted for yet, but they are already working as intended.

8 hours ago
thies1310

This! This right here!

8 hours ago
ballu_01

Then you do the smallest change, and it breaks. But when removing the change it stays broken.

7 hours ago
RedBoxSquare

If it works, ship it

7 hours ago
Hacka4771

Looking at you Prisma Access Browser

6 hours ago
gunkanreddit

Oh good lord, that happened to me. Never again. Worked but not for everyone 😔 I am still ashamed after decades.

6 hours ago
StructuralConfetti
while itWorked == False:
    itWorked = True
    try:
        #code goes here
    except:
        itWorked = False
2 hours ago