All posts

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

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

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 break things," and after enough of those, people stop bringing you the idea. They just build it without you. Being right and being ignored turn out to be very compatible.

The problem wasn't my judgment. It was that "no" ends the conversation, and the conversation was the only place my judgment could actually help.

"No" protects the code and loses the room

Every "no" is defensible in isolation. This feature adds a query to a hot path. This one couples two modules that should stay apart. This one is a two-week build dressed up as a "quick toggle." All true.

But a stakeholder doesn't hear your reasoning. They hear a door closing. And a person who keeps closing doors gets worked around, not consulted, and now the bad features ship anyway, just without your input on the least-bad way to build them. You protected the codebase right out of the decision.

The "yes, if…" reframe

The move that changed everything for me was refusing to end on "no." Almost nothing is a real no. It's a "yes, if we accept the cost." So I say the yes, then make the cost visible, and hand the tradeoff back to the person who owns it.

Ends the conversation
No, we can't add real-time notifications. It'll wreck performance and it's not worth it.
Keeps you in it
Yes, we can do real-time notifications. It's about a week, and it adds a websocket service we'll have to run and monitor. Or: 2 days for near-real-time with polling, good enough for most users. Which fits this quarter better?

Same engineering opinion. But the right-hand version keeps me in the decision instead of standing outside it. I'm not the obstacle anymore, I'm the person who mapped the road. And nine times out of ten, once someone sees the real cost, they pick the cheaper option themselves. I didn't have to say no. I just made the price legible and let them do the math.

Make the tradeoff theirs, not yours

Here's the reframe underneath the reframe: it's not my job to decide whether a feature is worth its cost. It's my job to make the cost accurate and visible, so the person who owns the priority can decide with real information.

When I say a flat "no," I'm quietly stealing that decision. I'm substituting my judgment about business value for theirs, on the one axis where they actually know more than me. When I say "here's the cost, here's a cheaper path, your call," I've done my actual job, engineering truth, and left the business call where it belongs.

The honest no still exists

Some things are still a real no, and softening those into a "yes, if" is its own kind of dishonesty. "Yes, we can store passwords in plaintext, if we accept a breach" is not a tradeoff I offer. Security, legal exposure, data loss, ethics, those aren't priced options on a menu. For those I say no clearly and I own it.

The trick is that those are rare. Maybe one in twenty. When you stop spending your "no" on the nineteen that were really "yes, if," the twentieth lands with full weight. People know that when this engineer says no, it's not a mood or a reflex, it's a wall. That authority is exactly what you burn through by saying no to everything.

The real shift

I used to think my value was catching bad ideas before they shipped. Now I think my value is making the true cost of every idea visible early, so the people who own priorities make better calls, and keep bringing me the next one.

"No" makes you a checkpoint people learn to avoid. "Yes, if…" makes you the person they bring the hard ones to on purpose, because you're the one who tells them what it actually costs before they're committed. One of those roles gets routed around. The other one gets a seat at the table. I spent a year in the first before I figured out they were a choice.

🤖 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
My first 90 days as a tech lead (and the habit I had to break)

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 m…

May 16, 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