MSMandeep Singhinmandeepsingh.hashnode.dev·Sep 4 · 6 min readElectron 44 Is Here: What's New, Explained SimplyReleased: August 25, 2026 If you build desktop apps with web technology (like VS Code, Slack, or Discord do), you've probably heard of Electron. It's the tool that lets developers build desktop apps u00
MSMandeep Singhinmandeepsingh.hashnode.dev·Aug 6 · 9 min readThe Only Five Tooling Changes I'm Actually Adopting This QuarterThe Only Five Tooling Changes I'm Actually Adopting This Quarter A Laravel solo founder's filter on everything that shipped in mid-2026 Every week something new launches. Every week a thread tells yo00
MSMandeep Singhinmandeepsingh.hashnode.dev·Apr 1 · 4 min readFrom Docker PostgreSQL Backup to Production Restore (Without Permission Headaches)If you’ve ever tried moving a PostgreSQL database from Docker to another server, you’ve probably hit this nightmare: ❌ “role does not exist” ❌ “permission denied for table” ❌ “type vector does not 00
MSMandeep Singhinmandeepsingh.hashnode.dev·Mar 25 · 1 min readStruggling with PostgreSQL Permissions? Here’s the Real Fix (Not GRANT)So even if you gave ALL PRIVILEGES, it’s not enough for ALTER. ✅ Fix (change ownership) Run this as postgres (or superuser) inside Docker: docker exec -it postgres_pgvector psql -U postgres -d nutr00
MSMandeep Singhinmandeepsingh.hashnode.dev·Mar 12 · 2 min readStep-by-Step Guide: Create PostgreSQL Database, User, and Grant Privileges on UbuntuHere is the correct way to create a PostgreSQL database, user, and give full permissions on Ubuntu. 1️⃣ Login to PostgreSQL sudo -i -u postgres psql 2️⃣ Create Database CREATE DATABASE "the-ai-shift00