This media is not supported in your browser
VIEW IN TELEGRAM
Been off lately… had to train my finger to hit Tab professionally 🏋️♂️⌨️
#coding_meme@forcoder #codingmeme
#coding_meme@forcoder #codingmeme
for-coder
What is the output of the above code
Hint:
I'll talk about it later
👍1
Open your console and type:
typeof null
You'll get:
'object'
That's wrong—null is not an object!
🔍 How did this happen?
When JavaScript was first implemented, values were stored in a tagged format, where the lower bits determined the type:
-
Objects
had a type tag of 0. -
null
was stored as 0
in memory. Since
null
had 0
in its type tag, typeof
mistakenly classified it as an "object". 🔧 Why isn't it fixed?
One word: Backward compatibility.
Fixing it would break too many apps, so it's here to stay!
💬 Share this with JavaScript haters
new
#JavaScript #Bug #Programming
👨💻1
This media is not supported in your browser
VIEW IN TELEGRAM
Difference between programmers and @astonhall
😁1
🌙 Eid Mubarak, Coders ! 🎉
#EidMubarak #ForCoder 🚀
Wishing you all a joyful and blessed Eid! May this special day bring you happiness, peace, and endless success. Keep coding, keep growing, and enjoy the celebrations! 💙✨
#EidMubarak #ForCoder 🚀
❤2
🖥👶 Young Coders Are Using AI for Everything, Giving "Blank Stares" When Asked How Programs Actually Work 🤖❓
🕒 3 Min read time
🕒 3 Min read time
🚀 Junior devs rely too much on AI tools like Copilot & ChatGPT 🤖, leading to a lack of deep coding knowledge 🧠❌. They copy-paste solutions but struggle to explain why the code works 🤷♂️. Studies show AI dependence weakens critical thinking 📉. Experienced devs warn that without real problem-solving, we’re trading long-term skills for short-term speed ⚡️⚠️.
READ_MORE
Telegraph
Young Coders Are Using AI for Everything, Giving "Blank Stares" When Asked How Programs Actually Work
Are Junior Developers Losing Their Coding Skills? For years, the advice for aspiring job seekers was simple: "Learn to code." Ironically, some programmers today might need to follow that same advice. Namanyay Goel, an experienced developer, has expressed…
👍1
🚫📱 How to Stop Doomscrolling 🌿
🕢 7 min read
#StopDoomscrolling #MindfulTech #ForCoder 🚀
🕢 7 min read
In today's digital world, it's easy to get trapped in endless doomscrolling. But don’t blame yourself—tech companies design platforms to keep you hooked! Here’s how to break free:
✅ Set screen time limits ⏳📉
✅ Use apps like ScreenZen, Opal, & Roots 📲🚀
✅ Replace scrolling with books & games 📚🎮
Take control of your screen time & regain your focus! 💡✨
READ_MORE
#StopDoomscrolling #MindfulTech #ForCoder 🚀
Telegraph
How to stop Doomscrolling
The world isn’t always a great place, but endlessly staring at your phone makes it feel even worse. That small, glowing screen follows you everywhere—taunting you with endless headlines, shocking TikToks, and social media rabbit holes. It’s become second…
This media is not supported in your browser
VIEW IN TELEGRAM
This might look like a meme video, but it actually happened to me last week! Thank goodness I got it recovered after a lot of 🔄🔽🔼.
#ShoutoutToLinux 🐧💪
#Linux ❌️💀 Thanos ✅️🔥"
😁3
What is the output of the above code?
Anonymous Quiz
15%
A) undefined
44%
B) “default”
31%
C) null
10%
D) ReferenceError
The 13 Software Engineering Laws 🚀
🕙 10m read time TL; DR
Read More
Explore 13 key software engineering "laws" like:
Parkinson’s Law ⏳ (Work expands to fill the time available)
Hofstadter’s Law 🤯 (It always takes longer than expected)
Conway’s Law 🧩 (Systems mirror team communication)
Murphy’s Law 💥 (Anything that can go wrong, will)
These mental models help engineering managers and developers navigate:
Project estimation 📅
Team dynamics 👥
Product management 📊
Feature creep 🐛
Why they matter? Save time, reduce stress, and ship better software! 🎯💡Make sure to read until the end, it's pretty useful i believe
Read More
Telegraph
The 13 software engineering laws
Some of those are famous, and some are quite niche. ALL of them are super useful to engineers and managers. Curious to know how many were new to you: Parkinson’s law Hofstadter’s law Brooks’ law Conway’s law (and the Inverse Conway's law) Cunningham’s law…