How to Change a Filename in Linux Thumbnail

How to Change a Filename in Linux

In this tutorial, we will take you through the steps of changing a file name in Linux using the command line. You can do this in several ways, and we will take you through the two most popular methods. Both are super easy. Read More

How to Run a Python Script Thumbnail

How to Run a Python Script

This tutorial will go through the steps to run a Python script on your computer. The process of running a script is roughly the same on each operating system. We will also show you how to run the script in an IDE, such as Visual Studio Code. Read More

How to exit Python in the Terminal Thumbnail

How to exit Python in the Terminal

In this short tutorial, we will show you how to exit the Python prompt while in the terminal. You can see the Python prompt by entering the interactive mode. This mode is perfect for executing short code snippets and receiving instant feedback. Read More

How to Install PHP on macOS Thumbnail

How to Install PHP on macOS

This tutorial will show you how to install the PHP programming language on MacOS. You will need the Homebrew package manager installed for this tutorial to work correctly. Luckily, it is relatively straightforward. Read More

How to Install Homebrew on macOS Thumbnail

How to Install Homebrew on macOS

This tutorial will take you through installing the Homebrew package manager on macOS. Homebrew is described as the missing package manager for macOS and is used amongst developers, power users, and anyone else who requires beyond the basics. Read More

How to Check the Version of Python Thumbnail

How to Check the Version of Python

In this tutorial, we will show you how you can check the version of Python running on your computer. Knowing the Python version is crucial as there are sometimes breaking changes between versions you need to be aware of. Read More

PHP Data Types Thumbnail

PHP Data Types

This guide will touch on the different data types you can use in the PHP programming language. For example, integers, floats, strings, Booleans, arrays, objects, resources, and null. Knowing the different data types will come in handy. Read More

How to Check an Array Is Empty in PHP Thumbnail

How to Check an Array Is Empty in PHP

In this tutorial, we will take you through some of the ways you can check if an array is empty in PHP. We will touch on using the not operator, the empty and count function. These will come in handy if you use many arrays in your code. Read More

Python Arithmetic Operators Thumbnail

Python Arithmetic Operators

In this tutorial, we will take you through each arithmetic operator you can use in Python. These operators are a must-know if you plan on doing programming that requires maths. We touch on addition, subtraction, modulus, division, and more. Read More

How to use PHP $_GET Global Variable Thumbnail

How to use PHP $_GET Global Variable

In this guide, we will take you through the basics of using the PHP $_GET global variable for handling incoming GET data. We will also take you through how to define name-value pairs (query string) that are sent within the URL. Read More

How to use the sudo Command in Linux Thumbnail

How to use the sudo Command in Linux

This guide will take you through the basics of using the sudo command on a Linux-based distribution. The sudo command is instrumental in running commands requiring superuser or root permissions. Therefore, it is likely you will need to use this command. Read More

Check if a File Exists Using Python Thumbnail

Check if a File Exists Using Python

This tutorial takes you through how to check if a file exists using the Python programming language. It is crucial that check if a file exists if you plan on using them throughout your script. Failing to perform a check can result in fatal errors. Read More

How to use PHP $_POST Global Variable Thumbnail

How to use PHP $_POST Global Variable

This guide will take you through the basics of using the PHP $_POST global variable for handling incoming POST data. You will likely need to use this variable if you plan on using HTML forms or any sort of form data submission via a POST request. Read More

How to use the id Command in Linux Thumbnail

How to use the id Command in Linux

This tutorial takes you through all the basics of the id command on Linux. The id command is helpful in finding a user's group ids or the user's id. You can use various options to alter the command's behavior to get the information you require. Read More

Variables in PHP Thumbnail

Variables in PHP

This tutorial will take you through the basics of using variables in PHP. We will touch on using variable scopes, data types, naming conventions, and more. It is the perfect tutorial if you want to start learning how to code in PHP. Read More

How to use the last Command in Linux Thumbnail

How to use the last Command in Linux

In this tutorial, we take you through the basics of using the last command on a Linux distribution. This command allows you to search the history of users' login behavior. It is incredibly useful for investigating login issues, user behavior, and more. Read More