Things I've found interesting...
Coding2Go does an amazing job at demonstrating the @starting-style CSS feature. Figuring out how to animate an element from being invisible to visible can be such a pain, and @starting-style is the perfect remedy (especially for modals!)!
Awesome video from Better Stack on optimizing your Docker images. He covers how important minimal base images (such as Alpine) can be for reducing build sizes/times, as well as layer caching and layer squashing. Well worth 7 minutes of your time!
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.
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!