#መልካም_የፆም_ጊዜ
If you don't understand this code በደንብ ፁሙ #ሎል_lol
let fasting = false;
const startDate = new Date();
startDate.setHours(0, 0, 0, 0); //(12:00 AM)
const endDate = new Date("2025-04-20T03:00:00");
const durationInMilliseconds = endDate - startDate;
fasting = true;
console.log("ፆም/fasting started.");
// setTimeout to handle the end of the fasting period
setTimeout(() => {
fasting = false; // Set fasting to false after 55 days
console.log("ስለፍቅሩ ሲል ከሙታን ተለይቶ ተነስቷል"); // Log the message
console.log("ፆም/fasting ended.");
}, durationInMilliseconds);
😁6👍2
Ramadan Mubarak🥳🥳🎉🎉
የ1446 ዓ.ሂ የረመዳን ወር ጨረቃ በመታየቷ፤ ነገ ቅዳሜ የካቲት 22/2017 የወሩ የመጀመሪያ ቀን እንደሚሆን ታውቋል፡፡ 🌙✨
Wishing you a wonderful Ramadan!
❤2
const obj1 = { id: 1 };
const obj2 = { id: 1 };
const obj3 = obj1;
console.log(obj1 === obj2);
console.log(obj1 === obj3);What is the output of the above code
Anonymous Quiz
23%
false true
10%
true false
50%
true true
13%
false false
4%
error
❤1
🔥 Lynx: A React Native Killer? 🔥
🕐 1 min read time
read_more
ByteDance just dropped Lynx, a Rust-powered, multi-platform framework that could shake up mobile dev. It ditches React Native’s JavaScript bridge bottlenecks for a dual-threaded UI engine, promising faster load times, smoother UI, and true CSS support.
✅ Pros: Blazing fast, framework-agnostic (React, Vue, Svelte), real CSS, Rust-powered.
❌ Cons: New & unpolished, small ecosystem, Windows issues.
Lynx looks promising but isn’t quite there yet. Will it replace React Native? Maybe. Are you trying it? 🚀
read_more
Telegraph
🔥 Lynx: The React Native Killer from TikTok? 🔥
Lynx is a Rust-powered, dual-threaded UI rendering framework that promises: ✅ Faster app launch times ⏩ ✅ Smooth, pixel-perfect UI 🖼️ ✅ True native performance ⚡ ✅ Full support for web developers 🌍
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