Move all files and specific files from one directory to another using shutil module in Python

By Rohan Harish

In this tutorial, we will learn about moving files from one directory to another using Python’s shutil module. Here we make use of shutil.move() method to move files from sou.... Read More

How to print particular JSON value in Python

By Shrimad Mishra

Hi, everyone in this post we will learn how we can print particular JSON value in Python. what is the JSON file? JSON stands for JavaScript Object Notation and it is used to store .... Read More

C++ program to Count the number of subarrays having given XOR

By Sakshi Singh

In this tutorial, We will learn how to implement an efficient C++ program to count the number of subarrays having the given XOR. Consider an array A[] and a given number B, We have.... Read More

Reach a desired array in minimum steps with limited operations in Python

By Rohan Harish

In this tutorial, we are going to start with a zero array (that is an array/list of all zeros) and arrive at a desired array in Python by using a combination of two operations of e.... Read More

How To Handle Errors In JavaScript

By Anjan Nair

Finding and squashing bugs in complex codes sometimes is a really tedious task. Each code line needs to be analyzed to find the error. Instead of doing so, JavaScript has an easy y.... Read More

Analog stopwatch using Python turtle module

By Rohan Harish

In this tutorial, let’s build an analog stopwatch using Python’s turtle module. Let us have a circular representation of hours, minutes and seconds as distance traverse.... Read More

Clone and Run a Django Project from Github

By Shrimad Mishra

Hi, Everyone When we clone a Django Project from Github or we copy from anywhere, we are not able to run that project on our system. So in this post, I will tell you how to run tha.... Read More

Check For Safe Links With Nodejs and VirusTotal

By Anjan Nair

In this tutorial, you will learn to check for the safety of links with Node.js and VirusTotal. VirusTotal is used to analyze suspicious files and URLs to detect types of malware. V.... Read More