
Jan 18, 2021
Python Tuples
This article will walk you through the basics of Python tuples. Tuples are similar to lists, with the main difference being that the lists are mutable while the tuples are immutable.
Read more

Jan 11, 2021
Find and Replace in Vim / Vi
Find and replace is a powerful feature of Vim, which allows you to make changes to your text quickly.

Jan 4, 2021
Bash: Write to File
This article explains how to write text to a file in Bash, using the redirection operators and tee command.

Dec 29, 2020
Bash read Command
read is a bash built-in command that reads a line from the standard input (or from the file descriptor) and split into words.
Dec 23, 2020
Listing Linux Services with Systemctl

Dec 16, 2020
How to Use the nmap Command

Dec 9, 2020
Chattr Command in Linux (File Attributes)

Dec 3, 2020
How to Install PHP 8 on Ubuntu 20.04

Nov 30, 2020
Basename Command in Linux

Nov 25, 2020
How to Convert Integer into String in Python
