Tag:original text
-
CentOS installs OpenOffice and converts office files to PDF
1、 Download OpenOffice software from the official website Download address:www.openoffice.org/zh-cn/download/ Select the (RPM) type to download and the corresponding version. The default selection here is the latest version. After selection, click “download full installation” to download 2、 Upload the compressed package to the server, extract and install it It will not be repeated here. You […]
-
How to set phpstorm to open multiple project directories in the same window
It started with sublime, a lightweight text editor with a cool appearance. NetBeans was later used to support the development and management of multiple projects in one window. It is also a powerful ide. Later, the IDE used by the company was phpstorm, which was very useful. However, in the process of using phpstorm, it […]
-
Warnings encountered during Vue project packaging (need to be optimized)
Record the problems encountered in today’s deployment codeInpm run buildThe prompt error is shown in the figure below:Translated as follows:It’s a dependency inequality and compatibility problem. At this time, my colleague asked me to delete itpackege-lock.json, a new one appears after deletionwarning, similar to the following figure (my own error reporting steps were CLS by […]
-
Installing sublime Text3 for Linux
Download the Linux Installation Package:http://www.sublimetext.com/3 Get: Sublime_ text_ 3_ build_ 3200_ x64. tar. bz2 Decompression: tar -xvvf sublime_ text_ 3_ build_ 3200_ x64. tar. bz2 sublime_ text_ 3/ sudo mv sublime_text_3/ /opt Create link: sudo ln – S / opt / sublime_ text_ 3/sublime_ text /usr/bin/sublime_ text Create Icon: sudo CP / opt / sublime_ […]
-
Uipath studio official document Chinese version
Robot process automation is actually a good concept and technology, but these technologies do not have much Chinese resources at present. This undoubtedly raises the threshold of RPA learning. In the process of learning, I didn’t find many relevant Chinese learning materials. So I translated some official documents myself. On the one hand, it is […]
-
[n32g457] Lora meteorological transmission system based on RT thread
This article is RT thread user @ sknd_ 9485 original release is used to participate in the n32g457 RT thread design competition jointly launched by RT thread and national technology. The original text:https://club.rt-thread.org/as… 1、 Introduction:Point to point transmission system based on RT thread, n32g457, STM32 and Lora;STM32 is responsible for data acquisition and transmission;N32g457 is […]
-
Curl supports http2
Curl command supports http2 Execute the following command: sudo apt-get install -y tmux curl vim wget htop git First, use curl requesthttps://nghttp2.org(http2 is used). But the result is http1 1 response: $ curl -I https://nghttp2.org/ HTTP/1.1 200 OK Date: Fri, 04 Dec 2015 00:00:06 GMT Content-Type: text/html Content-Length: 6680 Last-Modified: Thu, 26 Nov 2015 15:28:33 […]
-
Linux solves the problem of slow SSH connection
Backup files cp /etc/ssh/sshd_config /etc/ssh/sshd_config.bak Edit file vi /etc/ssh/sshd_config input/lookupGSSAPIAuthentication The settings are as follows Gssapiauthentication no # whether user authentication based on GSSAPI is allowed. The default value is “no”. Ssh-2 only explicate input/lookupUseDNS The settings are as follows Usedns no # yes is enabled to prevent client spoofing explicate Restart SSH service systemctl […]
-
After idea comes down from the clone project on git, it starts to report the error of “unable to find or load the main class”
Original link:After idea comes down from the clone project on git, it starts to report the error of “unable to find or load the main class” Recommended method: delete The idea file, restart the idea or directly Maven clean and then Maven install
-
[translation] how to write git submission message
The personal blog and creation index page are under production, and only the largest local version is released here. The original file is based on hexo and related plug-ins and is not compatible with the format here. It will not be repaired uniformly for the time being. [translation] how to write git submission message[1]The simplified […]
-
Idea import and open
The difference between import and open in IntelliJ ideaScenario:After leaving the original company and taking over the company’s project, clone the project from git or SVN project version management. If the project was originally developed with eclipse and you are more used to using IntelliJ idea, the following is an analysis of using open or […]
-
Reasons and solutions for miscode of redis integrated by springboot
Problem Description: spring boot uses spring data redis to store data in a garbled manner Redis key / value appears \ XAC \ xed \ X00 \ x05t \ X00 \ X05 Problem analysis: view redistemplate class Jdkserializationredisserializer class Serializingconverter class Defaultserializer class Serializer class Reason: redistemplate uses JDK serializer by default, and its encoding […]