Benjamin Crozat's banner
Benjamin Crozat's profile picture

Benjamin Crozat

@benjamincrozat7,744 subscribers

Dad. Freelance Laravel developer. I used to blog to 100K devs/mo. Now, attention is all you need.

Shorts

Not relying on a LLM in your code editor? That doesn't make you smarter. All the opposite actually. You're actively refusing to increase your productivity and buy your time back for the sake of outdated habits. Because at the very least, a LLM helps you write tons of boilerplate/mundane code. If you don't want to pay, there are free alternatives to GitHub Copilot. You have no excuse. Don't be that grumpy developer who thinks being negative about trendy tech is cool.

Not relying on a LLM in your code editor? That doesn't make you smarter. All the opposite actually. You're actively refusing to increase your productivity and buy your time back for the sake of outdated habits. Because at the very least, a LLM helps you write tons of boilerplate/mundane code. If you don't want to pay, there are free alternatives to GitHub Copilot. You have no excuse. Don't be that grumpy developer who thinks being negative about trendy tech is cool.

61,752 просмотров

I'm trying to make a modern debug bar for Laravel. It's a super early concept, I have innovative ideas to try that will make the debug bar a true coding companion. I'd love to share more later if anyone is interested. For now, I'm just trying to improve the UI by reimplementing the basic features everyone, no matter their level, needs.

I'm trying to make a modern debug bar for Laravel. It's a super early concept, I have innovative ideas to try that will make the debug bar a true coding companion. I'd love to share more later if anyone is interested. For now, I'm just trying to improve the UI by reimplementing the basic features everyone, no matter their level, needs.

21,310 просмотров

I like my Laravel seeders fast. I use recycle() to dodge N+1 model creations. Another trick: when a model needs an image saved on disk, generating a unique one for each record is painfully slow. And honestly, images aren’t immediately essential. So I dispatch that work to a job. My local projects always run Horizon, so images get generated in the background while I keep coding. A local environment you can reset instantly with random data is a game-changer.

I like my Laravel seeders fast. I use recycle() to dodge N+1 model creations. Another trick: when a model needs an image saved on disk, generating a unique one for each record is painfully slow. And honestly, images aren’t immediately essential. So I dispatch that work to a job. My local projects always run Horizon, so images get generated in the background while I keep coding. A local environment you can reset instantly with random data is a game-changer.

10,488 просмотров