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.

6 days ago
beklog

If its working during my time....

5 days ago
thies1310

This! This right here!

6 days ago
ballu_01

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

6 days ago
RedBoxSquare

If it works, ship it

6 days ago
StructuralConfetti
while itWorked == False:
    itWorked = True
    try:
        #code goes here
    except:
        itWorked = False
6 days ago
kvt-dev

A truly exceptional strategy.

6 days ago
AlxR25
:sw::py::c:

It worked, don't touch it until you're desperate to change it

6 days ago
amiri-2_0

I am always scared why it works ! Because I think I am scammed or hacked somehow :) Or something else is working behind the scene 😂

Much more than when it doesn't work

5 days ago
Hacka4771

Looking at you Prisma Access Browser

6 days ago
gunkanreddit

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

6 days ago
dbell

I'm not scared anymore. At this point I'm counting it as a win and moving on.

5 days ago
DaBigSwirly

Test cases, test cases, test cases!

2 days ago