Things I've found interesting...

How to Become an Expert at Programming

EscPoint does a great job outlining how important it is to not become dependent on LLMs for learning to code. A refreshing call to learn and master your fundamentals with intentional time and effort! Unfortunately (despite what AI tech bros might say), there's no shortcuts for mastery.

What ORMs have taught me: just learn SQL

Wozniak makes some interesting arguments about how ORMs can be more trouble than they're worth: over abstraction with little gain. Sometimes, writing performant queries with ORMs becomes so arduous that you're better off just writing the query!

CORS: What is it protecting?

An awesome blog post about how CORS works and how it impacts request security between the frontend and backend. I love the worked examples of CORS vs CSRF, an awesome resource for juniors and a lovely refresher for more senior folk.

PHP The Right Way

I've been looking to touch up on latest best practice for PHP and was lucky enough to stumble upon this. From code style and security, to dependency management and deployment: this site has it all, completely for free!

Next Previous