Umi beginners Documentary - creating projects & common configurations

umi It's an enterprise react Application framework is also the bottom front-end framework of ant gold The front frame and engineering practice of ant gold suit   1, Installation of scaffolding Before you create a project, you need to ensure that you have an environment of node 8.10 or higher Official scaffolding is available create-umi Qui ...

Added by Lumio on Wed, 15 Jan 2020 12:15:44 +0200

Educational Codeforces Round 80 (Rated for Div. 2)

Title Link: Educational Codeforces Round 80 (Rated for Div. 2) A: It's obviously a double channel function, but there are some rounding things that lead to small deviations. But we don't need O(1) to do it at all. We know that the minimum value must be near sqrt(d), so a little violence is enough. A ...

Added by hellangel on Wed, 15 Jan 2020 10:42:51 +0200

Do Titanic passenger survival analysis with Kaggle

  Learn Python data analysis ideas and methods by referring to kaggle: https://www.kaggle.com/startupsci/titanic-data-science-solutions There are some charts in the micro professional video in the middle, which are completely followed up. In fact, we have a preliminary understanding of how to recog ...

Added by teguh123 on Wed, 15 Jan 2020 07:02:03 +0200

Python datetime module details

  1, Introduction to datetime module (1) The datetime module contains the following classes: Class name Function description date Date object, common attributes are year, month, day time Time object datetime Date time object, commonly used attributes are hour, minute, se ...

Added by Profector on Tue, 14 Jan 2020 08:40:19 +0200

Task2 Machine Learning Starter Notes Logical Regression

Differences between Logical Regression and Linear Regression Linear regression can be applied to a similar number of training samples in different categories.If the number of training samples varies slightly from one category to another, it usually has little effect, but if the difference is large, th ...

Added by dmcentire on Tue, 14 Jan 2020 03:32:28 +0200

Producer and consumer realization principle

In multithreading development, there is one of the most classic operation cases, that is, the producer consumer. The producer keeps producing the product and the consumer keeps taking the product. 1, Review of key points of multithreading 1.1 what is a process? A program is an ordered collection of ...

Added by webbwbb on Mon, 13 Jan 2020 12:03:28 +0200

java learning notes -- program flow control

Procedure flow control Article directory Procedure flow control Summary Selection structure if control statement switch Statements Ternary operator Cyclic structure Summary There are three process control structures in java: sequence structure, selection structure and cycle structure S ...

Added by dheeraj4uuu on Mon, 13 Jan 2020 09:36:28 +0200

Data structure series, construction of binary balance tree

balanced binary tree To balance a binary tree, first of all, it is a binary sort tree, Then, for each node's left subtree, the height difference of the right subtree (the height of the left subtree - the height of the right subtree) is at most equal to 1, and the height of the binary tree is how ma ...

Added by @sh on Sun, 12 Jan 2020 08:23:26 +0200

C + + multithreading -- atomic operation

Atomic operation Example Atomic operation is an indivisible operation. Of all the threads in the system, you can't see that the atomic operation is half completed; it's either done or not. There are only two possibilities. Do not use atomic operation: #include <iostream> #include <thread& ...

Added by sockit2em on Sat, 11 Jan 2020 14:50:21 +0200

LVM logic volume details

LVM: Logical Volume Manager allows easy to operate abstraction layer of volumes, including resizing the file system, reorganizing the file system among multiple physical devices, and increasing the scalability (data loss will be caused if the mount has to be cancelled) The difference between logical par ...

Added by krraleigh on Sat, 11 Jan 2020 12:51:00 +0200