Minahil Akhtar
banner
minahilakhtar.bsky.social
Minahil Akhtar
@minahilakhtar.bsky.social
Full Stack Developer ~ WordPress Developer | Tailwind CSS | JavaScript | Bootstrap | React /Redux | Rest APIs | Node.js | NextJs | Express.Js | MongoDB

My Portfolio Website 👇
minahilakhtar.github.io
My Linkedin Profile
linkedin.com/in/minahil-akhtar
Pinned
Just revamped my portfolio! 🚀 New video testimonials & latest projects showcasing creativity & skills.

I invite you all to take a tour and let me know what you think. Your feedback is invaluable to me!

Check it out! 🌐 minahilakhtar.github.io/cv
.
.
#updateportfolio#webdevelopment#webdesign#code
Next.js Route Handlers bring full server-side power into your project, no extra server needed.
Build API endpoints right in your app folder, keep backend close to frontend, and ship faster.

Perfect for auth, uploads, and API-heavy features.
#nextjs #react19 #javascript #webdev
November 24, 2025 at 10:14 AM
Using useEffect for data fetching slows you down.
The new use() hook lets components read async data directly—React just suspends and resumes.

React 19.2 is solid, and the new data-fetching model is a game-changer.
I’ve already deleted over 1k lines of code thanks to it.
November 21, 2025 at 11:01 AM
React 19 forms made simple ⚛️👇
formAction sends your form straight to the server — no extra client logic.

⚡ Cleaner
🚀 Faster
📈 Perfect for React 19 & Next.js

#React19 #NextJS #JavaScript #WebDev #ReactTips
November 17, 2025 at 2:47 PM
React lists lag when everything re-renders.

Use unique IDs, React.memo(), and useCallback to stop useless updates and keep UI fast in React 18+/Next.js 14. ⚡

#nextlevel #reactdevs #cleancode #codeefficiency #javascript #devtips
November 16, 2025 at 2:50 PM
Then you delete cache for run more faster
November 13, 2025 at 2:39 PM
💡 Javascript tips 🔴 DayJS
November 10, 2025 at 2:57 PM
Note-taking vs. Coding — Which Works Best?

Notes help recall; coding builds skill.
Best mix? Take quick notes, code more.
.
.
#Coding #NoteTaking #Learning #Programming #Developers
November 8, 2025 at 2:33 PM
Converting input type number by using parseInt or Number() function or using a plus operator for instance

const num = +value.

We can instead use the valueAsNumber property which gives the value as number type simple
.
.
#javascript #coding #programminglife
November 4, 2025 at 2:30 PM
Built and designed the website for Diagnomitra, a modern at-home diagnostic platform making healthcare easy and accessible. 💉💻

diagnomitra.com
Portfolio → minahilakhtar.github.io

Feedback is always welcome! 🙌

#FrontendDevelopment #DigitalHealth #ProductDesign
November 3, 2025 at 10:31 AM
⚛️ React 19: Smarter Loading States 👇

❌ Old: Manual isLoading flags & spinners
✅ New: + Suspense = auto async UI

✨ Auto states | Customizable | Cleaner code

#React19 #WebDev #JavaScript
November 1, 2025 at 2:25 PM
the unspeakable truth! 🤣
October 16, 2025 at 1:01 PM
Your actual app might be lightweight, but thanks to the npm ecosystem, your disk storage and GitHub repo are crying 😅
October 15, 2025 at 8:39 PM
#JavaScript 💻

if (users[userName]) might log "User name found!" even for built-ins like toString 😬
Why? It checks the prototype chain 🔗

✅ Use Object.hasOwn(users, userName) to check only real keys 🔐
#CodeSmell #CleanCode #JavaScriptTips #WebDev #DevTips
October 12, 2025 at 5:55 PM
the Code Is Documentation Enough
October 8, 2025 at 2:21 PM
🚀 Full-stack isn’t just front + back.

It’s design, logic, servers, testing & growth — all in one.

💡 Not about knowing everything. It’s about adapting & delivering.

#FullStack #WebDev #Code
October 7, 2025 at 9:35 PM
🎨 Frontend = What users see
🧠 Backend = How it works
🔗 API = Connects front & back
👨‍💻 Full Stack = Does it all

Know the roles, build smarter. 💡
#Frontend #Backend #API #FullStack #WebDev #Coding #TechTips
October 5, 2025 at 2:29 PM
JavaScript Tip

Use 𝙿𝚛𝚘𝚖𝚒𝚜𝚎.𝚊𝚗𝚢 to get the fastest successful response from multiple sources.
October 3, 2025 at 12:38 PM
JS lets you call functions with backticks! 🤯

subscribe`Status: ${true}!`; // tagged template 🏷️

Used in styled-components to write CSS in JS 🎨

const Btn = styled.button`
background: ${p => p.primary ? "blue" : "gray"};
`;
#JavaScript #WebDev #CSSinJS 💡
September 30, 2025 at 5:36 PM
When the squad’s done experimenting and it’s time to call Dad to fix the WiFi… but for code. 😆

.

.

#DevLife #BugSquad #FixingTheUnfixable #CoderProblems #TechHumor

#CodeRescue #SendHelpItWontCompile #DebuggingDiaries #RealDevsAssemble #CodeCleanupCrew
September 29, 2025 at 2:49 PM
When you get paid by lines of code 🥱

#programming #fblifestyle
September 28, 2025 at 4:57 PM
#CSSTip: Use system colors like Canvas & CanvasText for theme-aware UIs. They auto-adapt to light/dark & high-contrast modes → more native + accessible.

#webdeveloper #webdevelopment #CSS #javascript #ReactJs
September 27, 2025 at 5:46 PM
#JavaScript 💻 #Tips 📌

?? vs || 🤔
?? → returns right side only if left is null/undefined 🚫

|| → returns right side if left is falsy (0, '', false, etc.) ⚠️
💡 Key: ?? ≠ ||
September 26, 2025 at 2:16 PM
Excited to launch my latest project!

I designed and developed a modern, user-friendly site for Adar Uniforms, a trusted name in healthcare and service apparel.

🌐 adaruniforms.com

Check out more of my work here: 🌐 minahilakhtar.github.io
.
#webdevelopment #webdesign #reactJs #javascript #coding
September 24, 2025 at 2:32 PM
JavaScript Tip

You can use 𝚜𝚎𝚝𝚃𝚒𝚖𝚎𝙾𝚞𝚝 + 𝚙𝚛𝚘𝚖𝚒𝚜𝚎 to create a wait function.
.
.
.
#JavaScriptTip #setTimeout #Promise #AsyncJavaScript #CodingTips
September 23, 2025 at 12:03 PM
React Tip 💡

You can use conditions, switch statements, maps, and all sorts of other approaches to build UIs.

Don't forget, React components are simply JavaScript functions that return JSX.
.
.
#reactJs #Webdevelopment #Javascript #webdesign #Programming #codinglife #code
September 21, 2025 at 4:36 PM