September 15, 2024

Let's build a Virtual DOM in JS from scratch

A while ago, I wanted to really understand how modern UI libraries like Vue manage efficient rendering. So, I decided to challenge myself by creating my own Virtual DOM library. In this article, we will see how to do build our own Virtual DOM and use it...

11 Minutes Read ➡

September 1, 2024

Let's make a Vite clone and use it to build our own project

Modern web development requires fast and efficient tooling to enhance developer experience and productivity. Vite is a build tool that has gained popularity for its lightning-fast development server and seamless build process. Let's dive deep into how to...

8 Minutes Read ➡

Let's build a service container in PHP cover image

August 1, 2024

Let's build a service container in PHP

In the world of modern PHP development, Service Containers (also known as Dependency Injection Containers) are really popular for managing class dependencies and promoting modular, testable code. Frameworks like Laravel and Symfony provide robust service...

11 Minutes Read ➡

The Critical Role of key in Vue’s Virtual DOM Diffing cover image

July 10, 2024

The Critical Role of key in Vue’s Virtual DOM Diffing

Directly modifying props in a Vue component might seem like a quick solution, but it goes against Vue's fundamental design principles and leads to unintended consequences. Let’s dive into the mechanics of Vue’s reactivity and unidirectional data flow...

6 Minutes Read ➡

Common Vue.js Anti-Patterns and Mistakes You Should Avoid cover image

January 20, 2024

Common Vue.js Anti-Patterns and Mistakes You Should Avoid

Vue.js is a popular JavaScript framework known for its simplicity and ease of use. However, even with the most intuitive tools, there are common pitfalls that developers can encounter. In this post, we'll explore some of the most frequent anti-patterns...

6 Minutes Read ➡

How to implement preference based notifications in laravel? cover image

April 19, 2021

How to implement preference based notifications in laravel?

A few days back, I was asked to implement a pretty awesome notification system on one of my client's laravel application, we are calling it, Granular Preference for Notifications. So the user story goes, A user can select if they wish to receive a...

4 Minutes Read ➡

Sign up for our newsletter

July 1, 2024

Why Directly Mutating Props in Vue Is a Mistake (And What Really Happens Under the Hood)

Directly modifying props in a Vue component might seem like a quick solution, but it goes against Vue's fundamental design principles and leads to unintended consequences. Let’s dive into the...

6 Minutes Read →

June 1, 2024

Why Pinia is the State Manager Vue 3 Deserves

In the Vue ecosystem, state management has always been essential, and Vuex was long the go-to solution. But with Vue 3, a new option entered the game: Pinia. Built to take advantage of Vue 3's...

6 Minutes Read →

January 16, 2024

Vue Tip #1: Getting vuex store instance on production in Vue3

Copy and paste the code below in the developer console and you will get the instace of Vuex on any website using vuex. And yes it works on production....

3 Minutes Read →

April 18, 2021

Laravel Tip #1: Check if scheduled jobs are running successfully

Like always you can also log these into files.

1 Minutes Read →

January 12, 2021

How to add approx read time on posts in Jigsaw?

My current blog is developed using Jigsaw and their awesome template. Jigsaw is a framework for rapidly building static sites using the same modern tooling that powers your web applications. I...

1 Minutes Read →

June 8, 2020

Why should you refactor?

You have been working on this feature for a long time. When the client pitched this great new addition, you felt this would take a week. And here you are working on a Saturday and nothing feels...

3 Minutes Read →