It broke the world record by 0.74 seconds and realized automatic minesweeping with Python
Automatic minesweeping is realized with Python+OpenCV, breaking the world record. Let's take a look at the effect first.
Intermediate - 0.74 seconds 3BV/S=60.81
I believe many people have known for a long time that there is such a classic game (graphics card test) play (software) as mine sweeping, and many people have heard of China's Lei S ...
Added by gwizz on Tue, 15 Feb 2022 04:57:11 +0200
Get started guide | Dart, check with you
It is planned to enter the Flutter pit recently, so it is recorded here and checked as soon as it is used;Don't give advice, just do it,A simple Dart programmain(){
var number = "Hello World";
printInteger(number);
}
//Define a function
printInteger(int aNumber){
print('The number is $aNumber');
}Important conceptsLearning Dart should be ...
Added by jarow on Tue, 15 Feb 2022 04:41:21 +0200
SpringBoot distributed, Dubbo, zookeeper
catalogue
What is a distributed system?
Dubbo document
Single application architecture
Vertical application architecture
Distributed service architecture
Flow computing architecture
RPC
Test environment construction
Dubbo
Dubbo environment construction
Installing zookeeper under Window
Install Dubbo admin under Windows
SpringBoot + ...
Added by nielskg on Tue, 15 Feb 2022 04:31:06 +0200
Proxy mode
Introduction to agent mode
Proxy mode: provide an avatar for an object to control access to the object. That is, the target object is accessed through the proxy objectThe advantage is that on the basis of the realization of the target object, additional function operations can be enhanced, that is, the function of the target object can be exte ...
Added by Avochelm on Tue, 15 Feb 2022 04:22:40 +0200
Handwritten simple version of React to thoroughly understand the fiber architecture
The biggest difference between before and after React 16 is that 16 introduces fiber and implements hooks based on fiber. I mention fiber all day. What is fiber? What is its relationship with vdom?
Instead of looking at various explanations, it's better to write a fiber version of React. When you can realize it, you must fully understand it.
...
Added by chadbobb on Tue, 15 Feb 2022 04:15:21 +0200
Database foundation summary
What is SQL
SQL (structured query language): structured query languageSQL is a language for defining and operating data in relational databaseSQL language is simple and grammar is simple, easy to learn and use
Common relational database PC side: Oracle, MySQL, SQL Server, Access, DB2, Sybase Embedded \ mobile client: SQLite sqlite lightweight ...
Added by pauldr on Tue, 15 Feb 2022 04:11:50 +0200
#{} how to prevent SQL injection? What is its underlying principle?
1, The difference between ${} and #{} in MyBatis1.1 ${} and #{} presentationsDatabase data:dao interface:List<User> findByUsername(String username);
List<User> findByUsername2(String username);
Mapper.xml: <!-- use#{} -->
<select id="findByUsername" parameterType="java.lang.String" resultType="com.lscl.entity.User">
...
Added by seikan on Tue, 15 Feb 2022 04:09:18 +0200
Understand SourceMap and improve the efficiency of front-end development by 100%
1, What is a Source Map
Generally speaking, Source Map is an information file that stores the location information after code packaging and conversion. In essence, it is a json description file that maintains the code mapping relationship before and after packaging. For an explanation of # source maps # see # Introduction to JavaScript Source ...
Added by Indersingh on Tue, 15 Feb 2022 04:05:22 +0200
[dark horse programmer Java notes] method
catalogue
1. Method overview
2. Definition and invocation of simple methods
3. Definition and invocation of methods with parameters
4. Definition and call of method with return value
5. Method overloading
6. Parameter passing of method
1. Method overview
The method is to organize the code blocks with independent functions into a whole ...
Added by khf79 on Tue, 15 Feb 2022 04:04:03 +0200
Usage of Java foreach statement
Usage of Java foreach statement
foreach loop statement is one of the new features of Java 1.5. foreach provides great convenience for developers in traversing arrays and collections. foreach loop statement is a special simplified version of for statement, which is mainly used to execute the loop of traversal function.
The syntax format of for ...
Added by Spud_Nic on Tue, 15 Feb 2022 03:51:44 +0200