Who here has ever freelanced?
Who's going into a company instead?
Keep your hand up if you shipped something this month you couldn't debug yourself.
Most hands stay up. Same talk either way.
Take the internship if you're starting. Six months in a real company beats a year of tutorials.
Same engineer. Same work.
Different opening price.
I learned what I was really paid for on my own name, years before I learned it on my rate.
AI didn't replace freelancers.
It replaced everyone who was only selling execution.
// "Only an admin can delete a project" export async function DELETE(req, { params }) { const token = await getToken({ req }); if (!token || token.role !== 'admin') { return new Response('Forbidden', { status: 403 }); } await Project.findByIdAndDelete(params.id); }
It compiles. It reads beautifully.
Hands up.
The role was signed at login.
Revoke that admin and the token still works until it expires. And the id reaches the query uncoerced.
The model didn't fail you.
You had no way to tell.
You prompt, it ships, and you can't explain your own code. The first real error ends you, and nobody stays convinced by you for long.
You decide what gets built. It writes, you judge, you fix. Your taste is the product, and it travels to anything you point it at.
Same tool. The difference is whether your brain is switched on.
I build with an agent I wrote myself. I still type the code, because I like the sound of the keyboard. The tool is fast. The direction is mine.
Can you lose 15 hours to one error and feel like it was five minutes?
Then this is your field.
Everyone else is chasing the trend and the money. You have to love it to be creative in it, and the money arrives behind the creativity, never in front of it.