Category Linux

Understanding Python len function

The len() function is a built-in function in Python that returns the length of a given object. The object can be a list, string, tuple or dict. The function returns an integer value which is the length of the object.…

2 Ways to test DNS Speed

DNS is a system by which a browser or other software converts a domain name to a IP4 or IP6 address. Each time we access a website the browser needs to convert the domain name to a IP4/IP6 address using…

2 ways to Create New User with home directory in Linux

This article is part of the following series.   In Linux, the home directory (also called “home” or “home folder”) is a directory designated for a particular user, where their personal files and configuration settings are stored. Each user on…