Use Ruby getter methods over instance variables for clearer errors and easier debugging
Use Ruby getter methods over instance variables for clearer errors and easier debugging
What is method gravity? What I call Method Gravity means for me: The bigger the method the more new lines of code will be added to it. I noticed this while working on various ...
I read this article about DRY and this prompted me to write some thoughts about this. This was a very debated article about what is DRY and what it means to use it or not and th...
Context You need to design some routes with the following properties: you need to do some computation in the backend they are idempotent: every time you call the route with the...