His dad drives an auto-rickshaw in Kanpur.
Tier-3 college.
No fancy laptop.
Coded on a ₹15k second-hand desktop.
Never bought courses.
Never did leetcode.
Just solved real problems for real people. Hit ₹1CR revenue this year.
7/ Multimodal agents — a teaser
Imagine an LLM that not only writes, but also acts.
Like calling APIs or analyzing live data.
That’s what agents do — and that’s what we’ll decode next 👇
#AIagents#LLMtools#NextGenAI
6/ Self-consistency prompting
Ask the same prompt multiple times.
Then use a model to pick the most accurate response.
Like cross-checking with friends and letting the topper decide 😄
#LLM#PromptStrategy
🧵 How to talk to an LLM so it actually listens: Prompting 101
Generative AI is smart — but not a mind reader.
Your prompt decides whether you get gold or garbage.
Let’s break down the art of prompting like a pro 👇
#PromptEngineering#LLMs#GIGO#chaicode
7/ But no matter how smart the model is, it’s only as good as your question.
“Garbage in, garbage out.”
And that’s where Prompting becomes the real art.
In the next post, let’s decode how to talk to these models like a pro 👇
#PromptEngineering#LLMs#AIprompting#chaicode
6/ Fun fact: Even this post may or may not have been written by one of those generative models we’re talking about.
These models predict the next word like their life depends on it.
Maybe it does... in compute cycles. 🤖
🧵1/ How does ChatGPT actually “think”? Let’s break down the magic behind Generative AI in a way even your chai buddy would get ☕
It all starts with something called a Transformer - not the electrical one outside your house, but the one powering the AI revolution.
#GenerativeAI
Conclusion
Tuples are powerful tools in TypeScript for defining fixed data structures. Understanding their underlying behavior with JavaScript arrays helps you use them effectively while avoiding common pitfalls.
#100DaysOfCode
Best Practices
Use readonly Tuples: When you want to ensure that the tuple remains unchanged throughout its lifecycle.
Limit Mutative Methods: Avoid using methods like push on tuples unless absolutely necessary and safe.
##44
Understanding Tuples in TypeScript & Why push Still Works
Ever wondered how tuples work in TypeScript and why you can still use array methods like push to add more elements? Let’s dive into the intricacies of tuples and their behavior! #TypeScript#JavaScript#WebDev