How to find IP Address of any url using Java

By Mayank Garg

In this program, We will find the IP address of any URL in java. We will use many methods that get the host address of any URL. A few things are a must in this program. getHostAddr.... Read More

Get meta tags of a web page in PHP

By Faruque Ahamed Mollick

In this article, I am going to show you how to extract all meta tags of a web page in PHP. After we get meta tags of a web page, we are going to get the specific meta content by it.... Read More

Create Hangman game in python with random popular English word

By Purnendu Das

Hi, today we are going to learn a very interesting and popular game in the Python programming language. Name of the game is Hangman game. I think at a time almost everyone played .... Read More

Fitting dataset into Linear Regression model

By Purnendu Das

Hi, today we will learn how to extract useful data from a large dataset and how to fit datasets into a linear regression model. We will do various types of operations to perform re.... Read More

How to print items from a list with specific length in Python

By Saruque Ahamed Mollick

This tutorial will focus on how to print items from a list with a specific length in Python. So our goal will be as follows: We have a list with some items in it. We need to filter.... Read More

How to add items to a list from a text file in Python

By Saruque Ahamed Mollick

Hello Python learners, today in this tutorial I will show you how to add items to a list in from a text file in python. Or you can say, with this tutorial you will learn how to add.... Read More

How to remove \n from list elements in Python – last character new line

By Saruque Ahamed Mollick

Hello Python learners, in this Python tutorial, you will learn how to remove the last character \n from list elements in Python. In some situation, you will face the problem that, .... Read More

How to serve HTML and CSS files using express.js

By Richa Tripathi

Writing a whole code in JavaScript file is a mess and not a maintainable. As a good developer, we have to write maintainable code which can be maintained by developers easily in th.... Read More

Related Posts