Random Notes on Anything I Find Interesting 😉

This page might contain a mix of topics, from vogue technologies to fitness and life insights—essentially, anything that sparks my interest and I'm happy to share with the world.

The Essence Of Docker In Modern Development

Discover how Docker can solve the "works on my machine" problem and learn to containerize a simple Node.js application effortlessly. Ensure your code runs consistently across any environment.

Systems Engineering: HTTP Request-Response Model

The Request-Response Model is a fundamental communication pattern used in network protocols such as HTTP (HyperText Transfer Protocol), where a client (a browser or web app) sends a request to a server, and the server processes this request and sends back a response.

The V8 JavaScript Engine

V8 JavaScript Engine is a high-performance JIT (Just-In-Time) compiler that converts JavaScript code to executable low-level/machine code. It can run standalone or in C++ runtime environments like Chrome and Node.js.