Technical blog · Prayagraj, India
Code,
systems, & craft.
I’m Shashikant Dwivedi — a software engineer in Prayagraj, India. I write about the systems I build, the tools I use, and the practices I’m still figuring out.
Featured
Latest article.
Topics
What I cover.
Archive
Recent articles.

App Development
How to Manage Multiple Flutter SDK Versions on One Computer using FVM
Oct 10, 2025 · 3 min

App Development
How to Forward an Emulator Port to Your PC Using ADB (Beginner’s Guide)
Oct 9, 2025 · 1 min

DevOps
How to Install Redis on Ubuntu Server and Enable Remote Access
Sep 1, 2025 · 4 min

DevOps
Creating PostgreSQL Users: A Quick Setup Guide 🔑
Jan 1, 2025 · 3 min

DevOps
How to Enable Remote Connections in PostgreSQL: Security Guide
Jan 1, 2025 · 3 min

DevOps
🚀 PostgreSQL Installation Guide for Ubuntu: Your Complete Walkthrough!
Jan 1, 2025 · 2 min
Snippets
Useful code,
ready to copy.
A growing library of small, focused code snippets — TypeScript utilities, SQL patterns, shell one-liners, and React hooks that actually earn their keep.
Browse snippets// useDebounce hook
function useDebounce<T>(
value: T,
delay: number
): T {
const [debounced, setDebounced] =
useState(value);
useEffect(() => {
const t = setTimeout(
() => setDebounced(value),
delay
);
return () => clearTimeout(t);
}, [value, delay]);
return debounced;
}The newsletter
New articles in your inbox.
Occasional articles on engineering, tooling, and software development practices. No marketing, no fluff — just the article, when it's ready.
Unsubscribe with one click. Your email never leaves the list.

