This tutorial will walk you through the steps to repaint your scooter (or any vehicle) using spray cans at home. This is what my scooter looks like after respraying it. I’m not a professional, this is my first time working with most of this stuff. If I can do it so can you.
Category: Tutorials
Welcome to part 4 of the MAMP tutorial. In this post we will go over setting up php.ini on your Mac’s localhost.
Welcome to part 3 of the MAMP tutorial. In this post we will go over setting up phpMyAdmin on your Mac’s localhost. Part 2 walks you through installing mysql on your localhost read. Part 1 shows you how to setup up Apache on your Mac.
Welcome to part 2 of the MAMP tutorial. In this part we will go over setting up Mysql on your Mac’s localhost. Part 1 goes over everything you need to do to setup PHP on a Mac
A quick tutorial showing you how to install and setup git on an Ubuntu server and pull a repo from Github.
Tutorial showing you how to give an Ubuntu user the right to edit and add files in the /var/www folders.
Simple trick in Ubuntu to become root if your user has the sudo group assigned to it (this way you won’t need to type sudo in front of every command)
sudo -i
If you need to see all of the groups assigned to a user simply type the following into the Terminal:
groups username
To display all the groups on your Ubuntu system just type:
groups
There are two ways to find the owner and group of a directory in Ubuntu:
First way:
ls -l /path/to/file
The 3rd field outputted is the user and and the fourth is the group
drwxr-xr-x 2 user group 4096 Feb 7 01:17 foldername
Second way:
stat -c "%U %G" /path/to/file
This will return
user group
This tutorial will show you how to set up an Apache server to run PHP on a mac OSX 10.8+ with Mountain Lion or later operating system. Tested on OS X Mountain Lion, OS X Mavericks, OS X Yosemite 10.10+, macOS El Capitan, macOS Catalina
Last updated Aug 7, 2020
Updated for macOS Catalina