How to get a Snowfall Effect in background using CSS

By Saurabh Singh

In this tutorial, I will show you how easily you can get the effect of snowfall in the background of your HTML page. I’m styling it inside a head tag in a style tag. In the body.... Read More

How does carriage return “\r” work in python

By Saruque Ahamed Mollick

In this Python tutorial, we will learn how does carriage return “\r” work in Python. A carriage return is a special type of escaping character. Many of the Python learn.... Read More

How to show month name in PHP?

By Faruque Ahamed Mollick

PHP has a date function that we can use to show the date. The PHP date() function can take different types of format and display date depending on that format. Using the date() fun.... Read More

How to find Maximum Pairwise Product in Java using Naive approach

By Saurabh Singh

In this Java tutorial, we will learn how to find the maximum pairwise product using Java. Maximum Pairwise Product in easy words you can say that it is the product of those two num.... Read More

Frequency of Repeated words in a string in Java

By Saurabh Singh

In this Java tutorial, we are going to find the frequency of the repeated words in Java. In order to do this, we have taken a sentence and split it into strings and compare each st.... Read More

How to delete a file in Python with examples

By Saruque Ahamed Mollick

In this tutorial, we will learn how to delete a file in Python. We will be using the below methods: os.remove os.unlink Using os.remove to delete a file from a directory in Python .... Read More

How to read a specific line from a text file in Python

By Saruque Ahamed Mollick

This tutorial is going to show you how to read a specific line from a text file in Python using two different ways. In the first example, we will see how to perform this task using.... Read More

Working with HashMap (Insertion, Deletion, Iteration) in Java

By vikrant_tomar

In this Java tutorial, we will learn working with HashMap in Java. A map is an object that stores information as a key- value pair. Given a key, we can find its value. Key and valu.... Read More

Related Posts