https://www.gravatar.com/avatar/206912d6900c65386f24516df605c206?s=240&d=mp

Kourtney's Space

Beyond the Wall: Building a Low-Cost, High-Efficiency Cloud RAG Application with Firestore Vector Search

RAG (Retrieval Augmented Generation) is an AI framework that allows developers to add external information without retraining the LLM, improving the accuracy of its answers. As of 2026, it is a widely known technology.

The concept is roughly as follows: First, vectorize external information (the data you want the LLM to know) using an embedding model and store it. After a user enters a prompt, the prompt is also vectorized using the same embedding model. It is then compared against the previously stored vectors to retrieve the most similar pieces of data. These are then integrated by the LLM to generate a response for the user. This approach allows the LLM to answer using specific knowledge integrated by developers without the need for retraining.

How I Finally Removed GitHub’s Persistent “Ghost Notification” — The Real Fix With GitHub CLI

If you’re a developer who uses GitHub daily, you probably rely on notification badges to track issues, pull requests, and mentions. But what happens when the notification badge gets stuck — even after clearing everything?

For months, I saw a 1 notification badge that refused to disappear, even though there aren’t any unread messages in any inbox folder. No archived items, no subscriptions, nothing hidden. Still, the badge remained.

Many developers started reporting the same issue as early as September 2025. This wasn’t just a UI bug — it was caused by a spam attack impersonating Gitcoin, leaving backend notification records that GitHub never automatically cleaned up.

Multiprocessing, Multithreading and Asyncio in Python Part 1 - Basic Concept

Python’s performance bottlenecks were criticized for years,
but thanks to the hard work of developers,
Asyncio was introduced in Python 3.4 to improve performance in specific scenarios.
By Python 3.13, the Free-threaded design (PEP-703) emerged,
allowing the optional disabling of the GIL.
Combined with the pre-existing Multiprocessing and Multithreading,
I have compiled a few records on the principles, differences, and use cases for these three technologies.
This first post will briefly introduce the basic concepts and suitable scenarios for each.

MacOS Legacy Rsync Hangs

A few months ago, I encountered an issue while using rsync to back up data from my MacBook to a NAS.

rsync would appear to be running normally for a while and then suddenly hang indefinitely.

The terminal output showed it syncing files as usual, and then it just… stopped.

There were no error messages, and rsync didn’t exit.

Initially, I thought it might be a large file transfer or an unstable network connection. However, I discovered that if I killed the process and ran the rsync command again, it would resume smoothly from the file where it had previously stuck. This happened several times in a row!

Sync Obsidian / Joplin Data Across Multiple Devices with Synology WebDAV

I originally used Notion as my note-taking software.
It’s feature-rich and has a beautiful interface.
However, a few years ago, a privacy controversy arose around Notion,
accusing them of looking at a company’s content stored in Notion,
and even proposing a partnership based on that information.
So, I switched to Joplin for a while,
but eventually moved to Obsidian, which has a large number of plugins, strong community support, and is highly customizable.

Managing Pre-existing Global NPM Packages After Installing NVM

Today I encountered a problem:

After installing nvm, the path for installing global packages changed,

making it impossible to directly remove previously installed global packages using npm uninstall -g.

How did I discover this?

A long time ago, I installed a global package that could be executed directly from the terminal using a command.

But because it was so long ago,

when I tried to upgrade that package, I found it wasn’t listed in npm list -g.