The easiest way to configure port for a spring boot application

By Subhojeet Ghosh

Spring boot web application runs on a default localhost port 8080 which can be changed or configured in many easy ways. Using Configuration Files: We can easily configure the port .... Read More

Scale image to fit screen in Pygame Python

By Karshin Uppal

Here in this tutorial, we will learn how to make an image fit the size of your pygame screen. Pygame is a widely used library in Python; Which is used for making games this in turn.... Read More

How to extract texts from a PDF file in PHP

By Varun Bhattacharya

Greetings programmers, in this tutorial we will see how to extract texts from a PDF file format in PHP. Often programmers need to extract texts from various forms of data to do var.... Read More

How to concatenate multiple vectors in C++

By Joyeeta Choubey

Hello Coders! In this tutorial, we are going to how we can concatenate multiple vectors in C++.   So there are many ways to concatenate multiple vectors. Let’s have a look .... Read More

Visualize the Different Color Channels of an RGB Image in Python using OpenCV

By Gaurav Jagwani

In this tutorial, we will learn to visualize different color channels of an RGB Image using OpenCV in Python. RGB (Red, Green, and Blue) model is the standard color model used in i.... Read More

Elementwise multiplication of two lists in Python

By Varun Bhattacharya

Hello programmers, in this tutorial we will see how to multiply two lists and get their product-wise elementwise in Python. There can be a possibility where the programmer may have.... Read More

How to remove blank lines from a .txt file in Python

By Sumit Chhirush

Hello programmers, in this tutorial, we will learn how to remove blank lines from a .txt file in Python. We can remove blank lines from a .txt file by using the strip() function. s.... Read More

Pygame screen.blit example

By Karshin Uppal

Here in this tutorial, we will learn how to use the blit() function in pygame with an example in Python. The blit() function in pygame is used when we want to copy one surface over.... Read More

Related Posts