Last week, I decided to switch from Cursor to Claude Code after hitting some frustrating rate limits. I’ve been using Claude Code on WSL for a while, but with the recent native Windows support that just dropped, I figured it was time to try setting it up directly on Windows with the VS Code extension.… Continue reading Your Missing Guide to Claude Code on Windows & VS Code
Category: General
How to Migrate Data from MongoDB to Supabase
Recently, I found myself in a situation where I needed to migrate data from MongoDB to Supabase (PostgreSQL). Initially, MongoDB was the quickest way to get up and running on a single VPS, it was simple, flexible, and did the job. However, as our project grew and we moved more processes to AWS, it became… Continue reading How to Migrate Data from MongoDB to Supabase
How to Create External Backup of Your Self-Hosted MongoDB Database
Creating external backups of your MongoDB database is essential for data safety. This tutorial demonstrates the process of backing up a self-hosted MongoDB database. The same backup commands will work with any MongoDB instance (including MongoDB Atlas) once you have the connection URL. The only difference is in how you get the connection URL, for… Continue reading How to Create External Backup of Your Self-Hosted MongoDB Database
How to Create External Backup of Your Supabase-Hosted PostgreSQL Database
While Supabase provides automated daily backups for paid projects, having your own external backups is important, especially if you are on the free plan. This tutorial will guide you through creating manual external backups of your Supabase-hosted PostgreSQL database to your local machine. Prerequisites Check Before we begin, let’s verify if you have PostgreSQL client… Continue reading How to Create External Backup of Your Supabase-Hosted PostgreSQL Database