Rails

Rails 7 adds optional transaction arguments to with_lock

With Rails 7 we can pass transaction arguments like isolation, joinable, etc directly to with_lock.

Read
State Management

React State management - Part 2

Learn some of the inherent ways of managing state without using any external state management tool.

Read
amazon

Using Amazon Personalize to create a Recommendation System

A Step-By-Step Guide to Building a Recommender System using Amazon Personalize with its Similar-Items Recipe.

Read
Rails

Rails 7 adds caching? and uncachable! helper

Starting with Rails 7, we can add caching? helper to check whether the current code path is being cached and uncacheable! helper to avoid fragment caching.

Read
State Management

Different ways to handle state in React applications

Sometimes, it is better not to use any external state management tool unless our application is that complex. We can avoid complexities involved in state management using some of the inherent ways.

Read
State Management

Normalizing Redux state to ensure good performance in React apps

In complex applications, client apps have to store and manage a large amount of nested data, and if the data is not normalized, it can be incredibly time-consuming for a program to lookup nested data which could become a performance concern.

Read