authorImg Chetan Gawai
authorImg Chetan Gawai

I am a Javascript and React enthusiast, and I absolutely love writing technical blogs. There's just something about the process of breaking down complex concepts and sharing my knowledge with others that really excites me. In my free time, I enjoy exploring my other passions, such as painting, gardening, cooking, and managing my food blog.

ECMAScript 2022 introduces at() method in Array, String, TypedArray

The at() method takes an integer value and returns the element at that index. It allows both positive and negative integers. Negative integers denote counting back from the last item in the array.
authorImg Swaathi Kakarla
authorImg Swaathi Kakarla

Swaathi Kakarla is a Ruby on Rails Developer.

Rails adds support for Fiber-safe ActiveRecord ConnectionPools

ActiveRecord's ConnectionPool is now fiber-safe! Adjust the value of config.active_support.isolation_level to either rely on threads or fibers to give a better throughput on fiber-oriented servers like Falcon.
authorImg Akash Kale
authorImg Akash Kale

Akash is a User Experience Designer.

Part 1- Redesigning Saeloun's Website (Messaging)

Redefining target audience, brandscript, and overall messaging of our website.
authorImg Agnidipta Bhattacharjee
authorImg Agnidipta Bhattacharjee

I am a technical content writer with over 2 years of experience in creating clear, concise, and engaging content for a wide range of industries, including software development, IT, and engineering. In my role as a technical content writer, I have produced a vast array of content, including user manuals, online help files, blog articles, whitepapers, and case studies. When I am not writing, I enjoy pursuing my hobbies like travelling, hiking, adventure sports, and reading. I am an avid reader of technology news and enjoy keeping up-to-date with the latest trends and developments in the tech industry.

Rails 7 introduces only_numeric option within numericality validator

With Rails 7, only_numeric option can be used for the numericality validator.
authorImg Agnidipta Bhattacharjee

I am a technical content writer with over 2 years of experience in creating clear, concise, and engaging content for a wide range of industries, including software development, IT, and engineering. In my role as a technical content writer, I have produced a vast array of content, including user manuals, online help files, blog articles, whitepapers, and case studies. When I am not writing, I enjoy pursuing my hobbies like travelling, hiking, adventure sports, and reading. I am an avid reader of technology news and enjoy keeping up-to-date with the latest trends and developments in the tech industry.

authorImg Chetan Gawai

I am a Javascript and React enthusiast, and I absolutely love writing technical blogs. There's just something about the process of breaking down complex concepts and sharing my knowledge with others that really excites me. In my free time, I enjoy exploring my other passions, such as painting, gardening, cooking, and managing my food blog.

How to integrate Google Analytics with React JS application?

Step-by-step guide on setting up and adding Google Analytics to React application.
authorImg Alkesh Ghorpade
authorImg Alkesh Ghorpade

I am a seasoned developer with over 9 years of experience in Ruby on Rails and Golang. My passion lies in tackling complex data structures and algorithm problems, always pushing myself to learn and grow. In my downtime, I find solace in the pages of books and the soothing sounds of a guitar. But I'm not just a one-trick pony! I love to stay active and challenge myself in other ways too. Whether it's on the football pitch, cricket field, table tennis table, or badminton court, I'm always up for some fun activities.

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.
authorImg Swaathi Kakarla
authorImg Swaathi Kakarla

Swaathi Kakarla is a Ruby on Rails Developer.

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.
authorImg Apoorv Tiwari
authorImg Apoorv Tiwari

Apoorv is a Ruby on Rails and React Developer.

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.
authorImg Murtaza Bagwala
authorImg Murtaza Bagwala

A passionate full stack software engineer having 7 years of experience in building scalable enterprise systems. I have worked predominantly with the JVM and Javascript ecosystem but currently exploring Rails. For me, software engineering is all about solving problems in the most optimal way. I am an avid practitioner of clean code practices and love to read about System Design and Architectures. When I am not coding I love to play playstation, read anything about aviation or go out for a long drive and of-course I am foodie by heart.

React State management - Part 2

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

Swaathi Kakarla is a Ruby on Rails Developer.

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.