efficiency

Are templates bad?

2020-04-28

I'm a person who is continuously trying to find more efficient ways to write code. I'm also not a person who is great at remembering all the syntax of a given language, so I often build templates. At work we have some boilerplate functions that read and write values to the redux global state, and **writing it all from scratch in addition to the react function boilerplate every time is wildly inefficient**.

... Read More