There is one thing that he points out that I really like. Reducing the cognitive load on developers. Everyone is all about teaching developers about security. That is a good idea. But if we can give developers some security features for free even better.
An underrated aspect of AppSec and Secure Coding is not exposing the insecure functionality in the first place.
Let's say you have a XML parsing library that may be used by devs wrongly/insecurely. By disabling certain functions in the library, its not vulnerable to XML Injection anymore
Instead of constantly training them to figure out security params, having a wrapper library (custom) that automatically disables insecure functionality is way more effective.
It's:
* easier to use
* easier to enforce (in SAST, CI, SBOM, etc)
* easier to train on
* reduces cognitive load for devs in the long run
* and more secure
Keep it simple.