
Kushagar Goel
25 posts



Our brain will think about something when you try to not think about it
When i say “not apple” you will still think about apple🍎
Does this happens with LLMs as well??
#aiPsycology
English

As Samay Raina you say
Ek clean comic kabhi harami nahi ban sakta but ek harami kabhi bhi clean comic ban sakta h
But we say
Ek vibecoder kabhi bhi Developer ni ban sakta but ek Dev kabhi bhi vibecoder ban sakta h 😎
#developer
Filipino

𝗔𝗜 𝗺𝗮𝗱𝗲 𝗺𝗲 𝘁𝗵𝗲 𝗺𝗼𝘀𝘁 𝗽𝗿𝗼𝗱𝘂𝗰𝘁𝗶𝘃𝗲 𝘂𝗻𝗽𝗿𝗼𝗱𝘂𝗰𝘁𝗶𝘃𝗲 𝗗𝗲𝘃
Last few month I have made more than 20 projects
Still it doesn't feel productive
Solve hard problems because building same state of art repeatedly doesn't help anybody but LLM giants
#AI
English

Most engineering decisions are guesses
You don’t know
• future traffic
• real bottlenecks
• user behavior
Yet people over-engineer to “future-proof”
Good engineers don’t
They pick the simplest thing
that can change later
#Engineering
English

Anyone can build a “complex” system
Add Redis, Kafka, microservices, Kubernetes
Your architecture diagram looks amazing
6 months later:
You’re debugging distributed failures and tracing logs
Good engineers don’t just ask: Can we build this?
They ask: Do we want this?
#Engineer
English

AI can design a system in seconds:
Microservices
Redis
Kafka
Vector DB
Event-driven architecture
Looks impressive.
But it doesn’t know your users, traffic, or team size.
The real skill now isn’t knowing tools.
It’s knowing when not to use them.
#Engineering
English

🔥 Fastest way to fail a system design interview:
We used Kafka.
Interviewer: Why?
If you can’t explain the bottleneck, you don’t understand the tool
Great answers sound like:
File store → slow writes → indexing → Postgres.
Don’t list tools.
Show reasoning.
#SoftwareEngineer
English

You don’t need Redis.
If your app has:
• 3 users
• 20 requests/day
• ₹0 revenue
You don’t need:
• Caching
• Microservices
• Event streaming
You need a file.
Start simple.
Scale when it hurts.
Complex ≠ Smart.
#Engineering
English

Consistency or Availability.
Pick two. Suffer quietly.
Then Google Spanner showed up and said:
“What if we engineer around the speed of light?”
Global ACID. Atomic clocks. Planet scale.
Did it beat distributed systems or just outspend physics? 🚀
#DistributedSystems #Database
English

Your database is a very expensive to-do list
If you use Cassandra / ScyllaDB, you’re not on a B-Tree.
You’re on an LSM Tree.
Not a data structure, a strategy:
• write to memory
• flush sorted files
• merge later (compaction)
Write fast. Clean later.
#Databases #SystemDesign
English

Your DB is one JOIN away from a restraining order.
LIMIT + OFFSET on joins builds huge result sets, then discards most.
Offset = scanning dead rows.
Memory spikes = self-inflicted DDoS.
Use keyset pagination:
WHERE id > last_seen_id
Fetch IDs first, then join.
#DatabaseDesign
English

Current AI can’t replace me
Not because we’re smarter
Because we’ve been in the room when production caught fire 🔥
AI knows the correct answer.
Engineers choose the survivable one
AI masters the How.
Humans decide the What and When
#SoftwareEngineering #AI
English
