DEV Community

Osama Alghanmi
Osama Alghanmi

Posted on

You Learn Faster When You Tell AI What You Already Know

Most people ask AI to explain things. Fewer people ask AI to explain things to them specifically.

Every concept has a cousin

State machines were confusing to me until I recognized I'd been building them manually for years, just without the name. Event sourcing clicked the moment someone described it as a git log for your data. These connections didn't happen by accident. Someone knew what I already understood and found the bridge.

AI can do this reliably, but only if you tell it where to start.

"Explain WebSockets" returns a definition. "Explain WebSockets to someone who understands HTTP request-response, specifically what breaks down when you need the server to push data without the client asking first," returns something you can actually use. The second question works because it gives AI a place to stand. It knows where you are. It doesn't have to guess.

This is how learning has always worked. New information sticks when it attaches to something already in your head. AI is unusually good at finding that attachment point across domains you'd never encounter side by side otherwise. It can connect your SQL knowledge to MongoDB aggregation, your OOP background to functional programming, your REST intuition to the specific friction GraphQL was designed to solve. But it needs your reference point to know which connection to draw.

The instinct that works against you

When learning something new, there's a pull toward beginner mode. You try to receive information fresh, as if your existing knowledge might contaminate it. Backend developers learning React sometimes treat state management as a new concept, rather than recognizing that they've been thinking about state for years in a different context.

Your existing models aren't contaminated. They're the reason new explanations stick. A backend developer who says: "I understand data flow and separation of concerns; show me how React handles both" will outpace someone who starts from scratch and works through the basics without that anchor.

Before asking AI to explain something, it's worth spending ten seconds on: what do I already know that this resembles? What problem does this thing solve that I've encountered before in a different form? The answer to either of those shapes a much better question.

It compounds

Once you establish a reference point, each follow-up question builds on it. You're not accumulating disconnected facts. You're extending an existing map.

People who seem to learn new technologies fast aren't processing information faster. They're anchoring better. Each new concept attaches to the previous one, which attaches to something before that. The reference point at the start of a learning session determines how much of the rest actually lands.

AI accelerates this by traversing domains in a single conversation. You can go from "I understand X" to a working mental model of something three conceptual steps away, without having to read three textbooks first. The catch is that the conversation has to start somewhere concrete. It's best when you have a knowledge repository that the LLM can pull from and use as a reference point.

Top comments (0)