How to copy directory in Linux

This article explains how to copy a directory in the Linux terminal. That's a very simple operation. In most cases, you can use the regular "cp" command. But it may require using some additional flags if you want to copy the whole directory. Also, at the end of this article, we will describe how the …

How to unzip a file in Linux terminal

This article will give you detailed instructions on how to decompress a zip file in a Linux terminal. That's a very simple operation and can be done with just a single command. For that purpose, we can use the "unzip" tool. There is a chance that it's already installed on the system that you have. …

How to create a branch in Git

If you are working in a team or making complicated projects, then it's very likely that you'll need to create branches on an ongoing basis. As a result, you should know which commands have to be used for that purpose. The GIT version control system contains all the functionality required for managing the branches. In …

How to create a new user in MySQL

In this article you will learn how to create a user in both MySQL and MariaDB databases. You may want to perform such a task when working directly with the server. It is worth mentioning that you need all the required access privileges. The instructions that are provided here require root access to the database …

How to make a gradient in CSS

This article provides detailed information on how to create attractive CSS gradients for your web application. At the beginning, you will read specifications of the relevant CSS properties. Then, real world examples will be provided and you'll see what kind of effects can be done. In most cases, it's better to use gradients instead of …