All posts

My first 90 days as a tech lead (and the habit I had to break)

Published May 16, 2026 · by Majd Ghithan, written with the help of AI

My first 90 days as a tech lead (and the habit I had to break)

Three weeks into leading my first team, I stayed late to "help" by rewriting a junior's feature myself. It was faster my way. I pushed it, felt productive, went home. The next morning he asked, carefully, why I'd redone his work. I didn't have a good answer. I'd solved a two-hour problem and created a much bigger one: I'd just taught my best-motivated engineer that his work would get overwritten if I didn't like it. He never fully trusted a review from me again.

That was the day I understood the job had changed and I hadn't. Being the best engineer in the room got me the role. Keeping that identity was about to make me bad at it.

The keyboard is the trap

For years, my value was measurable in commits. Ticket in, code out. It felt good, and I was fast. So when I became lead, my hands kept reaching for the keyboard, because that's where I knew I was useful.

But here's the math that broke me out of it: if I write the hard code myself, the team ships one hard thing, mine, and four people learned nothing. If I coach four people through their hard things, the team ships four, and next quarter they don't need me for the fifth. Me at the keyboard is a bottleneck wearing a cape.

Letting go of the keyboard doesn't mean never coding. It means coding stops being where I create value. I still write code, but now it's the glue nobody else has time for, the spike to de-risk a decision, the boring plumbing, never the interesting core someone else could grow into.

Where the time actually goes

The hardest adjustment was watching my calendar invert. I went in expecting to code less. I did not expect this much less.

Where my week goes: senior IC vs tech lead
702553015301015Writing code (IC)Writing code (lead)1:1s & unblocking (IC)1:1s & unblocking (lead)Planning & design review (IC)Planning & design review (lead)Meetings & shielding (IC)Meetings & shielding (lead)
% of week

Nobody told me that unblocking other people would become a third of my job. A five-minute answer from me can save someone a day, and that trade, my five minutes for their day, is the single highest-leverage thing I do now. The instinct that says "I'm not doing real work unless I'm typing" is exactly the instinct that makes you a bad lead. Real work is now measured in what the team ships, not what I commit.

Building trust before spending it

The first 90 days, I spent almost nothing. No big reorg, no rewrite of "how we do things," no sweeping opinions about the codebase I'd barely read. New leads love to arrive and improve everything immediately. It reads as insecurity, and it torches trust you haven't earned yet.

Instead I asked and I listened. What's slow? What's scary to deploy? What's the thing everyone works around and nobody's fixed? I fixed a couple of small, real annoyances, the flaky test everyone re-ran, the deploy step everyone dreaded, and let that be my introduction. Small proof that I was here to make their day better, not to make the codebase mine.

The identity swap

The quiet grief nobody warns you about: you were great at a thing, and now you do less of it. My commit count dropped and for a while it genuinely felt like I was getting worse at my job. I had to consciously move my sense of worth from "what did I build today" to "what did the team build, and did I make it easier."

That reframe is the whole transition. As an IC, a good day is a hard problem solved. As a lead, a good day is a problem you never touched because someone you coached solved it without needing you. The first feels better in the moment. The second is the one that compounds.

What I'd tell myself on day one

Your job is no longer to be the best engineer in the room. It's to make the room better, which sometimes means letting a thing ship slightly worse than you'd have built it, so the person who built it grows. Sit on your hands. Ask before you fix. And measure the week by what happened at four other keyboards, not just yours.

🤖 Heads up: this post was drafted with AI. Spot something wrong or off?Edit it on GitHub & open a PR
Majd Ghithan

Majd Ghithan

Full-Stack Engineer & Tech Lead

More posts

Laravel finally resizes images for you

Laravel finally resizes images for you

Every Laravel app I've built that takes an avatar ended the same way: composer require intervention/image, wire up a facade, write a little service class, and hope the next dev…

July 26, 2026Read more
What actually breaks at 100,000 users (that never breaks in a demo)

What actually breaks at 100,000 users (that never breaks in a demo)

The first time I shipped a dashboard to a hundred thousand active users, nothing I had tested was what broke. Everything that failed had passed every check I ran. It worked on m…

July 25, 2026Read more
Where your queue jobs go to die under load

Where your queue jobs go to die under load

The support ticket said "I never got my invoice email." I checked the logs. The job ran. It succeeded. failedjobs was empty. Everything said the email went out. It did not.

July 18, 2026Read more
The indexes you're missing (and the one that's hurting you)

The indexes you're missing (and the one that's hurting you)

A client sent me a query that took 4.2 seconds. One WHERE, one ORDER BY, a table with three million rows. I added a single index and it dropped to 11 milliseconds. They asked if…

July 11, 2026Read more
Caching in Laravel without the stampede

Caching in Laravel without the stampede

We cached the homepage's "trending products" query for five minutes. It was our slowest query — about 900ms, a big aggregation across orders. Caching it took the homepage from s…

July 4, 2026Read more
Taking one endpoint from 800ms to 80ms

Taking one endpoint from 800ms to 80ms

The order-details endpoint took 800 milliseconds. Not broken, just slow enough that the app felt heavy everywhere it was used. The team's instinct was "the server needs more mem…

June 27, 2026Read more
The N+1 you can't see (it's hiding in your accessors)

The N+1 you can't see (it's hiding in your accessors)

I've fixed hundreds of N+1 queries. The easy ones are right there in the controller — a foreach with $order-customer inside it, obvious the moment you read the code. Those aren'…

June 20, 2026Read more
The Friday deploy that charged customers twice

The Friday deploy that charged customers twice

It was 4:40 on a Friday. The change was tiny — a one-line tweak to how we called the payment provider, plus a bump to the queue worker's timeout. Small, tested, reviewed. I depl…

June 13, 2026Read more
Code review people don't dread

Code review people don't dread

I once left forty-one comments on a junior's pull request. I was proud of it. Thorough, I told myself. The next day he barely made eye contact, and his next PR sat open for a we…

June 6, 2026Read more
Hiring a mid-level Laravel dev: the signals that actually matter

Hiring a mid-level Laravel dev: the signals that actually matter

The best hire I ever made failed my first question. I asked him to explain service containers and he stumbled, went quiet, then said "honestly I use them every day but I've neve…

May 30, 2026Read more
Saying no to a feature without being the 'no' person

Saying no to a feature without being the 'no' person

For about a year I was the engineer everyone learned to route around. Not because I was wrong, I was usually right, but because my answer to new ideas was a flat "no, that'll br…

May 23, 2026Read more
Breaking down the task that scares you

Breaking down the task that scares you

There's a specific kind of ticket that makes my stomach drop. Not the hard ones, hard is fine. It's the ambiguous ones. "Migrate billing to the new provider." "Add multi-tenancy…

May 9, 2026Read more
1:1s that aren't just status updates

1:1s that aren't just status updates

For my first few months as a lead, my 1:1s were thirty minutes of me asking "so, what are you working on?" and nodding at answers I already knew from standup. We both left sligh…

May 2, 2026Read more
Get the business logic out of your controllers

Get the business logic out of your controllers

I once opened a OrderController@store method that was 240 lines long. Validation, a discount calculation, three model writes, a Stripe charge, two emails, a Slack notification,…

April 25, 2026Read more
Form Requests are the most underrated thing in Laravel

Form Requests are the most underrated thing in Laravel

Most Laravel devs meet Form Requests once, in a tutorial, use them to hold a rules() array, and never look deeper. That's a shame, because a Form Request is the cleanest place i…

April 18, 2026Read more
Testing Laravel without mocking everything

Testing Laravel without mocking everything

I inherited a codebase once with 900 unit tests and no confidence. Every test mocked the repository, mocked the model, mocked the mailer, mocked the thing three layers down. The…

April 11, 2026Read more
Three Eloquent features that clean up your models

Three Eloquent features that clean up your models

The messiest Laravel model I ever wrote wasn't messy because of Eloquent. It was messy because I ignored the parts of Eloquent that exist specifically to keep it clean. The same…

April 4, 2026Read more
The migration that locked the table for eight minutes

The migration that locked the table for eight minutes

The deploy looked boring. One migration, adding a lastseenat column to the users table with a default of now(). I'd written a hundred like it. I ran it at 2pm on a Tuesday becau…

March 28, 2026Read more
Chasing a memory leak in a Laravel queue worker

Chasing a memory leak in a Laravel queue worker

The alert came in at 4am: one of our queue:work processes had been OOM-killed. The supervisor restarted it, it processed jobs for about forty minutes, and got killed again. It w…

March 21, 2026Read more