Finding hardware and system information in Linux is a handy and interesting task. We can extract Operating System details, user details, memory details, CPU details, and much more using simple python codes on Linux. Although we can perform many of …
Programming
-
-
PIP is the standard package manager available in python. Although Python’s standard library comes with many useful packages by default, we are not limited to only those packages. In python, we have a vast repository of packages at PyPI, which …
-
Logging is a crucial step to be performed by a programmer during software development. It helps developers to track events happening during the execution of a program, which can be helpful for the future debugging process. If you are a …
-
Anaconda is an open-source platform for data scientists working with python or R programming languages. It works as both a package manager and an environment manager, and you can create virtual environments and install packages very easily using it.
-
SQLite is a relational database management system based on the SQL language; it is a serverless, Zero-configuration database engine. It is one of the most popular database engines and very easy to be used in small applications. It creates only…
-
A database is one of the most useful and popular files for storing data; they can be used to store any kind of data, including text, numbers, images, binary data, files, etc. SQLite is a relational database management system based …
-
Loops are one of the essential elements in any programming language, and Python is not an exception to it. Loops are used to repeat a statement or a block of statements multiple times. If there were no concept of loops …
-
There are several situations when we want to work with the operating system using python. We may want to see the user details or want to do some tasks with the files and directories. If you are a system administrator, …
-
In this tutorial, we will show you the method to install multiple versions of GCC and G++ on Ubuntu 20.04 using the apt install command. Additionally, we will show you how to switch between various G++ and GCC versions using …
-
One of the significant entities we have in Cyber Security is Ethical Hacking (ETH). It is the process of detecting and finding flaws or vulnerabilities in a system that a hacker would exploit.