MySQL learning notes
catalogue
MySQL overview
MySQL installation and setting up WINDOWS service
MySQL installation
Set up Windows services for MySQL
MySQL creates and authorizes users
The notes are based on the teaching course "baldness saves the earth" in station B. Course link: 7-day MySQL devil training camp (beginner to expert)_ Beep beep b ...
Posted by brotherhewd on Tue, 01 Mar 2022 02:43:21 +0100
WebService concise tutorial
There are thousands of people in the vast sea. Thank you for seeing here this second. I hope my article is helpful to you!
May you keep your love and go to the mountains and seas in the future!
👀 preface
Because some time ago, we need to use webService to call other system api interfaces of the company, but the request method is differe ...
Posted by ericdorman on Tue, 01 Mar 2022 02:07:39 +0100
Promise asynchronous programming - the ultimate asynchronous solution async + await node JS primary
Promise introduction:
Promise is a solution for asynchronous programming. ES6 writes it into the language standard, unifies the syntax, and provides promise objects natively.
Promise is simply a container that holds the result of an event (usually an asynchronous operation) that will not end in the future. Syntactically speaking, promise is a ...
Posted by jawapro on Tue, 01 Mar 2022 01:55:50 +0100
Front end training item "CSS&&JavaScript" and "03"
catalogue
design sketch
Blind spots encountered
Source code
design sketch
The functions of color matching, adjusting clarity and changing color are realized
Â
Â
Blind spots encountered
 1.< Label > is generally shared with < input >
advantage:
The label text is not only visually associated with its ...
Posted by yakabod on Tue, 01 Mar 2022 01:45:51 +0100
New Python object-oriented ~ ~ ~ learning record
catalogue
1, Class definition and creation:
-Simple creation:
-Class properties:
2, Instance object
-Instance object method: class name ()
-Instance object method:_  init _ _ method
3, Method
-Example method
-Static method
-Class method
4, Class inheritance
-Succession:
-Method overrides in inheritance
-Reference parent ...
Posted by TexasMd91 on Tue, 01 Mar 2022 00:59:07 +0100
C language to achieve mine sweeping (detailed explanation)
🌟 What is minesweeping
Mine clearance refers to the search and clearance of mines, mines and other explosives, which is usually carried out in the areas occupied and recovered by our own side. The purpose of mine clearance is to ensure the freedom of movement of the army and the safety of residents' lives and property, and restore normal prod ...
Posted by Porkie on Tue, 01 Mar 2022 00:12:27 +0100
8 - Design Mode - adapter mode
1, What is an adapter
1) Adapter pattern transforms the interface of a class into another interface expected by the client. The main purpose is compatibility, so that two classes that cannot work together due to interface mismatch can work together. Its alias is wrapper
2) The adapter mode is a structural mode
3) It is mainly divided into th ...
Posted by marijn on Tue, 01 Mar 2022 00:09:48 +0100
Python thread 19 procrastination patient Timer class
Official Python column Article 56, students stop, don't miss this article starting from 0!
Multithreading has been written for nearly 20 articles. This article is a little easier.
Let's learn about the Timer class. This class is very simple, but very special.
Every new year, we will summarize and repeat ourselves with the previous flag.
T ...
Posted by jbog91 on Mon, 28 Feb 2022 22:04:54 +0100
Library management system Part1 (practice of encapsulation, inheritance, polymorphism and interface)
Library management system is a common small project in learning programming. After learning classes and objects, encapsulation, inheritance, polymorphism and interfaces, we can use these ideas to realize our library management system. Here I will use two blogs to explain the specific implementation methods.
Blog link:
1. Business requirements ...
Posted by Klojum on Mon, 28 Feb 2022 20:52:45 +0100
JAVA design pattern proxy pattern
summary
Proxy mode: first, there must be an interface. Both proxy class and proxy class implement the same interface. Finally, the proxy is the method of the proxy class.
Proxy pattern is a design pattern that is widely used in Java development. Agent design is to provide an agent for an object to control access to the object. Any call to the ...
Posted by glodders on Mon, 28 Feb 2022 20:21:09 +0100