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 — page 3

DevOps03 MIN
DevOps
Getting Free SSL Certificates with Certbot - The No-Stress Guide! 🔒
Oct 26, 2024 · 3 min

AI03 MIN
AI
Meet Window.AI: Where Browsers Meet AI Intelligence ✨ | 2024 Guide
Oct 26, 2024 · 3 min

DevOps02 MIN
DevOps
Setting Up Nginx as a Reverse Proxy - The Easy Way! 🚀
Oct 25, 2024 · 2 min

Scripting03 MIN
Scripting
Mastering Task Automation in Linux: A Complete Guide to Crontab Scheduling
Sep 16, 2024 · 3 min

DevOps02 MIN
DevOps
Configuring Apache on an AWS Ubuntu Instance: Installation Guide
Sep 14, 2024 · 2 min

DevOps04 MIN
DevOps
How To Install And Configure Nginx On Your Linux Server
Sep 14, 2024 · 4 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.

