Allgemein Loading...

Last Command in Linux

last is a command-line utility that displays information about the last login sessions of the system users. It is very useful when you need to track...

Weiterlesen
Allgemein Loading...

How to Install VMware Tools in Ubuntu 18.04

The VMware Tools offer several useful functionalities such as faster graphics performance, shared folders, shared clipboard, drag and drop operations, and more. This tutorial explains how...

Weiterlesen
Allgemein Loading...

Python while Loop

This tutorial covers the basics of while loops in Python. We’ll also show you how to use the else clause and the break and continue statements.

Weiterlesen
Allgemein Loading...

Pgrep Command in Linux

pgrep is a command-line utility that allows you to find the process IDs of a running program based on given criteria. It can be a full...

Weiterlesen
Allgemein Loading...

Suspicious discontinuities

If you read any personal finance forums late last year, there’s a decent chance you ran across a question from someone who was desperately trying to...

Weiterlesen
Allgemein Loading...

How to List Cron Jobs in Linux

Cron is a scheduling daemon that allows you to schedule the execution of tasks at specified intervals. These tasks are called cron jobs. This article explains...

Weiterlesen
Allgemein Loading...

Growing Neural Cellular Automata

Training an end-to-end differentiable, self-organising cellular automata model of morphogenesis, able to both grow and regenerate specific patterns.

Weiterlesen
Allgemein Loading...

Bash Sequence Expression (Range)

The Bash sequence expression generates a range of integers or characters by defining a start and the end point of the range. It is generally used...

Weiterlesen
Allgemein Loading...

How to Remove a Git Remote

Git remote is a pointer that refers to another copy of the repository that is usually hosted on a remote server. This guide explains how to...

Weiterlesen
Allgemein Loading...

95%-ile isn’t that good

Reaching 95%-ile isn’t very impressive because it’s not that hard to do. I think this is one of my most ridiculable ideas. It doesn’t help that,...

Weiterlesen
Allgemein Loading...

Bash Select (Make Menus)

In this tutorial, we will cover the basics of the select construct in Bash. The select construct generates a menu from a list of items. It...

Weiterlesen
Allgemein Loading...

Curriculum for Reinforcement Learning

[Updated on 2020-02-03: mentioning PCG in the “Task-Specific Curriculum” section. [Updated on 2020-02-04: Add a new “curriculum through distillation” section.

Weiterlesen
Allgemein Loading...

Bash break and continue

Loops allow you to run one or more commands multiple times until a certain condition is met. In Bash, break and continue statements allows you to...

Weiterlesen
Allgemein Loading...

Pidof Command in Linux

pidof is a command-line utility that allows you to find the process ID of a running program. It is a simple command that doesn’t have a...

Weiterlesen
Allgemein Loading...

How to Install Ruby on CentOS 8

In this article we will explore different ways to install Ruby on CentOS 8. We’ll show how to install Ruby from the default CentOS 8 repositories...

Weiterlesen
Allgemein Loading...

Timeout Command in Linux

timeout is a command-line utility that runs a specified command and terminates it if it is still running after a given period of time.

Weiterlesen
Allgemein Loading...

Tcpdump Command in Linux

tcpdump is a command-line utility that you can use to capture and inspect network traffic going to and from your system.

Weiterlesen
Allgemein Loading...

How to Check the PHP Version

In this article, we’ll show you how to check what version of PHP your server is running. There are some important differences between PHP versions, so...

Weiterlesen
Allgemein Loading...

Id command in Linux

id is a command-line utility that prints the real and effective user and group IDs. The id command prints information about a given user, or the...

Weiterlesen
Allgemein Loading...

How to Install Tomcat 9 on CentOS 8

This tutorial explains how to install Tomcat 9.0 on CentOS 8. Apache Tomcat is an open-source implementation of the Java Servlet, JavaServer Pages, Java Expression Language,...

Weiterlesen
Allgemein Loading...

How to Install Git on Raspberry Pi

Git is a distributed version control system that’s being used by most software teams today. This tutorial explains how to install Git on Raspberry Pi.

Weiterlesen
Allgemein Loading...

How to Install Anaconda on CentOS 8

Anaconda is the most popular Python/R data science and machine learning platform. In this tutorial, we will explain how to install Anaconda Python Distribution on CentOS...

Weiterlesen
Allgemein Loading...

How to Install Apache Maven on CentOS 8

Apache Maven is an open-source project management and comprehension tool used primarily for Java projects. In this tutorial we’ll explain how to install Apache Maven on...

Weiterlesen
Allgemein Loading...

How to Install Vagrant on CentOS 8

Vagrant is a command-line tool for building and managing virtualized development environments. In this tutorial we will explain how to install Vagrant on CentOS 8.

Weiterlesen
Allgemein Loading...

How to Install CouchDB on CentOS 8

Apache CouchDB is a free and open-source NoSQL database developed by the Apache Software Foundation. In this article, we will cover the installation of CouchDB on...

Weiterlesen
Allgemein Loading...

Basic Linux Commands

In this article, we’ll go through some of the most common Linux commands that are used on a daily basis by Linux system administrators.

Weiterlesen
Allgemein Loading...

Bash: Append to File

When working with Bash, there might be times when you need to append text to a file. Fortunately, there are multiple ways to accomplish this task....

Weiterlesen
Allgemein Loading...

SSH Command

In this article, we will explain how to use the OpenSSH command-line client (ssh) to login to a remote machine and run commands or perform other...

Weiterlesen
Allgemein Loading...

Python String Replace

In this article, we will talk about how to replace a substring inside a string in Python, using the replace() method.

Weiterlesen
Allgemein Loading...

Install Odoo 13 on CentOS 8

Odoo is the most popular all-in-one business software in the world. In this tutorial, we’ll show you how to install Odoo 13 from source inside a...

Weiterlesen
Allgemein Loading...

Uname Command in Linux

uname is a command-line utility that prints basic information about the operating system name and system hardware.

Weiterlesen
Allgemein Loading...

How to Install MariaDB on CentOS 8

In this tutorial, we will explain how to install and secure MariaDB 10.3 on CentOS 8. MariaDB is an open-source relational database management system, backward compatible,...

Weiterlesen
Allgemein Loading...

Kill Command in Linux

The kill command sends a signal to specified processes or process groups causing them to act according to the signal. kill is a shell builtin in...

Weiterlesen
Allgemein Loading...

Understanding the /etc/passwd File

The etc/passwd file is a text file with one entry per line, representing a user account. Each line of the file contains seven comma-separated fields.

Weiterlesen
Allgemein Loading...

How to Disable SELinux on CentOS 8

Security Enhanced Linux or SELinux is a security mechanism built into the Linux kernel used by RHEL-based distributions. In this tutorial, we will explain to disable...

Weiterlesen
Allgemein Loading...

Docker Run Command with Examples

The docker run command creates a container from a given image and starts the container using a given command. It is one of the first commands...

Weiterlesen
Allgemein Loading...

Diff Command in Linux

diff is a command-line utility that allows you to compare two files line by line. It can also compare the contents of directories.

Weiterlesen
Allgemein Loading...

How to Install Go on CentOS 8

This tutorial, explains how to download and install Go on a CentOS 8 system. Go is a modern open-source programming language created by Google.

Weiterlesen
Allgemein Loading...

How to Check the PostgreSQL Version

In this article, we’ll explain how to find what version of the PostgreSQL server is running on your system. Knowing what version of the PostgreSQL server...

Weiterlesen
Allgemein Loading...

W Command in Linux

w is a command-line utility that displays information about currently logged in users and what each user is doing.

Weiterlesen
Allgemein Loading...

How to Install Webmin on CentOS 8

Webmin is an open-source control panel that allows you to manage your Linux server through an easy-to-use web interface. This tutorial explains how to install Webmin...

Weiterlesen
Allgemein Loading...

Whoami Command in Linux

The whoami command prints the user name of the effective user ID. In other words, it displays the name of the currently logged-in user.

Weiterlesen
Allgemein Loading...

How to Install Anaconda on Debian 10

Anaconda is the most popular Python/R data science and machine learning platform. In this tutorial we will walk you through downloading and installing Anaconda Python Distribution...

Weiterlesen
Allgemein Loading...

How to Mount ISO File on Linux

An ISO file is an archive file that typically contains the complete image of a CD or DVD disc. In this tutorial, we will explain how...

Weiterlesen
Allgemein Loading...

Self-Supervised Representation Learning

[Updated on 2020-01-09: add a new section on Contrastive Predictive Coding]. [Updated on 2020-04-13: add a “Momentum Contrast” section on MoCo, SimCLR and CURL.] [Updated on...

Weiterlesen
Allgemein Loading...

Stat Command in Linux

stat is a command-line utility that displays detailed information about given files or file systems.

Weiterlesen
Allgemein Loading...

How to Install Python on CentOS 8

Python is one of the most popular programming languages in the world. This guide will walk you through installing Python 3 and Python 2 on CentOS...

Weiterlesen
Allgemein Loading...

How to Install Jenkins on CentOS 8

Jenkins is the most popular open-source, Java-based automation server. This tutorial covers the steps to install Jenkins on CentOS 8 from the official Jenkins repository.

Weiterlesen
Allgemein Loading...

How to Change a Git Remote’s URL

Git remotes are pointers to the versions of the repository that are typically stored on other servers. This guide explains how to change the URL of...

Weiterlesen
Allgemein Loading...

How to Install PostgreSQL on Debian 10

This tutorial walks you through the steps of installing the PostgreSQL database server on Debian 10. PostgreSQL, often known simply as Postgres, is an open-source general-purpose...

Weiterlesen
Allgemein Loading...

Pstree Command in Linux

In this article, we will talk about the pstree command. It is similar to ps but instead of listing the running processes, it shows them in...

Weiterlesen
Allgemein Loading...

Python Enumerate Function

enumerate() is a built-in function in Python that allows you to have an automatic counter while looping over iterables.

Weiterlesen
Allgemein Loading...

How to Install PHP on CentOS 8

In this guide, we will discuss how to install PHP 7.2, 7.3 and 7.4 on CentOS 8. Before choosing which version of PHP to install, make...

Weiterlesen
Allgemein Loading...

How to Install MySQL on CentOS 8

The latest version of the MySQL database server, version 8.0, is available for installation from the default CentOS 8 repositories. MySQL is the most popular open-source...

Weiterlesen
Allgemein Loading...

Dmesg Command in Linux

The dmesg command-line utility prints and control the kernel ring buffer. It is useful for examining kernel boot messages and debugging hardware related issues.

Weiterlesen
Allgemein Loading...

How to Install Git on CentOS 8

This tutorial explains how to install Git on CentOS 8. Git is a distributed version-control system that’s being used by most software teams today.

Weiterlesen
Allgemein Loading...

RPM Command in Linux

In this tutorial, we will talk about how to use the rpm command to install, update, remove, verify, query, and otherwise manage RPM packages.

Weiterlesen
Allgemein Loading...

How to Install Nginx on CentOS 8

Nginx pronounced engine x is an open-source, high-performance HTTP and reverse proxy server. This tutorial explains how to install and manage Nginx on CentOS 8.

Weiterlesen
Allgemein Loading...

How to Setup a Git Server

Setting up a Git Server allows you to create private repositories without the restrictions of the providers free plans. In this guide, we will explain how...

Weiterlesen
Allgemein Loading...

Redirect HTTP to HTTPS in Nginx

In this guide, we will explain how to redirect the HTTP traffic to HTTPS in Nginx. The preferred method to redirect HTTP to HTTPS in Nginx...

Weiterlesen
Allgemein Loading...

Welcome, Prashanth!

Last March, I shared that we were starting to look for a new CEO for Stack Overflow. We were looking for that rare combination of someone...

Weiterlesen
Allgemein Loading...

Paste Command in Linux (Merge Lines)

paste is a command that allows you to merge lines of files horizontally. It outputs lines consisting of the sequentially corresponding lines of each file specified...

Weiterlesen
Allgemein Loading...

Pushd and Popd Commands in Linux

pushd and popd are commands that allow you to work with directory stack and change the current working directory in Linux and other Unix-like operating systems.

Weiterlesen
Allgemein Loading...

How to Install Go on Debian 10 Linux

Go is a modern open-source programming language created by Google, used to build reliable, simple, fast and efficient software. In this tutorial, we’ll explain how to...

Weiterlesen
Allgemein Loading...

Whereis Command in Linux

whereis is a command-line utility that allows you to find the location of the binary, source, and manual page files for a given command.

Weiterlesen
Allgemein Loading...

The Rise of the Electric Scooter

In an electric car, the (enormous) battery is a major part of the price. If electric car prices are decreasing, battery costs must be decreasing, because it’s not like...

Weiterlesen
Allgemein Loading...

Evolution Strategies

Stochastic gradient descent is a universal choice for optimizing deep learning models. However, it is not the only option. With black-box optimization algorithms, you can evaluate...

Weiterlesen
Allgemein Loading...

Gzip Command in Linux

Gzip is one of the most popular compression algorithms that allows you to reduce the size of a file. This article will teach you how to...

Weiterlesen
Allgemein Loading...

Rm Command in Linux

rm is a command-line utility for removing files and directories. It is one of the essential commands that every Linux user should be familiar with.

Weiterlesen
Allgemein Loading...

How to Check Python Version

This article explains how to use the command line to check what version of Python is installed on your Linux, macOS, or Windows machine.

Weiterlesen
Allgemein Loading...

How to Delete MySQL Users Accounts

This tutorial explains how to delete MySQL/MariaDB user accounts. In MySQL you can remove one or more users and assigned privileges with the DROP USER statement.

Weiterlesen
Allgemein Loading...

How to Install Pip on Debian 10

Pip is a package management system that allows you to install Python packages. In this guide we will explain how to install pip on Debian 10...

Weiterlesen
Allgemein Loading...

apt Command in Linux

apt is a command-line utility for installing, updating, removing, and otherwise managing deb packages on Ubuntu, Debian, and related Linux distributions.

Weiterlesen
Allgemein Loading...

How to Find/Get your IP Address in Linux

Knowing the IP address of your device is important when troubleshooting network issues, setting up a new connection or configuring a firewall. This article explains several...

Weiterlesen
Allgemein Loading...

Du Command in Linux

The du command, short for disk usage reports the estimated amount of disk space used by given files or directories. It is practically useful for finding...

Weiterlesen
NOVA AI Chat
Hi, how can I help you?