current location:Home > Technical Articles > Development Tools

  • Does mac's new folder function disappear?
    Does mac's new folder function disappear?
    Preface: Today, this site will share with you the relevant content about the disappearance of the new folder function on Mac. If it can solve the problem you are facing now, don’t forget to follow this site and start now! Why can't I click the right button of the mouse to create a new document on an Apple desktop computer? Let's make a selection and see how to click the lower right corner of the trackpad. I personally strongly recommend setting the lower right corner as the right click and the lower left corner as the left click. This operation is more intuitive and consistent with habits. In addition, setting the lower left corner click to the right button may cause some confusion, so it is not recommended to choose such a setting. It may be due to one of the following reasons: Your computer is missing Microsoft Office. Word and Excel are two groups of Microsoft Office
    MAC . vim 1398 2024-02-16 08:12:07
  • Linux Command Line Editing – The editing possibilities are endless!
    Linux Command Line Editing – The editing possibilities are endless!
    For Linux users, the command line editor is one of the essential tools. It can help you edit and process files quickly and improve work efficiency. However, for newbies, learning the command line editor can be somewhat difficult and challenging. Today, we will introduce several of the most popular and practical Linux command line editors to help you quickly master this skill. If you are using Linux or BSD, you most likely have ed installed by default (the GNU version of ed on Linux, and the BSD version of ed on BSD). However, some minimalist environments may not include ed, and that's okay. Your distribution's software repository will most likely have ed available for download. macOS has the BSD version installed by default
    LINUX . vim 793 2024-02-15 08:00:23
  • Search techniques for vim editor in Linux
    Search techniques for vim editor in Linux
    The vim editor is one of the most advanced text editors in Unix systems. It supports almost all file types and is also known as a programmer's editor. In this tutorial, we will learn how to perform search operations in the vim editor to quickly find the text we need. But before that, please note that all examples, commands, and instructions mentioned in this article were tested under Ubuntu14.04 and Vim7.4. Basic search operations in Vim When you open a file in Vim and want to search for a specific word or template, the first step is to exit insert mode by pressing the Esc key (if you are in insert mode) . Then type / followed by the word or search pattern you want to search for. For example,
    LINUX . vim 478 2024-02-14 22:42:03
  • Deep Linux: Exploration and Practice of Programming Software Installation
    Deep Linux: Exploration and Practice of Programming Software Installation
    Deepin Linux, as an operating system based on the open source Linux kernel, has won the favor of many developers and users with its stability, security and high degree of customizability. For programmers, Deepin Linux provides a powerful A variety of programming software can be installed on the platform to meet different development needs. This article will explore the feasibility and specific practices of installing programming software in Deepin Linux. Deepin Linux supports the installation of a variety of programming software. Whether it is common C/C++, Python, Java, or emerging programming languages ​​​​such as Rust and Go, there are corresponding software packages or source codes for installation. This is thanks to Linux System package managers, such as APT, YUM, etc., which use
    LINUX . vim 922 2024-02-14 18:30:15
  • These Linux 'automation' skills teach you to complete tasks easily
    These Linux 'automation' skills teach you to complete tasks easily
    Deep fake originality of Linux automation tasks When a web website is hosted on an operational Linux system, it is often necessary to maintain the website, such as checking resource usage and responding accordingly, log segmentation, data sorting, and in specific states perform specific tasks, etc. In order to realize the automated execution of these operations, the Linux system provides a convenient way. This article will introduce common Linux automation task implementation methods. The benefits of automating tasks are as follows: Saving manpower: Just write a script to automate the task. Time flexibility: By automatically executing at night, you can avoid website traffic peak periods without affecting website efficiency during the day. Accuracy: With perfect settings, automatic
    LINUX . vim 545 2024-02-14 18:12:13
  • 6 ways to configure Linux environment variables, recommended to collect!
    6 ways to configure Linux environment variables, recommended to collect!
    Linux environment variable configuration When customizing software installation, it is often necessary to configure environment variables. Listed below are various methods of configuring environment variables. The environment description of all the examples below is as follows: System: Ubuntu14.0 User name: uusama Need to configure MySQL environment variables Path: /home/uusama/mysql/binLinux Reading environment variables Method of reading environment variables: The export command displays the current system definition All environment variables echo$PATH command outputs the value of the current PATH environment variable. The effect of executing these two commands is as follows uusama@ubuntu:~exportdeclare-xHOME="/home/uu
    LINUX . vim 506 2024-02-14 17:00:03
  • Debugging C++ Linux console programs in the Visual Studio integrated terminal
    Debugging C++ Linux console programs in the Visual Studio integrated terminal
    In preview, Visual Studio supports a fully-featured Linux terminal-like experience when debugging Linux applications using the Linux console embedded in the integrated terminal. This new Linux console emulates xterm and can support application screen operations. Recently, Visual Studio 202217.5 Preview 3 provides a new feature for Linux developers: debugging C++ Linux console programs in the Visual Studio integrated terminal. To learn more about the capabilities of the integrated terminal and how it works in Visual Studio, please refer to one of our previous articles: IntegratedT
    LINUX . vim 796 2024-02-14 16:00:17
  • CentOS installation Nerdtree: Solve the problem that CentOS cannot start after the installation is completed
    CentOS installation Nerdtree: Solve the problem that CentOS cannot start after the installation is completed
    Installing Nerdtree on CentOS is a very common requirement. Nerdtree is a very popular Vim plug-in. It provides a file browser that can easily browse and operate files in Vim. Sometimes after installing Nerdtree, you may encounter If you encounter the problem of being unable to start, this article will introduce how to install Nerdtree on CentOS and solve possible startup problems. Installing Nerdtree on CentOS To install Nerdtree on CentOS, you need to follow these steps: 1. Make sure you have Vim installed, if it is not installed yet, run the following command in the terminal to install it: ```sudoyumin
    LINUX . vim 1154 2024-02-14 13:00:22
  • SSMTP—Let Linux systems send emails from Office 365
    SSMTP—Let Linux systems send emails from Office 365
    SSMTP is a very simple and practical tool that can relay emails from Linux systems to Office365, Google or other third-party SMTP servers. SSMTP is not a mature and complete email server. It can only automatically submit emails to other SMTP servers such as Google, Tencent, 163, and Office365. In this article, we will explain how to configure SSMTP to send emails through an Office 365 account. How SSMTP works Before formal installation and configuration, let's briefly introduce how SSMTP works. SSMTP can be installed into any Linux system. Once configured, everything from
    LINUX . vim 691 2024-02-13 23:40:14
  • Let me go, the Linux system CPU is 100% full!
    Let me go, the Linux system CPU is 100% full!
    Yesterday afternoon, I suddenly received an email alert from the operation and maintenance department, which showed that the CPU utilization rate of the data platform server was as high as 98.94%. In recent times, this utilization rate has continued to be above 70%. At first glance, it seems that the hardware resources have reached a bottleneck and need to be expanded. But after thinking about it carefully, I found that our business system is not a highly concurrent or CPU-intensive application. This utilization rate is too exaggerated, and the hardware bottleneck cannot be reached so quickly. There must be a problem with the business code logic somewhere. 2. Troubleshooting ideas 2.1 Locate the high-load process pid. First log in to the server and use the top command to confirm the specific situation of the server, and then analyze and judge based on the specific situation. By observing loadaverage, and load
    LINUX . vim 1169 2024-02-13 23:27:12
  • Linux kernel module
    Linux kernel module
    The Linux kernel uses modular technology. This design can keep the system kernel minimal while ensuring the scalability and maintainability of the kernel. The modular design allows us to load modules into the kernel only when needed to achieve dynamic Kernel tuning. Now let me introduce to you how to operate the kernel. Kernel module storage location The naming method of Linux kernel module files is usually as follows. The kernel modules of the Centos6.3 system are centrally stored in the /lib/modules/uname-r/ directory. View loaded system modules The lsmod command is used to display the current Linux kernel module status. Without any parameters, it will display all currently loaded kernel modules. The three columns of information output are
    LINUX . vim 866 2024-02-13 22:21:23
  • Thoroughly understand Linux hard links and soft links
    Thoroughly understand Linux hard links and soft links
    Hard links and soft links are two common link file types under Linux systems. If you want to learn more about the concept of hard links and soft links, I will take you through the research. By reading this article, you will fully understand the differences and characteristics of hard links and soft links. First of all, under the Linux system, there are two types of link files, one is a hard link (HardLink) and the other is a soft link, also called a symbolic link (SymbolicLink). Hard links can be created using the ln command under Linux systems: ln [parameters] [source file or directory] [destination file or directory] In the file system, each file will have an index node (InodeIndex). This index node used to mark
    LINUX . vim 810 2024-02-13 20:20:02
  • Make Linux server a good helper for Go developers
    Make Linux server a good helper for Go developers
    Installing a Linux system is still a relatively complicated matter for many people, let alone using a Linux system to develop Go. But now, with the convenience provided by major cloud server manufacturers, you can easily own a Linux server and just log in using a remote terminal. For those newbies who are not familiar with Linux systems and Go development, here are some simple settings and steps to help you use Linux systems to develop Go programs more smoothly. I still remember when I was in college, installing a Linux system was still a relatively complicated matter. You need to download the image first, then burn it to a CD, and then install it with the CD. The biggest headache is that the quality of the optical drive in my laptop is not very good, so is there something wrong?
    LINUX . vim 1162 2024-02-13 19:51:11
  • Install smbclient on CentOS and install vim on CentOS
    Install smbclient on CentOS and install vim on CentOS
    In the CentOS operating system, smbclient and vim are two very commonly used tools. smbclient is a client tool used to communicate with SMB/CIFS servers, and vim is a powerful text editor. This article will introduce in detail how to Install smbclient and vim on CentOS and provide some related usage tips. 1. Open a terminal and log in as root user. 2. Run the following command to update the system package list: ```yumupdate3. Run the following command to install smbclient: yuminstallsmbclient4. The system will prompt you to confirm the installation, press the y key and press the Enter key to
    LINUX . vim 1137 2024-02-13 16:30:10
  • The Linux terminal command line can also be used to view images
    The Linux terminal command line can also be used to view images
    There are a large number of GUI applications available for viewing images in Linux. To be honest, I haven't used any command line application that displays pictures in the terminal itself. Luckily I found 2 command line image viewers to display images in the terminal. These applications may be useful for those who want to use a CLI alternative for GUI applications and spend most of their time in Terminal. 1. Display images in the terminal using Viu Viu is a command line application for viewing images from the terminal. It is a free and open source CLI image viewer written in the Rust programming language. Using Viu we can; display popular image types including .jpg, .png, igif and more. in custom size
    LINUX . vim 1299 2024-02-13 15:33:11

Tool Recommendations

jQuery enterprise message form contact code

jQuery enterprise message form contact code is a simple and practical enterprise message form and contact us introduction page code.
form button
2024-02-29

HTML5 MP3 music box playback effects

HTML5 MP3 music box playback special effect is an mp3 music player based on HTML5 css3 to create cute music box emoticons and click the switch button.

HTML5 cool particle animation navigation menu special effects

HTML5 cool particle animation navigation menu special effect is a special effect that changes color when the navigation menu is hovered by the mouse.
Menu navigation
2024-02-29

jQuery visual form drag and drop editing code

jQuery visual form drag and drop editing code is a visual form based on jQuery and bootstrap framework.
form button
2024-02-29

Organic fruit and vegetable supplier web template Bootstrap5

An organic fruit and vegetable supplier web template-Bootstrap5
Bootstrap template
2023-02-03

Bootstrap3 multifunctional data information background management responsive web page template-Novus

Bootstrap3 multifunctional data information background management responsive web page template-Novus
backend template
2023-02-02

Real estate resource service platform web page template Bootstrap5

Real estate resource service platform web page template Bootstrap5
Bootstrap template
2023-02-02

Simple resume information web template Bootstrap4

Simple resume information web template Bootstrap4
Bootstrap template
2023-02-02

Cute summer elements vector material (EPS PNG)

This is a cute summer element vector material, including the sun, sun hat, coconut tree, bikini, airplane, watermelon, ice cream, ice cream, cold drink, swimming ring, flip-flops, pineapple, conch, shell, starfish, crab, Lemons, sunscreen, sunglasses, etc., the materials are provided in EPS and PNG formats, including JPG previews.
PNG material
2024-05-09

Four red 2023 graduation badges vector material (AI EPS PNG)

This is a red 2023 graduation badge vector material, four in total, available in AI, EPS and PNG formats, including JPG preview.
PNG material
2024-02-29

Singing bird and cart filled with flowers design spring banner vector material (AI EPS)

This is a spring banner vector material designed with singing birds and a cart full of flowers. It is available in AI and EPS formats, including JPG preview.
banner picture
2024-02-29

Golden graduation cap vector material (EPS PNG)

This is a golden graduation cap vector material, available in EPS and PNG formats, including JPG preview.
PNG material
2024-02-27

Home Decor Cleaning and Repair Service Company Website Template

Home Decoration Cleaning and Maintenance Service Company Website Template is a website template download suitable for promotional websites that provide home decoration, cleaning, maintenance and other service organizations. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-05-09

Fresh color personal resume guide page template

Fresh color matching personal job application resume guide page template is a personal job search resume work display guide page web template download suitable for fresh color matching style. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-29

Designer Creative Job Resume Web Template

Designer Creative Job Resume Web Template is a downloadable web template for personal job resume display suitable for various designer positions. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28

Modern engineering construction company website template

The modern engineering and construction company website template is a downloadable website template suitable for promotion of the engineering and construction service industry. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28