Apr 12, 2022
How does Ruby manage memory?
Each programming language has its version of memory management so, let us look into how Ruby does this under the hood.
Apr 7, 2022
Step-by-step guide to GSAP Library
With GSAP library, we can create beautiful animations using Tweens, ScrollTrigger, and Timelines
Apr 4, 2022
Employees maketh Businesses
How Saeloun runs with the help of its Employees and tries giving back
Mar 30, 2022
Rails 7 adds support for deferrable foreign key constraints in PostgreSQL
By default, foreign key constraints in PostgreSQL are checked after each statement. This works for most use cases but becomes a major limitation when creating related records before the parent record is inserted into the database.
Mar 29, 2022
Rails adds the ability to prevent unwarranted shard swapping
Rails provides the config option ActiveRecord::Base.prohibit_shard_swapping that prevents swapping of database shards.
Mar 24, 2022
Optimize large React app performance by code-splitting
Code-splitting helps divide large code bundles into smaller ones, which can then be loaded on demand. It helps in reducing the initial load time of the application.
Mar 23, 2022
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
Mar 22, 2022
Rails loads ActionCable via Zeitwerk
Zeitwerk is a new thread-safe code loader introduced in Rails 6. Now, ActionCable and other related modules are loaded via Zeitwerk.
Mar 17, 2022
ECMAScript 2022: Ergonomic brand check for private fields
ECMAScript 2022 provides a simpler way to check if an object has a given private field using the 'in' operator.
Mar 16, 2022
Rails 7: Action Text: forward form: option to hidden input
Add support for accessing the form as a property of the element.