Let’s Make a QR Code Generator With a Serverless Function!

QR codes are funny, right? We love them, then hate them, then love them again. Anyways, they’ve lately been popping up again and it got me thinking about how they’re made. There are like a gazillion QR code generators out … Let’s Make a QR…

10 Best ReactJS Practices For a Good React Project

React is an Open-Source JavaScript library used to build (UIs)User Interfaces. It is the future of web creation with its extra versatility and ease. Since… Read More
The post 10 Best ReactJS Practices For a Good React Project appeared first on GeeksforGeeks. …

DSA Internship Hiring Challenge For Freshers By GeeksforGeeks

Are you someone who’s passionate enough to grow a career in DSA? But couldn’t find a platform to proceed. No worries!!! GeeksforGeeks, have come up… Read More
The post DSA Internship Hiring Challenge For Freshers By GeeksforGeeks appeared first on GeeksforGeeks. …

Why Array.length() gives error when used in Java

What will happen if we use Array.length()? Before moving to the reason why we cannot write Array.length(), let us first see what will happen if… Read More
The post Why Array.length() gives error when used in Java appeared first on GeeksforGeeks. …

How exactly does indexing works in Arrays?

First, let’s understand arrays, It is a collection of items stored at contiguous memory locations. The basic idea is to store multiple items of the… Read More
The post How exactly does indexing works in Arrays? appeared first on GeeksforGeeks. …

3 things we’re most excited about Apple’s new MacBook Air

Apple has introduced a redesigned MacBook Air powered by the new M2 chip. The M2 chip is the second generation of Apple’s M-series chips and extends the features of the M1. Let’s run through what we are most excited about the brand-new laptop. 1. A…

Representation Change in Transfer and Conquer Technique

Representation Change is one of the variants of the Transfer and Conquer technique where the given problem is transformed into another domain that is more… Read More
The post Representation Change in Transfer and Conquer Technique appeared first on GeeksforGeeks. …

Minimize steps to create given Array by adding powers of 2

Given an array A[] having N positive integers, the task is to find the minimum number of steps to build this array from an initial… Read More
The post Minimize steps to create given Array by adding powers of 2 appeared first on GeeksforGeeks. …

Gulpfile Setup

Gulpfile Setup using gulp.js Introduction to gulp.js What is gulp? According to their homepage (gulpjs.com), it’s a toolkit to automate & enhance your workflow. What exactly does that mean? Well, for medium to large-sized projects you may want to have a folder…
The post Gulpfile Setup appeared first…