
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?
Jan, 2022
Postgres has a really handy schema from which you can retrieve information about your database. Here's how you can use it to get all tables with a specific column name, and when this might be useful.
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
In this post, I'll share the main difference between #tap and #then, with specific use cases.