This video’s explanation of where we’re at in our path of learning TDD changed my life. Don’t have to watch entire video, just 44:40 onwards.
Article: Expert Beginner
“How Developers Stop Learning: Rise of the Expert Beginner“
A reminder we should always be learning and questioning the status quo. I was an Expert Beginner at coding, Object Oriented Programming, and in Testing. I thought I was “done“. Thankfully 16 years later, I hated it again.
Continue reading “Article: Expert Beginner”Modular React Applications vs Piles on the Floor or Sock Drawer
10 years later, I still see the “Piles on the Floor” and “Sock Drawer” architecture in new React projects. I still prefer feature based folders (aka modularity) so code that’s related is next to each other.
https://cliffmeyers.com/blog/2013/4/21/code-organization-angularjs-javascript
Alternative to AWS Mock
I don’t think you need AWS Mock to test your Lambdas.
If you think you need it, it’s because you’re using global variables, or state, should be using dependency injection via stubs instead.