S
AI Engineer Intern
SpeakGenie,
@Madhur_Prakash
Madhur Prakash Mangal
@Madhur_Prakash
Full-Stack Developer | NodeJS, ReactJS | Cybersecurity & AI Enthusiast
Full-Stack Developer | NodeJS, ReactJS | Cybersecurity & AI Enthusiast
Ghaziabad, India
2,870
contributions in the last year
Apr
S
M
T
W
T
F
S
Mar
4
stars earned
36
repositories
16
followers
A full Authentication system build in Fastapi | Python
Python
2Stars
0Forks
A smart way to manage your meetings
Python
0Stars
0Forks
An automated AI post-commit review system that evaluates code changes using LLMs to improve code quality, consistency, and security.
JavaScript
2Stars
0Forks
RecallAI is an AI-powered recall system that captures screen activity, extracts text via OCR, stores vector embeddings, and enables RAG-based querying of past actions.
Python
0Stars
0Forks
S
S
SpeakGenie,

blog.stackademic.com
Generated using AI When a user clicks the “Login” button, it feels instant and simple. But behind the scenes, a surprisingly complex chain of events unfolds across multiple layers of a backend system. This journey involves request handling, authentication logic, database verification, caching mechanisms, and finally, constructing a secure response. In this article, we will walk through the complete backend flow: Request → Authentication → Database → Cache → Response 1. The Request: Entering the System Th...

aws.plainenglish.io
The Day I Stopped Fighting Environment Errors — Thanks to Docker Everything worked perfectly — until I tried running my project on another machine. That’s when I realized local success doesn’t always mean global peace. If you’ve ever said the words “but it works on my system!”, you already know the pain. In a world where deployment inconsistencies and environment issues haunt developers, Docker became my hero. So, What is Docker and Why Does Everyone Use It? Simply put, Docker is a platform that allow...

javascript.plainenglish.io
Photo by Pankaj Patel on Unsplash Ever had one of those moments where your entire JavaScript app breaks — and it turns out the culprit was just a missing semicolon? Yeah. Me too. The Setup: One day I was working on a Node.js project where I wanted to connect to the database as soon as the server started. So I wrote a function using async/await const connectDB = (async () => { try { const connectionInstance = await mongoose.connect(`${process.env.MONGO_URI}/${DB_NAME}`) console.log(`Mo...