Hi, I'm Seetal. I reside in Manchester UK, where I design and build websites, try to keep fit and attempt to learn classical guitar from a book.

Jhamut.com home
7th November, 2025

Javascript Event Loop

Learning about the event loop is essential to understanding how asynchronous javascript works, it can help you with writing better, more robust code.

more...
2nd April, 2025

Web workers

Web workers allow you to execute javascript on a separate thread to the main thread.

more...
16th January, 2024

I made a game

It’s called BlockJham. It’s quite a simple game, you basically have to tap to swap blocks of the same size but different colours to create a full line of the same colour.

more...
23rd August, 2023

View Transitions

Transitioning between multi page apps has become very easy with the view transitions api.

more...

One of the 3 Core Web Vitals (CWV), web.dev defines LCP as: ‘The Largest Contentful Paint (LCP) metric reports the render time of the largest image or text block visible within the viewport, relative to when the page first started loading’

more...
5th April, 2022

Javascript Closure

A closure is basically like a bundle of a function and any referenced variables in its lexical scope.

more...