Atul Rai
I love sharing my experiments and ideas with everyone by writing articles on the latest technological trends.

React useRef Hook

In this blog, we will explore the useRef hook, understand its usage in applications, and create some real-world examples. The […] Continue reading »

Exploring React useContext Hook

The useContext hook is a built-in React hook that facilitates the sharing of data between components without relying on props […] Continue reading »

How to remove vertical line from editor pane in IntelliJ IDEA

In IntelliJ IDEA, you might notice there is an annoying vertical line appearing in the code editor pane. P.S. Tested […] Continue reading »

Java 8- Find the nth Highest Salary

In this short article, you will learn how to find the nth highest salary of an employee using Java Streams […] Continue reading »

Java Collections.min() and Collections.max() Methods

In this article, we will explore min() and max() methods of the Collections utility class. In Java, the Collections class […] Continue reading »

Git Pull vs Fetch

Understanding the Difference Between Git Pull and Fetch: In this article, we’ll explore the differences between git pull and git […] Continue reading »

Git Merge vs. Rebase

Git merge and rebase are two different approaches to combining changes from one branch into another. 1. Git Merge When […] Continue reading »

Spring Boot application.properties vs. application.yml

application.properties and application.yml both are the configuration files used in Spring Boot to configure application-specific properties. The main difference between […] Continue reading »

Git Top Daily Life Usage Commands

In this blog, we’ll explore the top most popular Git commands that developers use on a daily basis. 1. git […] Continue reading »

React useEffect Hook Example

In React, components are the building blocks of user interfaces, and they can have side effects outside the rendering process. […] Continue reading »

React useState Hook Example

In this blog, we will learn the useState hook and explore its features and benefits with examples. The useState hook […] Continue reading »

1 6 7 8 9 10 42