Deploy & Regret

Tutorials that shouldn’t work (but do).

Latest Posts

REST in Peace: A Beginner’s Guide to REST APIs

REST in Peace: A Beginner’s Guide to REST APIs

Context : Ever heard the word API and thought it sounds like a secret hacker code? Relax — it’s just how apps talk to each other. Like when you order pizza online — the app talks to the restaurant. That’s an API doing its job. Now meet the cool cousi...

React? Bro, Learn JS First!

React? Bro, Learn JS First!

Context : So you just opened a React tutorial, saw a bunch of curly braces inside HTML tags, and thought, "Yep, I’m officially a frontend dev." But wait — what’s map() doing inside a <div>? Why does this suddenly feel like your ex ( I don’t have ex…I...

Because Console.log('Hello') Wasn’t Complicated Enough

Because Console.log('Hello') Wasn’t Complicated Enough

Description : Okay, Let’s be real I tired out JavaScript and tired out Java previously in my LinkedIn series of DSA. But now writing code JavaScript code make me too bored to be honest. So, for backend code I thought to write to back with Java… no ...

Code Once, Confused Everywhere!" – A Funny Guide to Programming Basics for DSA

Code Once, Confused Everywhere!" – A Funny Guide to Programming Basics for DSA

Perfect! Here's a solid structure for your basic programming language course that focuses on universal concepts — ideal for starting DSA. You'll write in C++, and I'll provide syntax comparisons for Java, Python, and JavaScript alongside. 1. Input /...

Hello, World! But First, Let’s Install the World...

Hello, World! But First, Let’s Install the World...

Here’s a quick installation + "Hello World" guide for Java, Python, C++, and JavaScript—perfect for beginners starting DSA or basic programming. 1. C++ Installation: Windows: Install MinGW or use MSYS2 Mac: Use Homebrew → brew install gcc Linux: ...

Redis Crash Course

Redis Crash Course

Context: Redis (Remote Dictionary Server) is an in-memory key-value store, used as a cache, message broker, or even a lightweight database. Blazing fast because data is in memory Supports data persistence Built-in pub/sub, streams, and transaction...