Jan 14, 2022
Cypress 9.2.0 will throw an error when a user attempts to update a read-only config value
Cypress will throw an error when a user attempts to update a read-only configuration value at run-time using either the Test Configuration or using Cypress.config().
Jan 13, 2022
Sneak peek into React 18 useDeferredValue hook
The useDeferredValue hook allows us to mark some tasks as less important, making the app feel more responsive, thereby improving the user experience.
Jan 12, 2022
Rails 7 adds better support for custom enum types in PostgreSQL
With Rails 7, use create_enum to add a new enum type and t.enum to add a column.
Jan 11, 2022
Ruby 3.1 adds Class#subclasses
Ruby 3.1's new method Class#subclasses returns all classes directly from the receiver without adding singleton classes.
Jan 7, 2022
Ins and Outs of Profit Sharing
We are delighted to announce our Profit Sharing process for 2022 for our Rails Consultancy. Here are some highlights from the process
Jan 6, 2022
What's New in Tailwind CSS v3?
Tailwind CSS v3 has released its version 3 with several new utilities and variants for a more improved workflow.
Jan 5, 2022
How to Use Enums in Rails
A deep dive into what enums are, how to create and configure enums using Rails.
Jan 4, 2022
PostgreSQL data-types in Rails
With Rails, there are many built-in data types that PostgreSQL supports. It's a great addition to the developer's toolkit!
Dec 30, 2021
Meet the new hook useSyncExternalStore, introduced in React 18 for external stores
The most significant update of React 18 comes with concurrent rendering. However, with the external store, there are some issues(tearing) that come up with concurrent rendering. To fix these issues, React 18 provides a new hook, useSyncExternalStore.
Dec 29, 2021
Rails adds `authenticate_by` method when using `has_secure_password`
Rails adds `authenticate_by` method that helps mitigate timing-based enumeration attacks.