Using console.log() in JavaScript Thumbnail

Using console.log() in JavaScript

This tutorial will show you how to use the console.log() function within JavaScript. The console.log() function is an incredibly useful part of JavaScript that you can use to debug your code. This function allows you to write messages to the console from your JavaScript. It allows you to easily debug your code on the fly […] Read More

How to Reboot Linux Thumbnail

How to Reboot Linux

In this tutorial, you will learn how to reboot a Linux system using the terminal. Restarting your system can be done with a simple command. Some of the commands you will learn in this guide is shutdown, reboot and systemctl. Read More

Using the crypt() Function in PHP Thumbnail

Using the crypt() Function in PHP

In this tutorial, you will learn how to use the crypt() function in PHP. This function allows you to generate a hash of the provided string. Using crypt you can generate a variety of hashes including blowifsh and SHA-256. Read More

How to Install Composer on Ubuntu Thumbnail

How to Install Composer on Ubuntu

In this tutorial, you will learn how to install Composer on the Ubuntu operating system. Composer is a powerful dependency manager for the PHP language. Use this tool to manage any library that your software relies on. Read More

How to Install PHP on Ubuntu Thumbnail

How to Install PHP on Ubuntu

This tutorial will teach you how to install PHP on the Ubuntu operating system. This includes guides on setting it up for the Apache and Nginx webservers. PHP is a programming language that helps drive dynamic websites. Read More

How to Install DOSBox on Ubuntu Thumbnail

How to Install DOSBox on Ubuntu

This tutorial will show you how to install and configure DOSBox on Ubuntu. DOSBox is a free and open-source emulator that emulates the MS-DOS system. By using this software, we can run old DOS games on Ubuntu easily. Read More

Using the JavaScript let Keyword Thumbnail

Using the JavaScript let Keyword

This tutorial will teach you how to declare a variable in JavaScript using the let keyword. A variable declared using let will respect the global, function, and block scopes. It also doesn't allow itself to be redeclared in the same scope. Read More

How to Restart the Network on Ubuntu Thumbnail

How to Restart the Network on Ubuntu

This quick guide will show you how to restart the network on an Ubuntu device. You will see how you can use either the terminal or GUI to restart the network. These steps differ between the desktop and server variants. Read More

How to Install MariaDB on Ubuntu Thumbnail

How to Install MariaDB on Ubuntu

This tutorial will show you how to install the MariaDB server on the Ubuntu operating system. MariaDB is an open-source and popular relational database management system. It is considered to be a solid alternative to MySQL. Read More

How to Install and Use Flatpak on Ubuntu Thumbnail

How to Install and Use Flatpak on Ubuntu

In this tutorial, you will learn how to install and use Flatpak on Ubuntu. This is an alternative package manager for Linux operating systems that installs a "Flatpak". A flatpak is a collection of everything needed to run that program. Read More