favicon

Editing a Contributor’s Pull Request When They’re Unresponsive

How I handle unresponsive pull requests by pushing fixes directly to the contributor’s branch and merging cleanly without duplicating PRs.

Countinue reading

Newsletter

I run a newsletter about design, coding, ai and open source.

whoami

Hi, I'm Stabldev! "I build software that stays built." lol, nevermind.

tbh, i like breaking and fixing things; usually in python or js/ts. sometimes it’s just my arch install (which i break more than i’d like to admit). ngl, it’s all part of the fun.

GitHub

latest

Editing a Contributor’s Pull Request When They’re Unresponsive

[ git ] - Published January 03, 2026

How I handle unresponsive pull requests by pushing fixes directly to the contributor’s branch and merging cleanly without duplicating PRs.

Understanding the Observer Pattern in React

[ react ] - Published November 04, 2025

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.

Integrating MinIO Storage with Django

[ django ] - Published October 08, 2025

Learn 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 September 30, 2025

A 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 August 12, 2025

Open 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 August 01, 2025

We'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 July 21, 2025

Let's see how can we publish our packages to Arch User Repository (AUR) with best practices.

Released: torrra v1.0.0

[ foss ] - Published July 18, 2025

From basic prompts to a full terminal interface - torrra v1.0.0 makes torrent searching and downloading seamless, right from your CLI.

torrra

[ foss ] - Published July 10, 2025

A Python tool that lets you find and download torrents without leaving your CLI.

Function Overloading in TypeScript

[ typescript ] - Published July 04, 2025

How 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 July 04, 2025

Leetcode question no. 49 Group Anagrams explained in 2 different ways.