RSSAmplifier

Blog

Hamza's Blog

Recent content on Hamza's Blog

hamzahassan.caRSS feed ↗6 posts

Latest posts

Getting better at Englishing with the help of A.I and CloudFlare

I love learning new words, so I decided to build a word game to help me with my fix. Wordazzle is the word game designed to make the player more articulate, and probably a little more obnoxious. Here is how I built it, technically speaking.

Book Notes: A philosophy of software design

A Philosophy Of Software Design is a fantastic book written by John Ousterhout. In this article I jot down ideas from the book that I find helpful/interesting.

JavaScript under the hood - Promises

This article is a deep-dive into how promises work under the hood in JavaScript. We look at the Event Loop, Callback Queue and the Microtask Queue and the interplay between these processes.

JavaScript under the hood: Prototype Chain

Ever wondered what people mean when they say that classes in JS are just functions ?

JavaScript under the hood - Scoping (part 2)

This article explores how the scoping mechanism works under the hood in JavaScript. Mastering scope is imperative to fully understand more advanced concepts such as closures and callback functions.

JavaScript under the hood - Scoping (part 1)

This article explores the scoping mechanism in JS. Mastering scope is really important to fully understand higher level concepts in JS, such as closures and callback functions.