DEV Community

Cover image for 🎃 10 Scary Lines of Code I Wish I Never Wrote 💀
Sylwia Laskowska
Sylwia Laskowska

Posted on

🎃 10 Scary Lines of Code I Wish I Never Wrote 💀

Ever opened your old project, looked at a line of code, and thought…

“Who the hell wrote this mess?”

…and then Git calmly whispered:

“It was you. Two years ago.” 😅

Been there. Many times.
At first, I used to cringe hard 😬, but eventually, I realized — that’s actually a good sign!
It means I’ve grown as a developer 👩‍💻 and that I’m writing (hopefully) less cursed code today.

So instead of crying over past monstrosities, let’s laugh at them together 😂
Here are some of my “legendary” mistakes — maybe you’ll recognize a few of your own.


💩 The Hall of Shame

1️⃣ text-align: left;
Because apparently, I thought that’s how you center things 😅

2️⃣ console.log('DEBUGGING...');
…still in production. Still haunting me 👻

3️⃣ if (this.isAdmin) { giveAllPermissions(); }
Because who needs security when you have trust? 💀

4️⃣ setTimeout(() => doSomething(), 10000);
A “temporary fix” from 2019 that’s still running strong 💪

5️⃣ border: 1px solid red;
The universal debugging tool™ 🔥

6️⃣ document.querySelector('#id').innerHTML = userInput
XSS? Never heard of her. 🙃

7️⃣ Array(10).fill({})
Ten objects, one reference. Ten bugs, one developer crying 😭

8️⃣ window.location.reload()
When in doubt — refresh it out 🤷‍♀️

9️⃣ style="position:absolute;top:0;left:0;width:100vw;height:100vh;"
My proudest “responsive” design moment 😭

🔟 git reset --hard HEAD~1
Didn’t even check what HEAD~1 was… instantly regretted 🪦


🫣 Bonus #11:

// quick fix for demo
That demo? 3 years ago. The fix? Still in production. 🧟‍♂️


💬 Your turn!
What about you — what’s your most cursed line of code? 😏
Share your shame below 👇 and let’s cry-laugh together like true devs 💻❤️


👋 I’m Sylwia, I break code so you don’t have to.
If you enjoy laughing at past bugs and learning from them — follow me here or on my Substack:
👉 https://sylwialask.substack.com/

Top comments (12)

Collapse
 
georgekobaidze profile image
Giorgi Kobaidze

I was looking for DELETE FROM Users; or rm -rf /

I'm glad I didn't find them. But git reset --hard HEAD~1 is also pretty scary.

Collapse
 
sylwia-lask profile image
Sylwia Laskowska

😂 Trueee! “DELETE FROM users;” is pure horror-movie-level code.
But yeah… git reset --hard HEAD~1 — that’s psychological horror.

Collapse
 
xdevman1 profile image
Milad

Lol i thought i was the only one who was scared of the 1st and 2nd one 🤣

Collapse
 
sylwia-lask profile image
Sylwia Laskowska

Hahaha same!
Those two lines are the reason I triple-check every terminal command now 😭

Collapse
 
ben profile image
Ben Halpern

Happy halloween!

Collapse
 
sylwia-lask profile image
Sylwia Laskowska

Happy Halloween! 🎃👻 Thanks for stopping by!

Collapse
 
aaron_rose_0787cc8b4775a0 profile image
Aaron Rose

7️⃣ Array(10).fill({})
Ten objects, one reference. Ten bugs, one developer crying 😭...love it! hahahaha

Happy Halloween, Sylwia! 🎃

Collapse
 
sylwia-lask profile image
Sylwia Laskowska

That line of code gave me more bugs than my entire QA team combined 🪲😭
Happy Halloween, Aaron!

Collapse
 
alexugthub profile image
Alexu

Sometimes I try to find the formula for calculating a percentage, and I write a comment for the rule of three, like this

// a 100%
// b x
// x = b * 100 / a

I'm not very proud of having to write it down so I can visualize it

Collapse
 
sylwia-lask profile image
Sylwia Laskowska

OMG yes 😂
I swear, every time I have to calculate a percentage my brain goes:
“You knew this in 4th grade. Not anymore.”

Collapse
 
dariomannu profile image
Dario Mannu

Who's never done this?

try {
 // something...
} catch(e) {}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
sylwia-lask profile image
Sylwia Laskowska

Literally every dev ever 😂
The real horror isn’t the empty catch — it’s when you forget you wrote it… and it silently eats every error for 6 months 😭