You Are Constantly Rebuilding Yourself
Tejas GK| (21d ago)
We usually talk about ourselves as if we're finished products.
"I'm bad at math."
"I'm not confident."
"I have terrible discipline."
"I'm not a technical person."
"I'm just not good at remembering things."
But there's something strange about speaking this way.
The machine making those statements — your brain — is itself capable of changing.
Not metaphorically.
Physically.
Your Brain Isn't Fixed Hardware
When we compare humans to computers, one major problem with the analogy is that computer hardware doesn't normally redesign itself while you use it.
Your brain does.
The nervous system can change its structure, connections and activity in response to experience. Neuroscientists broadly call this neuroplasticity.
Learning can strengthen or weaken connections between neurons, alter neural circuits and produce functional changes in the brain. Plasticity continues throughout life, although its nature and degree vary with age and circumstance.
So when you learn something, information isn't simply being placed into some biological SSD.
The system storing the information is itself being modified.
That's weird.
Imagine buying a computer where repeatedly running a difficult program gradually changed the processor so that it became better at running that program.
That's closer to what biological learning is like.
Think About Learning to Drive
The first time you drive a car, everything requires attention.
Check the mirror.
Clutch.
Gear.
Accelerator.
Steering.
Traffic.
Indicators.
Someone crosses the road and suddenly your brain has twelve things to process simultaneously.
A few months later, you can have a conversation while driving.
The car didn't become easier to operate.
You changed.
Processes that once consumed enormous conscious attention became increasingly automatic.
The same thing happens with typing.
When you first use a keyboard, you search for individual letters.
Eventually you think:
"I want to write this sentence."
And your fingers somehow produce it.
You aren't consciously issuing commands like:
Left index finger → move 2.3 cm → press F.
Thousands of movements have been compressed into learned patterns.
Programming Works the Same Way
Think about the first time you saw this:
for (let i = 0; i < arr.length; i++) {
console.log(arr[i])
}
Someone completely new to programming might have to understand almost every symbol.
What is let?
Why is i zero?
What does < mean here?
Why i++?
What is arr.length?
Why are there square brackets?
After enough programming, you don't consciously process most of that anymore.
You see:
loop through the array.
Several individual concepts have been compressed into one mental concept.
Then something interesting happens.
Because the basic operation has become cheap for your brain, you can think about something larger.
Instead of:
"How does this loop work?"
you think:
"Can I avoid looping through this twice?"
Later:
"What data structure makes this lookup cheaper?"
Later:
"How does this behave with ten million records?"
Expertise often looks like intelligence from the outside.
Sometimes it is.
But a huge part of expertise is simply that the expert has already compressed thousands of smaller problems.
Your Brain Builds Abstractions
This happens everywhere.
When you read this sentence, you probably aren't consciously decoding:
Y → O → U
You perceive the word:
YOU
And usually you don't consciously think about the word either.
You process the meaning of the sentence.
Layers of lower-level processing disappear beneath abstraction.
Computer science does something remarkably similar.
We don't normally think about electrons when writing JavaScript.
We don't think about transistors.
Then logic gates.
Then machine instructions.
Then assembly.
Then operating systems.
Then runtimes.
Then JavaScript.
We operate at whichever abstraction is useful.
Human expertise seems to work similarly.
A chess beginner sees individual pieces.
A strong player sees structures and patterns.
A beginner programmer sees syntax.
An experienced engineer sees systems.
A new driver sees pedals, mirrors and gears.
An experienced driver sees traffic.
Learning changes what level you are capable of thinking at.
This Changes How I Think About Talent
People obviously aren't identical.
Genetics matters.
Development matters.
Environment matters.
Different people begin with different advantages, limitations and predispositions.
But we sometimes take those differences much further than the evidence allows.
We see someone doing something effortlessly and conclude:
"They're naturally good at it."
What we don't see are the thousands of previous repetitions that made the current action look effortless.
The experienced programmer looks at a problem and immediately thinks:
hash map.
The beginner stares at it for twenty minutes.
That doesn't necessarily mean the experienced programmer's brain performed some magical computation unavailable to the beginner.
They may simply have encountered enough related problems that the pattern has become recognizable.
What looks like intuition is often compressed experience.
But Neuroplasticity Has an Uncomfortable Side
If your brain can adapt to useful behaviors, it can also adapt to useless ones.
Neuroplasticity isn't a self-improvement mechanism.
It doesn't ask:
"Will this make Tejas a better person?"
It responds to experience and activity.
Repeatedly practice playing piano and you can become better at piano.
Repeatedly practice solving algorithms and those patterns can become easier to recognize.
But repeatedly reaching for your phone whenever you're bored can also become automatic.
Repeated behaviors can become habits.
Repeated thought patterns can become easier to revisit.
The brain's adaptability can support beneficial learning, but neuroscience also recognizes maladaptive plasticity — changes that contribute to undesirable states or behaviors.
Plasticity itself is neutral.
The direction matters.
Your Environment Is Training You
This leads to an idea I find much more interesting than generic advice about motivation.
Everything you repeatedly expose yourself to is, in some sense, training data.
The people around you.
The problems you solve.
The things you read.
The videos you watch.
The conversations you have.
The activities you repeat.
None of these instantly transforms you.
But repeated experience changes what becomes familiar, what you notice, what you remember and what actions become automatic.
This is why environment matters so much.
Put yourself around people who build things and building becomes normal.
Spend your days solving difficult technical problems and difficult technical problems become less intimidating.
Speak another language every day and sentences that once required translation begin appearing automatically.
Your surroundings don't merely influence what you do.
Over enough time, they influence what kind of person finds certain things easy to do.
You Can Watch This Happen in the Gym
Fitness provides an unusually visible version of the same idea.
Lift weights today.
Almost nothing visually happens.
Do it tomorrow.
Still almost nothing.
Repeat the process hundreds of times.
Eventually your body is physically different.
The individual workout seems insignificant.
The accumulation isn't.
Learning is frustrating because its physical changes are mostly hidden from us.
You can't look in the mirror after studying algorithms and see:
+0.004% binary search.
But adaptation is still occurring.
The brain remains plastic throughout life, and learning and experience can modify its organization.
Maybe Identity Is More Temporary Than We Think
This makes statements like:
"I'm bad at this."
less useful.
A more accurate statement might be:
"My current brain isn't very good at this yet."
That's a very different claim.
One describes identity.
The other describes state.
And states can change.
This doesn't mean anyone can become anything.
There are biological limits, environmental constraints, time constraints and enormous differences between individuals.
Neuroplasticity isn't magic.
But it does mean the person attempting something for the hundredth time is physically not operating with exactly the same nervous system that attempted it the first time.
Experience has modified the system.
Humans Are Machines That Can Modify Themselves
In my previous article, I compared humans to biological machines.
The brain processes information.
Nerves transmit signals.
Muscles produce movement.
Bones provide structure.
Organs maintain the system.
But perhaps one of the most interesting properties of this machine is that using it changes it.
We learn.
We adapt.
We automate.
We build abstractions.
Things that once required intense concentration eventually become effortless enough that we can focus on something harder.
Then that becomes easier.
And we move another level upward.
So when I think about building things, I don't only think about software anymore.
I've built websites.
I've built CRMs.
I've built search engines.
I've built a company.
But there's another project underneath all of them.
The person capable of building them.
And unlike most projects, that one is never really finished.