12 articles

📰 Dev.to · Mohamed Idris

Articles from Dev.to · Mohamed Idris · 12 articles · Updated every 3 hours · View all reads

All ⚡ AI Lessons (9392) ArXiv cs.AIDev.to · FORUM WEBForbes InnovationDev.to AIOpenAI NewsHugging Face Blog
Why BEM Nesting Breaks in Tailwind v4
Dev.to · Mohamed Idris 3w ago
Why BEM Nesting Breaks in Tailwind v4
So today I spent sometime debugging why some CSS styles weren't applying. Turns out, Tailwind v4...
How to Move a Git Branch to a Different Parent
Dev.to · Mohamed Idris 4w ago
How to Move a Git Branch to a Different Parent
You branched off feature-A, did your work, then realized your branch should have been based on main...
React Query: What Is `staleTime` and Why Should You Care?
Dev.to · Mohamed Idris 1mo ago
React Query: What Is `staleTime` and Why Should You Care?
Ever fetched data in React and noticed your app keeps hitting the API over and over for the same...
Why You Need to Sync Production Back Into Dev
Dev.to · Mohamed Idris 1mo ago
Why You Need to Sync Production Back Into Dev
About our git workflow, we first merge a feature into develop, then the feature into production, then...
Our Git Branching & Development Workflow — A Practical Guide
Dev.to · Mohamed Idris 1mo ago
Our Git Branching & Development Workflow — A Practical Guide
Every team needs a branching strategy that balances speed with stability. Here's the workflow our...
Git Cherry-Pick: Pull a Specific Commit from Another Branch
Dev.to · Mohamed Idris 1mo ago
Git Cherry-Pick: Pull a Specific Commit from Another Branch
Sometimes you need just one commit from another branch — not a full merge. That's what git...
JavaScript Object Methods - A Practical Guide
Dev.to · Mohamed Idris 1mo ago
JavaScript Object Methods - A Practical Guide
The Problem Imagine you have a pie recipe object from an API that looks like...
How to update your last commit's date?
Dev.to · Mohamed Idris 1mo ago
How to update your last commit's date?
Initially I tried git commit --amend, it updates the committer date but preserves the author...