devxsameer's profile picture. How to increase followers on X? fullstackwebdevinthemaking.

Sameer Ali

@devxsameer

How to increase followers on X? fullstackwebdevinthemaking.

ปักหมุด

Days 89–92 of #100DaysOfCode Built DevProfile — a dynamic resume builder with live editing, real-time preview, and 1-click PDF export ⚛️ 🎨 React 19 + Vite 7 + Tailwind CSS 4 💾 Repo: github.com/devxsameer/dev… #TheOdinProject #ReactJS #WebDev #Frontend


Day 93 of #100DaysOfCode Learned how to handle side effects in React with useEffect() ⚛️ Side effects ≠ rendering logic Cleanups prevent memory leaks Dependency arrays save you from infinite loops 😅 Sometimes you don’t even need an effect! #React #TheOdinProject #WebDev


Day 88 of #100DaysOfCode Completed React lessons from @TheOdinProject Learned Components, JSX, Rendering, Keys, Props, & State Started learning Tailwind CSS 💨 Even converted my homepage project fully to Tailwind! #ReactJS #TailwindCSS #WebDev


Day 86–87 of #100DaysOfCode 🚀 Wrapped up my Custom Homepage Project 🏠 👉devxsameer.github.io/homepage/ 👉github.com/devxsameer/hom… Built it with HTML, CSS, JS — fully responsive Then jumped into React, learning about JSX, components & Vite setup. #TheOdinProject #ReactJS #Frontend

devxsameer's tweet image. Day 86–87 of #100DaysOfCode 🚀

Wrapped up my Custom Homepage Project 🏠
👉devxsameer.github.io/homepage/
👉github.com/devxsameer/hom…
Built it with HTML, CSS, JS — fully responsive 
Then jumped into React, learning about JSX, components & Vite setup.
#TheOdinProject #ReactJS #Frontend

Day 85 of #100DaysOfCode 🧑‍💻 Deep dived into Responsive Design with @TheOdinProject! ✅ Media queries ✅ Responsive images ✅ Fluid layouts ✅ Relative units 💡 Lesson: it’s not about shrinking — it’s about adapting! Next up: the homepage project 🏡 #WebDev #ResponsiveDesign


Day 84 of #100DaysOfCode 🌐 + 🐍 ✅ Completed Odin’s Accessibility module: semantic markup, ARIA, keyboard nav, contrast & WCAG ✅ Solved CS50P PSet4 Today was about making web usable and logic robust. #WebDev #Accessibility #CS50P #Python


Day 83 of #100DaysOfCode 🎉 Learned CSS transitions, transforms, and keyframes today. Transitions = smooth hover moves Transforms = scaling/rotating fun Keyframes = full-on element choreography 💃 #TheOdinProject #WebDev #CSS


Days 79–82 of #100DaysOfCode Built the classic Battleship game with JS, Webpack & Jest (TDD). ✨ Human vs AI, ship placement previews & animated battle messages. Play 👉 devxsameer.github.io/battleship/ Code 👉 github.com/devxsameer/bat… #JavaScript #WebDev

devxsameer's tweet image. Days 79–82 of #100DaysOfCode

Built the classic Battleship game with JS, Webpack & Jest (TDD).
✨ Human vs AI, ship placement previews & animated battle messages.
Play 👉 devxsameer.github.io/battleship/
Code 👉 github.com/devxsameer/bat…

#JavaScript #WebDev
devxsameer's tweet image. Days 79–82 of #100DaysOfCode

Built the classic Battleship game with JS, Webpack & Jest (TDD).
✨ Human vs AI, ship placement previews & animated battle messages.
Play 👉 devxsameer.github.io/battleship/
Code 👉 github.com/devxsameer/bat…

#JavaScript #WebDev

Day 78 of #100DaysOfCode 🎯 Wrapped up The Odin Project’s More Testing lesson. 🧪 Learned: Keep tests isolated Write pure functions Mock only when you must Clean architecture = fewer headaches & fewer mocks. #JavaScript #Testing #TheOdinProject


Day 77 of #100DaysOfCode Finished Odin Testing Practice project ✅ Built JS utilities + wrote unit tests with Jest 🧑‍💻 Practiced TDD, handled edge cases & improved testing workflow 🚀 github.com/devxsameer/odi…


Day 76 of #100DaysOfCode Dove into Testing Basics with The Odin Project: Learned TDD mindset (tests first, code second) Played with Jest & matchers Not much code written, but lots of mindset gained. ✅ #TheOdinProject #JavaScript #TDD


Day 75 of #100DaysOfCode 💻 Deep dive into Git remotes & real-world workflows 🌍: Managing origin & upstream Avoiding dangerous force-push Branching + PRs for teamwork Writing meaningful commit msgs ✍️ Git isn’t just commands → it’s collaboration. 🔥 #TheOdinProject


Day 74 of #100DaysOfCode 🚀 Dove deep into Git today via The Odin Project: 🔀 git rebase → rewrite history like a pro ⏪ git reset → undo mistakes Git isn’t just git add . && git commit -m "done" — mastering the advanced stuff = real dev superpowers ⚡ #TheOdinProject #Git


Day 73 of #100DaysOfCode 🌳 Wrapped up Binary Search Trees Insert, Delete, Traversals Balance & Rebalance logic ♞ Built Knight Travails with BFS Shortest path finder + interactive chessboard demo 🔗 BST: github.com/devxsameer/odi… 🔗 Knight Travails: devxsameer.github.io/knight-travail…


Day 72 of #100DaysOfCode — cracked HashMaps & HashSets in JS 🗂️ Full HashMap: set/get/has/remove/keys/values/entries + resizing HashSet: unique values only Learned hashing, collisions & load factors 💡 Check it out 👉 github.com/devxsameer/odi…

devxsameer's tweet image. Day 72 of #100DaysOfCode — cracked HashMaps & HashSets in JS 🗂️

Full HashMap: set/get/has/remove/keys/values/entries + resizing
HashSet: unique values only
Learned hashing, collisions & load factors 💡

Check it out 👉 github.com/devxsameer/odi…

Day 71 of #100DaysOfCode 🪢 Built a Linked List in JS today: Core methods ✅ Extra credit methods ✅ Repo cleaned & shipped 🚀 Learned: nodes & pointers aren’t scary… until they are 😅 🔗 github.com/devxsameer/odi… #TheOdinProject #JavaScript #WebDev

devxsameer's tweet image. Day 71 of #100DaysOfCode 🪢

Built a Linked List in JS today:
Core methods ✅
Extra credit methods ✅
Repo cleaned & shipped 🚀
Learned: nodes & pointers aren’t scary… until they are 😅
🔗 github.com/devxsameer/odi…

#TheOdinProject #JavaScript #WebDev

Day 70 of #100DaysOfCode 🚀 Wrapped up recursion ➡️ dove into time & space complexity. ✅ O(1) = instant ✅ O(log n) = binary search ✅ O(n) = linear ✅ O(n log n) = sorting ❌ O(n²+) = RIP performance It’s not just code that runs… it’s code that scales. 💡

devxsameer's tweet image. Day 70 of #100DaysOfCode 🚀

Wrapped up recursion ➡️ dove into time & space complexity.
✅ O(1) = instant
✅ O(log n) = binary search
✅ O(n) = linear
✅ O(n log n) = sorting
❌ O(n²+) = RIP performance
It’s not just code that runs… it’s code that scales. 💡

Day 69 of #100DaysOfCode 🧑‍💻 Intro to algorithms & data structures Practiced recursion until my brain felt recursive 🌀 Learned that forgetting the base case = instant infinite loop limbo 🤯 CS foundations unlocked. Level up! 🚀 #TheOdinProject #JavaScript #WebDev

devxsameer's tweet image. Day 69 of #100DaysOfCode 🧑‍💻

Intro to algorithms & data structures
Practiced recursion until my brain felt recursive 🌀
Learned that forgetting the base case = instant infinite loop limbo 🤯
CS foundations unlocked. Level up! 🚀

#TheOdinProject #JavaScript #WebDev

Days 65–68 of #100DaysOfCode 🌤️ Built Zephyr, a modern weather app in Vanilla JS ⚡️ City search (Open-Meteo) Real-time weather (WeatherAPI) 6-day forecast Celsius ↔ Fahrenheit toggle Clean responsive UI 🔗 Live: devxsameer.github.io/zephyr/ 🔗 Repo: github.com/devxsameer/zep…

devxsameer's tweet image. Days 65–68 of #100DaysOfCode 🌤️

Built Zephyr, a modern weather app in Vanilla JS ⚡️
City search (Open-Meteo)
Real-time weather (WeatherAPI)
6-day forecast
Celsius ↔ Fahrenheit toggle
Clean responsive UI
🔗 Live: devxsameer.github.io/zephyr/
🔗 Repo: github.com/devxsameer/zep…

Day 64 of #100DaysOfCode 🚀 Mastered async/await (way cleaner than callback spaghetti 🍝) Fetched memes with the Giphy API 😂 Checked the skies with Visual Crossing Weather API 🌦️ Now my apps can bring both laughs & forecasts. #JavaScript #WebDev #TheOdinProject

devxsameer's tweet image. Day 64 of #100DaysOfCode 🚀

Mastered async/await (way cleaner than callback spaghetti 🍝)
Fetched memes with the Giphy API 😂
Checked the skies with Visual Crossing Weather API 🌦️
Now my apps can bring both laughs & forecasts.
#JavaScript #WebDev #TheOdinProject

United States เทรนด์

Loading...

Something went wrong.


Something went wrong.