Python | Best Frameworks of Python 2022

Python | Best Frameworks of Python 2022

In this article, we will discuss in brief various very important and popular frameworks of Python, which is a highly demanded and effective language in programming. Python contains so many libraries and frameworks that it’s impossible for a human to get a good grasp over all of them (exceptional are always here :P). Python is … Read more

How to Generate a Random Letter Using JavaScript

How to Generate a Random Letter Using JavaScript?

In this article, we will learn about how to generate a random letter from the alphabets using vanilla and simple JavaScript. Here, the code will consist of two things, q string that contains each letter of the alphabet you can randomly select from and an expression that randomly selects one of the characters from the … Read more

Removing array items from END until given condition is false using Lodash

Removing Array Items Using Lodash's _.dropWhile() from end

In today’s article, we will learn about how to remove array elements from the last until a specified condition is not satisfied in an array. To do so we can use _.dropRightWhile() function of lodash in JavaScript. About Lodash’s .dropRightWhile() Method Similar to the Lodash’s dropWhile() function, this function is also used to return the … Read more

CSS Pure Number Counter Animations

Number Counter Animations with CSS & HTML

In this tutorial, we will see how to create number counter animation using pure CSS without using JavaScript. A number counting animation is one of the useful text animations to put up on the webpage. You may easily find many other tutorials online that have implemented the animation on number counter using the JavaScript/jQuery but, … Read more

Pure CSS Typing Text Effects & Animation

Pure CSS Typing Text Effects & Animation

Beautiful texts and typography makes web pages look attractive. In web design & development, with CSS we can add various effects in text or typography of your website. With CSS, you can use text clipping and add effects & animation to text to spice things up a little and make them interesting. To illustrate the … Read more