## Notes
*3 times or more* is a personal coding suggestion that I follow when I want to refactor or deduplicate code.
It's easy to fall into a trap of putting everything into its own file for the sake of making each function or snippet reusable. On the other hand, it's also easy to fall into another trap of not deduplicating everything and letting a monolith develop. This suggestion is an attempt at finding a middle ground at keeping code [[DRY]].