
Authentication with Bcrypt
Jul, 2022
Implementing simple authentication in rails with Bcrypt, a hashing algorithm designed to secure passwords.
Jul, 2022
Implementing simple authentication in rails with Bcrypt, a hashing algorithm designed to secure passwords.
Jun, 2022
ViewComponent is an open-source framework built by Github to create reusable, testable, and encapsulated view components in rails. Let's see what this means by refactoring rails views using this pattern.
Feb, 2022
Part V of the series - Understanding Active Record joins - How can we join polymorphic associations?
Nov, 2021
In this article, I will share how to implement pagination without gems. It covers the most common scenario: paginating an ActiveRecord collection and preparing the pagination metadata needed to build a simple frontend component.
Oct, 2021
Starting new rails apps has never been easier for me. Here's why and how.
Jul, 2021
Tempfiles provide a flexible, explicit, and maintainable way of testing different upload scenarios.