| by Arround The Web

Nano or Vim: Which is the better text editor for Linux?

Compare Nano and Vim, two prominent Linux text editors, in this concise guide. Learn about their features, user-friendliness, and customization capabilities to determine which editor best suits your programming and text editing needs in the Linux envir…

Read More
| by Arround The Web

Managing Docker Volumes Using Docker Compose

To manage the volume using Docker Compose, utilize the “volumes” key also specify the volume type, volume source, and target path.

Read More
| by Arround The Web

How to Configure Network IP Connections Using ‘nmcli’ in Linux

In this tutorial, we’ll demonstrate how to configure your network connections using nmcli. This saves you time, boosts your confidence, and allows integration into scripts.
The post How to Configure Network IP Connections Using ‘nmcli’ in Linux a…

Read More
| by Arround The Web

Yum vs. Dnf: Choosing the right package manager for Linux

This article offers a comprehensive comparison between yum and dnf, two key package managers in the Linux ecosystem. Delve into their functionalities, performance aspects, and unique features to determine which package installer aligns best with your L…

Read More
| by Arround The Web

Python String Join() Method

The “string.join()” method of Python is utilized to join/concatenate any given sequences or iterable elements into a string with a custom separator value.

Read More
| by Arround The Web

Python String format_map() Method

The “string.format_map()” method retrieves the formatted string by mapping the specified dictionary key value with the particular string.

Read More
| by Arround The Web

How to Find the IP Address of a Docker Container?

To find the IP address of container, use “docker inspect cont-name”, “docker network inspect network-name” command, or read the “/etc/hosts” file of container.

Read More
| by Arround The Web

Python String find() Method

In Python, the inbuilt “string.find()” method retrieves the first instances of the provided substring in the specified string.

Read More
| by Arround The Web

Python String Concatenation Examples

The “+” operator, “%” operator, “join()” method, “format()” method, “format_map()” method, and other methods are used to concatenate strings in Python.

Read More
| by Arround The Web

Docker exec -it

The “docker exec -it” is used to access the container shell interactively. The “docker exec” command also supports different options to behave differently.

Read More
| by Arround The Web

Python String capitalize() Method

The “string.capitalize()” method is utilized in Python to capitalize the first letter of the string and to convert all other characters to lowercase letters.

Read More
| by Arround The Web

Python Platform Module

The “platform” module in Python retrieves information such as system processor name, machine type, platform information, and others.

Read More
| by Arround The Web

Python os.getcwd() Method | Explained With Examples

The “os.getcwd()” method of the “os” module is utilized to retrieve the current/present working directory path or location where the Python script is executed.

Read More
| by Arround The Web

Python OS Remove

In Python, the “os.remove()” method is utilized to remove/delete the particular file or multiple files placed at the specified path.

Read More
| by Arround The Web

Deploy Apache Kafka using Docker Compose

To deploy Kafka, configure Kafka and zookeeper service in “docker-compose.yml” file. After that, start Apache Kafka using the “docker-compose up” command.

Read More
| by Arround The Web

Shotwell updated to 0.32.3 with Some Fixes

Shotwell photo viewer and organizer released new 0.32.3 version a day ago with minor updates. The release came with some bug-fixes and minor changes, they include: Fix asking twice on closing viewer with modified image Do not try to reload photo on shutdown Do not abort if new thumbnail size does not exist Open fullscreen […]

Read More
| by Arround The Web

How do I Uninstall Docker Desktop From Computer

Remove Docker desktop from Windows using “Apps & features” settings. On Mac, remove the app from troubleshooting settings, and on linux, run “sudo apt remove”.

Read More
| by Arround The Web

SciPy Exponential Distribution

The “scipy.stats.expon” module of the “scipy” is used to work with the exponential distribution,  which is a type of continuous probability distribution.

Read More
| by Arround The Web

Enabling Bluetooth on Arch Linux

Bluetooth not working on Arch Linux? Here’s what I worked for me along with a few additional tips on troubleshooting Bluetooth issue on Arch.

Read More
| by Arround The Web

Xiaomi Vela IoT Platform Is Being Open-Sourced Based on NuttX Real-time OS

At the Xiaomi IoT Green Partner Conference 2023, as spotted by Gizmochina, the plan to open-source the Xiaomi Vela IoT platform is announced. This should result in more developers joining, using, and improving the code as necessary.
The post Xiaomi Vel…

Read More