Understanding the Observer Pattern in React
In modern web development, managing state and ensuring different parts of your app stay synchronized can be challenging. The Observer Pattern offers an elegant solution by enabling objects to subscribe to changes and react automatically when those changes occur.
Countinue readingNewsletter
I run a newsletter about design, coding, ai and open source.
Latest
Understanding the Observer Pattern in React
[ react ] - Published Nov 4, 2025In modern web development, managing state and ensuring different parts of your app stay synchronized can be challenging. The Observer Pattern offers an elegant solution by enabling objects to subscribe to changes and react automatically when those changes occur.
Integrating MinIO Storage with Django
[ django ] - Published Oct 8, 2025Learn how to integrate MinIO with Django using django-storages. This setup makes managing and serving media files simple and efficient.
Linux Tips 01: systemd-inhibit
[ linux ] - Published Sep 30, 2025A quick and casual guide on how to keep your Linux system awake during important tasks using the handy systemd-inhibit command.
Dynamic Open Graph Images with Satori and Astro
[ astro ] - Published Aug 12, 2025Open Graph Images are a great way to improve the social sharing experience of your website. In this post I'll show you how to create them and how to generate them dynamically with any static site generator, like Astro.
Python Virtual Environment Explained
[ python ] - Published Aug 1, 2025We'll cover the basics of virtual environments in this guide and how to use them. We will then take a closer look at how virtual environments actually work.
How to Publish Packages to AUR
[ linux ] - Published Jul 21, 2025Let's see how can we publish our packages to Arch User Repository (AUR) with best practices.
Released: torrra v1.0.0
[ foss ] - Published Jul 18, 2025From basic prompts to a full terminal interface - torrra v1.0.0 makes torrent searching and downloading seamless, right from your CLI.
torrra
[ foss ] - Published Jul 10, 2025A Python tool that lets you find and download torrents without leaving your CLI.
Function Overloading in TypeScript
[ typescript ] - Published Jul 4, 2025How function overloading in TypeScript helps you write flexible yet type-safe functions, with real-world examples and practical use cases.
49. Group Anagrams Explained
[ leetcode ] - Published Jul 4, 2025Leetcode question no. 49 Group Anagrams explained in 2 different ways.