What was the dumbest error in one of your codes, you have not found for hours? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

What was the dumbest error in one of your codes, you have not found for hours?

22nd Feb 2017, 10:00 PM
Hermann Set
Hermann Set - avatar
9 Answers
+ 7
always the same: typo or missing brackets/semicolon the code often runs fine though and the error points to the wrong line. typos are hard to find after hours of coding. it looks just right.
22nd Feb 2017, 10:03 PM
Mario L.
Mario L. - avatar
+ 7
Forgetting that " thingy darn it took another " that took another " and created a massive error
23rd Feb 2017, 7:25 AM
MrCoder
MrCoder - avatar
+ 6
Ohhh, yesterday I was sending 4 parameters to a function taking 3...causing a memory violation. Thinking it was a wrong-sized buffer I debugged that (no effect) until I took a headcount...huh. Debug says? Parameter 1's crashing. I'd been modifying 2...delete 1...it works fine. *facepalm*
22nd Feb 2017, 11:09 PM
Kirk Schafer
Kirk Schafer - avatar
+ 3
Missing a semicolon in a cout command. I had to check back to the first lesson to get it right.
22nd Feb 2017, 10:50 PM
Oliver
Oliver - avatar
+ 2
Well quite recently: When I was writing extensions on UIColor and UIImage in Swift, I accidentaly placed convenience init which should have been in UIColor into UIImage extension. And the XCode, kept compiling. 15 minutes, half an hour, 45 minutes and did not say anything. I spent over 4 hours on that.
23rd Feb 2017, 7:19 AM
Štembera Michal
+ 1
end line statements!
23rd Feb 2017, 7:35 AM
Andre van Rensburg
Andre van Rensburg - avatar
+ 1
yesterday i put <div style:"background-color:blue" > ibstead of <div style="background-color:blue"> and i was legit on the verge of tears because my program thingy wasn't working even though i was a million percent sure there was no error. Vut after looking, rereading my notes and mimicking the layout again, I realized that it was suppose to be a = and not a : ... i was frustrated by then.
23rd Feb 2017, 11:19 AM
Roblox Gamer Duh cx
Roblox Gamer Duh cx - avatar
+ 1
forgot to add a + sign in an operator, searched for hours
23rd Feb 2017, 2:49 PM
Linc Donelite (nastyheatnor)
Linc Donelite (nastyheatnor) - avatar
+ 1
once i wanted to voerwrite the paint Graphics method and I forgot one character. I have searched the error for hours because the codes syntax was right
23rd Feb 2017, 8:17 PM
Hermann Set
Hermann Set - avatar