<JS />
This is where I share my writings on tech, programming, frameworks, and my experiences.
How to Remove Large Files from Git History Without Breaking Your Branches
Accidentally committed a large file and broke your GitHub PR? This guide shows how to clean history with git filter-repo, fix the “There isn’t anything to compare” issue, and rebase your branch back to normal—step by step.
Learn more →
Sep, 14 2025
- 3 min read
How I Increased Website Traffic by 900%: A Technical SEO Case Study
From 3k monthly visitors to 50k+ in 6 months through strategic technical SEO implementation.
Sep, 13 2025
- 14 min read
How to Add Google Translate to Your Next.js/React App (The Right Way)
Building a custom, beautiful translation component that actually works with modern React frameworks
Sep, 10 2025
- 12 min read
🚨 Fixing “App Not Loading on Web” in Expo SDK 53 (React Native + Metro + Framer Motion)
Fixing a Metro bundler crash in Expo SDK 53 caused by tslib and .mjs conflicts—this guide shows how to update Metro config and alias tslib for smooth React Native Web support.
Jul, 7 2025
- 2 min read
Simplifying React Context Management with BuildProviderTree
The `BuildProviderTree` function recursively combines multiple context providers into one nested component, simplifying their management in React applications and ensuring clean, maintainable code.
Jun, 1 2024
- 5 min read
Streamlining Your React App with Custom Hooks
Custom hooks in React improve clarity, reusability, testability, and maintenance. Encapsulating logic, like data fetching with `useFetch`, keeps components focused on rendering. This approach streamlines development and enhances code quality.
May, 30 2024
- 7 min read
Convert Your React Web App to Mobile in Minutes and Deploy to Stores with Ionic Capacitor
we’ll explore how you can effortlessly transform your React web app into a mobile app and get it ready for deployment on both the App Store and Play Store.
Sep, 7 2023
A Step-by-Step Guide to Building a CRUD API in Laravel
Creating a CRUD (Create, Read, Update, Delete) API is a fundamental task in modern web development. Laravel, a popular PHP framework, simplifies this process by providing a powerful set of tools to build efficient APIs
Unlocking the Power of JavaScript Array Methods: Some, Includes, Any, and Always
e’ll explore these methods in detail, providing clear explanations, relevant examples, and practical use cases to help you grasp how they work and how you can leverage them in real-world scenarios.