Feb 22, 2022
Rails 7 introduces only_numeric option within numericality validator
With Rails 7, only_numeric option can be used for the numericality validator.
Feb 17, 2022
How to integrate Google Analytics with React JS application?
Step-by-step guide on setting up and adding Google Analytics to React application.
Feb 16, 2022
Ruby 3.1 adds error highlighting gem
With changes in Ruby 3.1, we will be able to know which object is nil when an error gets raised.
Feb 15, 2022
Rails drops records not listed in QueryMethods#in_order_of
QueryMethods#in_order_of now filters down to only the values provided, matching the behavior of the eponymous Enumerable method.
Feb 11, 2022
Cypress 9.3.0 added .selectFile() command to select files
Cypress introduced native support for file upload and selecting files in an HTML5 input element.
Feb 10, 2022
React State management - Part 2
Learn some of the inherent ways of managing state without using any external state management tool.
Feb 9, 2022
ActiveRecord::Core "#find" now reuses "#find_by" cache key
ActiveRecord::Core now prevents duplicate entries in find/find_by cache resulting in slightly improved performance.
Feb 8, 2022
Rails 7 raise ActionController::Redirecting::UnsafeRedirectError for unsafe redirects
Now unsafe redirects raise a UnsafeRedirectError instead of an ArgumentError.
Feb 8, 2022
3 Fundamental Design Principles that 99% Apps / Sites get wrong
Visual Contrast, Visual Hierarchy and Minimal design are 3 Design Principles that are missing or poorly implmented on Apps / Websites
Feb 4, 2022
Cypress 9.2.0 introduces a new environment variable 'CYPRESS_VERIFY_TIMEOUT'
Add the 'CYPRESS_VERIFY_TIMEOUT' environment variable to override the timeout duration of the verify command.