BLOG

Latest Articles

Python startswith() method explained [Easy Examples]

The Python startswith() method returns True if the string starts with the specified value, otherwise False. If we will not specify the starting position of the …

By bashiralam · 8 min read · Python

Set Static IP in Rocky Linux [6 Different Methods]

6 different methods to configure and set static IP Address in Rocky Linux. Use nmtui, nmcli, ifcfg, ip and ifconfig utility to configure static IP address

By admin · 11 min read · Network

Numpy random Examples | rand() | randint() function

The Numpy random method in Python helps us to create random numbers. You can use random.rand(), random.randint(), random.uniform() function to generate random …

By bashiralam · 10 min read · Python

How to use git revert properly [4 Different Ways]

To revert or undo in git is facilitated by the git revert function. git revert command provides a unique way of undoing changes to a specific commit while …

By admin · 9 min read · GIT