Convert HTML to PDF using Node.js

By HETVI JAIN

In this article, we will see how we will convert an HTML template to pdf in Node.js using a library called pdf-creator-node. We can download the pdf from our folder itself. Convert.... Read More

The pipe ( | ) operator in C++

By Harsh Singh

The pipe operator (|) in C++ is also known as bitwise or operator. The “bitwise or” operator (or pipe operator) in C++ takes two numbers as operands and checks their co.... Read More

Find n largest values of a NumPy array in Python

By Muskan Bani

In this post, you will learn how to find the n-largest values of a NumPy array in Python. Now, what should be the first step to get the number? We want our data or array to be sort.... Read More

Find object by key-value pair in an array of objects in JavaScript

By Samim

This tutorial will show you how you can find objects by id in an array of objects in JavaScript. We will use the Array.prototype.find() method and for loop to find the object. Usin.... Read More

Multiple If conditions in a list comprehension in Python

By Naman Maheshwari

Here in this tutorial, you’ll learn about multiple if conditions in Python list comprehensions. Multiple If conditions in a list Here you first need to understand li.... Read More

Python Program To Print Floyd’s Triangle

By Khushi Aswani

In this tutorial, we will have a look at a similar program to pattern printing which is commonly known by the name Floyd’s triangle in Python. It is undoubtedly a very common.... Read More

How to use numpy genfromtxt in Python with examples

By Khushi Aswani

In this tutorial, we will be learning how to use numpy genfromtxt in Python with some basic and simple examples. This tutorial is based on importing the CSV file in Python when we .... Read More

Find k-th missing element in increasing sequence in Java

By Dishi Jain

In this tutorial, we will see how to find kth missing element in an increasing sequence that is not present in a given sequence in Java. Finding the kth missing element in an incre.... Read More

Related Posts