DevOps and Development

How to Use Bash until Loop

August 2, 2023

The until loop is a useful construct for automating repetitive tasks in scripting. This tutorial shows how to use the until loop and provides practical examples.

Read more

How to Change Working Directory in Python

August 1, 2023

Learn how to check the current working directory and change the location in this simple Python guide.

Read more

Kubernetes Operators: Everything You Need to Know

July 27, 2023

Although Kubernetes already offers many features to help working with containerized applications, the standard installation may not be enough for the users that depend on more use-case-specific features. This guide will introduce Kubernetes operators and the ways in which they can improve the essential Kubernetes experience.

Read more

How to Install OpenCV on Ubuntu


This article explains how to install OpenCV in Ubuntu 20.04 and 22.04 in 4 different ways. Use OpenCV to power your machine learning and computer vision projects.

Read more

How to Use sed Command to Delete a Line

July 20, 2023

This article explains how to use sed to delete a line in a text file. Also, find out how to use patterns and conditions to delete multiple lines of text with a single sed command.

Read more

How to Set up Kubernetes Ingress with MicroK8s

July 18, 2023

Kubernetes Ingress enables simpler load balancing, service discovery, and external connectivity management. This article teaches you to set up ingress in a MicroK8s Kubernetes cluster to test how it works and prepare for applying it to your production cluster.

Read more

How to Write to File in Bash

July 17, 2023

This guide shows four different methods for writing data to a file in Bash. See examples for each method and elevate your scripting skills.

Read more

How to Fix the "python: command not found" Error

July 13, 2023

This tutorial provides multiple solutions for resolving the python: command not found error in Linux. The solutions include installing Python and editing symlinks and PATH variables.

Read more

How to Use Shebang in Bash Scripts


The shebang line is the first line of a script that instructs the OS which interpreter to use to execute the script. This tutorial shows how to use the shebang line in Bash.

Read more

How to Change Git Commit Message

July 11, 2023

Git is a version control system that allows users to track changes in their code. One of the available features is the ability to change a Git commit message, and this step-by-step guide shows how to do that.

Read more
1 7 8 9 10 11 46