Articles on Trending Technologies

Technical articles with clear explanations and examples

How to Install and Configure MariaDB on Ubuntu?

Mead Naji
Mead Naji
Updated on 21-Nov-2024 275 Views

MariaDB is one of the most popular relational database systems out there that can be used to store data. MariaDB is a fork of the popular database MySQL and provides some improvements and features over the classic MySQL. There is often confusion in this area, many developers think that MariaDB is just MySQL, but in reality, it's not. Even though MariaDB is a fork of traditional MySQL, it adds more functionality and features that make it special and better than MySQL. If you are an open-source activist and prefer to use open-source software, it's better to use MariaDB over MySQL. ...

Read More

C++ Program to check if a Number is Harshad Number

C++
AYUSH MISHRA
AYUSH MISHRA
Updated on 21-Nov-2024 6K+ Views

A Harshad number is a special type of number. A Harshad number or Niven number is a number that is completely divisible by the sum of its digits without leaving any remainder. In this article, we are going to learn how we can check whether a given number is a Harshad number or not. Problem Description We are given a number and we have to return true if the given number is Harshad or Niven number and false if the given number is not a Harshad number. Example 1 Input: 108 Output: yes Explanation: The sum ...

Read More

How to install and use ASDF Version Manager?

Mead Naji
Mead Naji
Updated on 21-Nov-2024 587 Views

If you are a DevOps engineer, a Linux sysadmin, or even just a developer, you may have faced the annoying problem of managing versions in your development environment. Luckily, we now have a tool that can manage this for us out of the box, called ASDF. ASDF stands out for its ability to install multiple languages and development tools. It advantageously replaces the use of multiple language-specific version managers, such as NVM for Node.js or Pyenv for Python. This greatly simplifies the setup of the development environment, as you only need one tool to manage all your versions. ASDF allows ...

Read More

How to Customize Linux Shell Environment?

Mead Naji
Mead Naji
Updated on 21-Nov-2024 460 Views

The shell is the interface between the user and the system. It can be used to do anything you want on your system. In Linux, there are several types of shells that we can use and interact with. In this article, we will explain how to use and customize the shell environment a little bit and introduce some ideas of what you can do to make your shell environment more custom, depending on your needs. If you are new to Linux, you probably only know the bash shell, but it's not the only one we can use. There are other ...

Read More

Top service based companies in india

Harleen Kaur
Harleen Kaur
Updated on 21-Nov-2024 3K+ Views

Some of the top service-based companies in India are known for their leadership in IT services, consulting, and digital transformation. These businesses are essential to drive innovative and offer complete solutions in a variety of sectors, including banking, healthcare, retail, and telecommunications. Due to their experience and strong worldwide presence, India is now the hub for high-quality technological services. Here is the list of top 10 services based companies in India.1. Tata Consultancy Services (TCS)Based in Mumbai, India, Tata Consultancy Services (TCS) is a well-known organization of IT services and consulting. It is a part of one of the biggest ...

Read More

Micro Text Editor – An Alternative to Vim

Mead Naji
Mead Naji
Updated on 21-Nov-2024 807 Views

Vim is a well-known text editor in the terminal, used by many developers and sysadmins around the world. However, it is also known for its complicated keybindings and modes. You may want to use Vim, but for those reasons, or if you don't want to invest much time just to learn a text editor, we have the solution: Micro, an awesome and easy-to-use terminal text editor. Micro, as the name implies, is a lightweight and easy-to-install editor that comes with a lot of features and capabilities. In this article, we will go through how to install Micro and how to ...

Read More

Conditional Statements in Bash Script

Altamas Ali
Altamas Ali
Updated on 21-Nov-2024 518 Views

Bash script, like other programming languages, has features such as if statements, loops, and other useful constructs that make the language powerful and versatile. One of the most important concepts to understand when working with bash, or on the path to mastering bash scripting, is conditional statements. Conditional statements allow us to execute certain code or operations based on a given condition. In this tutorial, we will learn how to use if statements in bash scripts with examples and explanations. What is a Conditional Statement? In general, a conditional statement allows us to perform an action based on the value ...

Read More

Podman vs Docker: What are the differences?

Mead Naji
Mead Naji
Updated on 21-Nov-2024 240 Views

Podman and its Daemonless Approach? Podman is an open-source container engine project that helps us with developing, managing, and deploying containers. What makes Podman special is its daemonless approach. With Docker, when we work with the Docker CLI, we're actually interacting with the Docker daemon, which runs in the background to handle tasks for us. Podman, however, is different; instead of using a background daemon to manage and create containers, it does everything on the client side by forking itself, and this child process becomes the container. This makes Podman more secure and lightweight compared to Docker’s ...

Read More

How to Use Podman to Search for an Image in the Registry?

Mead Naji
Mead Naji
Updated on 21-Nov-2024 2K+ Views

When we talk about applications that we take and run in the container world, we call this an image, which we save somewhere and run for as long as we need it. We have a lot of places where we can find an image; we call these image registries. We may have the image locally on our machine or in a specific place like the Internet (image repository or registry). Podman helps us deal with those registries. For example, we can search for a specific image in the image repository. If you search for an image for httpd, what you ...

Read More

How to Install Podman in Linux?

Mead Naji
Mead Naji
Updated on 21-Nov-2024 200 Views

Podman is in the official repository for almost all distributions, making it easy to install. On Ubuntu / Debian / Mint. sudo apt install podman For Red Hat / Fedora sudo dnf install podman For Windows, it’s recommended to use WSL (Windows Subsystem for Linux) to install and use Podman. You can install Podman in WSL using the command: sudo apt install podman -y If you are a Mac user, the best option is to use Homebrew to install Podman. If you don’t have Homebrew installed, first install it with the command: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" ...

Read More
Showing 31651–31660 of 61,297 articles
Advertisements