How I decide to pass on a parameter within a component.
Why I chose to explicitly pass the tag parameter in LinkComponent.
Apr 23, 20242 min read188

Search for a command to run...
Articles tagged with #refactoring
Why I chose to explicitly pass the tag parameter in LinkComponent.

Writing code is a journey of continuous improvement, learning, adaptation, and, yes, refactoring. As our applications grow and evolve, we often find ourselves revisiting and rethinking our code to make it more maintainable, scalable, and flexible. To...

A Light-Hearted Guide to Improving Your Ruby on Rails Code with Simple Refactoring Techniques

In Rails applications, N+1 queries can cause significant performance issues. They occur when you have a list of items and perform a separate query to retrieve associated data for each item. This can result in poor performance, and even more so if the...
