Posts

How I Use AI at My Work

How I Use AI at My Work

AI tools have changed how many of us write code. Over the past few years, I’ve been integrating AI into my daily development workflow, and it …

Read article
Forcing Error Handling in TypeScript: A Result Type Implementation

Forcing Error Handling in TypeScript: A Result Type Implementation

The Problem: Runtime Crashes in TypeScript Ever found yourself debugging a production issue only to discover that your API call crashed at runtime? …

Read article
Clean Architecture in Frontend

Clean Architecture in Frontend

Clean Architecture in Frontend Recently, the term “Clean Architecture” was discussed in my company. It sounded interesting, so I started …

Read article
Implementing YouTube's feature - Play video on thumbnail hover

Implementing YouTube's feature - Play video on thumbnail hover

Today I implemented a feature of YouTube in my app . This feature will play video on hover of the thumbnail of a video. Code Changes This commit is …

Read article
Kubernetes, using TypeScript

Kubernetes, using TypeScript

At my work, I learned Kubernetes and used that to migrate an old API project. It required lots of learning and research. In this post, I will share my …

Read article
Callback Pattern

Callback Pattern

A different view of Functions People experienced in JS have a different view of functions compared to people new to JS coming from background of C, …

Read article
RxJS Zip Operator Use Case

RxJS Zip Operator Use Case

I like writing RxJS code. It makes it easy to combine async logic with sync and it treats both of these things in same way. Recently, at my work, I …

Read article
Animation on Scroll with Intersection Observer API

Animation on Scroll with Intersection Observer API

Recently, in one of my websites I implemented below type of animation on scroll. Try scrolling below list of cards. Notice that the cards are …

Read article
Using TypeScipt for Scripts and IAAC

Using TypeScipt for Scripts and IAAC

I am using TypeScript for everything I code, Frontend, Backend, AWS Infrastructure as Code (IAAC), and writing scripts. In this post, I will cover …

Read article
Using RxJS with Stencil.js

Using RxJS with Stencil.js

RxJS is mainly popular with Angular Developers. In this post, I am going to share how I used RxJS with Stencil.js to build reactive components. Ideas …

Read article