Here are some recommended packages for HTML, CSS, and JavaScript in the text editor Atom.
There are two main ways to do this: using an IDE and using a linter.
read moreHere are some recommended packages for HTML, CSS, and JavaScript in the text editor Atom.
There are two main ways to do this: using an IDE and using a linter.
read moreOne of the basic tasks in building a program development environment is to set environment variables. No matter which programming language you use, you will always experience this.
I will explain how to set them for Windows, Mac, Linux, and Unix.
It's easy to do. Please feel free to take a look.
read moreThis is how to turn the text editor Atom into an Integrated Development Environment (IDE). Well, it's not that difficult since you just need to install a package.
Compared to creating other program development environments, there are fewer packages to install.
read moreThe 'wp' command in WordPress allows you to do things like you would do in the admin panel by entering commands.
However, there were times when the 'wp' command did not work, which happened to me four times. I was just using it wrong.
If you use it in the same way as a shell command, you will get an error immediately.
read moreRestoring MySQL is as simple as running the 'mysql' command from the backup file and restoring the database data.
The same is true for MariaDB.
read moreThe method of backing up MySQL is simple, just run the 'mysqldump' command.
It's the same with MariaDB.
read moreThe chmod command is used to change the permissions on files and directories.
It also explains how to read file and directory information.
read morePHP composer is a command tool to manage packages.
It is absolutely necessary in the development of PHP programs. We will show you how to install the composer in a simple way with samples and captures.
read moreThere are four major copies of the WordPress moving process.
The method I'm about to show you can also be done with WordPress multisite.
read morePHP autoloading is the ability to define a 'use' operator to automatically load a class. It does not use the 'require' operator.
Autoloading is part of the 'composer' that manages PHP packages and is a necessary feature of PHP.
I will explain how to use it in a detailed and easy to understand manner.
read more