current location:Home > Technical Articles > Development Tools
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- Introducing sublime automatic annotation plug-in DocBlockr
- Below, the sublime tutorial column will introduce you to the sublime automatic annotation plug-in DocBlockr. I hope it will be helpful to friends who need it! Install: "ctrl+shift+P –> install Package–> DocBlockr and wait for the download to complete.
- sublime . vim 3815 2020-07-18 13:21:24
-
- What is the function of linux file editing command vi?
- The vi command is used to enter vi, the most versatile full-screen plain text editor in the UNIX operating system. The vi editor supports edit mode and command mode. In the edit mode, you can complete the text editing function, and in the command mode, you can complete the file operation commands. To use the vi editor correctly, you must be proficient in switching between the two modes.
- PHP Problem . vim 4561 2023-03-02 16:48:02
-
- How to install apache and php using yum
- How to install apache and php with yum: first execute the command "yum install -y httpd" to install apache; then start apache; then execute the command "yum install -y php" to install php; finally create a new PHP page for testing.
- PHP Problem . vim 4125 2023-03-02 14:30:02
-
- What should I do if there is no response when I exit the vi editor in Linux and press esc?
- Solution to the problem of exiting the vi editor in Linux and no response when pressing esc: 1. Press the q keyboard in normal mode; 2. Select any one of [a-z] or [0-9] as the name of the buffer and prepare to start Record macro; 3. Enter q in non-insert mode to stop macro recording; 4. Use @ and the defined buffer name.
- Linux Operation and Maintenance . vim 9004 2020-07-07 15:21:25
-
- How to turn off caching opcache in php
- How to turn off the cache in PHP: first log in to the centos server; then enter the PHP configuration directory and use vim to open the configuration file; then view the configuration items and change all values from 1 to 0; finally restart PHP.
- PHP Problem . vim 5071 2023-03-02 06:40:01
-
- What is the command to exit vim without saving?
- The command to exit vim without saving is: ":q". There are other commands in vim, for example: if you do not save the file, the command to force exit is ":q!"; to save the file, the command to exit is ":wq"; to force save the file, the command to exit is ":wq!" .
- Linux Operation and Maintenance . vim 17871 2020-07-06 09:31:46
-
- Summary of mysql php garbled problem
- Solve the problem of mysql php garbled characters: 1. Specify the character set of the database table when creating the database table; 2. Set the character set of mysql; 3. After connecting to the database, set the default character encoding used when transmitting characters between databases; 4. Set the html page The character set used.
- PHP Problem . vim 2346 2023-03-01 22:34:02
-
- What is the command to exit without saving in vim?
- The command to exit without saving in vim is [:q!] which means forced exit without saving, [:w] which means saving but not exiting, [:wq] which means saving and exiting, and [.q] which means exiting.
- Linux Operation and Maintenance . vim 24200 2021-05-28 14:52:44
-
- Detailed explanation of CentOS firewalld (firewall) instructions
- Below, the centos system tutorial column will introduce the CentOS firewalld (firewall) command to everyone. I hope it will be helpful to friends in need! 1. Check the firewalld status and check the firewalld service status command: systemctl status firewalld..
- CentOS . vim 2739 2020-07-03 13:37:07
-
- How to understand docer?
- This article comes from the docker tutorial. I share my understanding of docker with you. I hope it can help you. Docker can be said to be a terminal command line virtual machine. To be more precise, docker is a virtual environment.
- Docker . vim 6742 2020-07-02 17:27:13
-
- What is the vim find and replace command?
- The vim search command is [wq] to save and exit, [q] to exit with dimension modification, [q!] to force exit without saving; the vim replacement command is [s/old/new] to replace the first occurrence in the line with new of old, [s/old/new/g] replaces all old in the line with new.
- Linux Operation and Maintenance . vim 5239 2020-06-30 17:00:17
-
- What are vim page turning and moving commands?
- The vim page turning command is to turn the whole page [ctrl-f ctrl-b], to turn the half page [ctrl-d ctlr-u], to turn a line [ctrl-e ctrl-y]; the vim movement command is to jump the line number [ gg file top, G file tail], screen movement [H screen top, M screen middle].
- Linux Operation and Maintenance . vim 6257 2020-06-30 11:17:29
-
- 9 excellent code comparison tools under Linux [Recommended]
- Below, the Linux tutorial column will introduce to you 9 excellent code comparison tools under Linux. I hope it will be helpful to friends in need! When we write code, we often need to know the differences between two files, or between different versions of the same file. There is a very powerful tool under Windows called...
- Linux Operation and Maintenance . vim 3262 2020-06-29 13:43:20
-
- How to install mysql on centos 6.5?
- How to install mysql on centos 6.5: First uninstall the local mysql and download the installation package from the official website; then install the downloaded rpm package and change the mysql version; finally install mysql, start mysql and change related configurations.
- CentOS . vim 3423 2020-06-24 09:28:53
-
- How to compile and install php7 from source code
- The following takes CentOS 7.2 as an example to install the PHP operating environment. First, open the PHP official website and click Downloads in the navigation bar to enter the download page. Download the latest version of the source code package here. After downloading, upload it to the server. Because PHP installation requires compilation, the server should Ensure that gcc and g++ environments are installed.
- PHP7 . vim 5016 2023-02-17 16:20:01