MySQL8 connection problem 1. Deprecated classLoading class com.mysql.jdbc.Driver. This is deprecated. The new driver class is com.mysql.cj.jdbc.Driver. The driver is automatically registered via the SPI and manual loading of t 2022-08-02 #MySQL
String placeholder in java There are two types of format strings in Java,String.format() similar to the printf();MessageFormat.format() more suitable for message type. 1234567891011121314import java.text.MessageFormat;import ja 2022-07-28 #Java
x86 Architecture ForewordIf you want to know about x86 architecture, you can look here:https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/x86-architecture This article only lists a small part of them. 2022-07-28 #x86
How to Copy a File with Java 0. Forewordhttps://www.journaldev.com/861/java-copy-file 1. Several commonly used methods1.1 Java Copy File – Stream12345678910111213141516private static void copyFileUsingStream(File source, File des 2022-07-28 #Java
Implement Hamming Code in Python ForewordHamming codes can detect one-bit and two-bit errors, or correct one-bit errors without detection of uncorrected errors.The code is from the video below,Bilibili: https://www.bilibili.com/video 2022-07-27 #Python #Hamming
Close the nginx service under windows 1. Start Nginx1start nginx 2. Stop Nginx1nginx -s stop 3. Reload Nginx Config1nginx -s reload 4. Force Close1taskkill /f /t /im nginx.exe 2022-07-24 #Nginx
Use requirements.txt 1. Generate requirements.txt Use pip freeze Applicable to the case of a single virtual environment. It will add all the dependencies in the environment. 1pip freeze > requirements.txt Use pipreq 2022-06-08 #Python
English Grammer for postgraduate entrance exmination catalog 1. Simple Sentence 1.1 Core Composition of Simple Sentence 1.1.1 Core composition of simple sentence 1.1.2 Core changes in simple sentence 1.2 Extension of Simple Sentence 1.2.1 Expansion of the par 2022-05-24
Common tools for papers Tools NoteExpress Endnote The best reference management tool. Latex A document preparation system. Origin Origin is the data analysis and graphing software. Visio Flowchart Maker and Diagrammin 2022-05-23
Basic image classification Official Documentationhttps://www.tensorflow.org/tutorials/keras/classification Import packageThis guide trains a neural network model to classify images of clothing, like sneakers and shirts. It’s ok 2022-04-28 #Tensorflow