The principle of SpringBootStarter and customizing simple starter steps
1. Starter introduction
Compared with spring, spring boot is much simpler in configuration. Its core lies in spring boot starter. When using spring boot to build a project, you only need to introduce the officially provided starter, which can be used directly without various configurations. Starter simply introduces some dependencies and initi ...
Posted by jbbadaz on Wed, 10 Nov 2021 15:08:10 -0800
C language learning notes
1, What is C language
C language is a strongly typed language. Once the type of variable is determined, it can not be changed in its whole life cycle.
int main()//Main function framework
{
return 0; /// * * / cannot be nested in c language
}
A c language source program can be composed of multiple source files, but there ca ...
Posted by michelledebeer on Wed, 10 Nov 2021 15:06:56 -0800
Notes on basic course of acwing algorithm
Chapter III Search and Graph Theory
1. Depth-first search (dfs)
Search down from start to finish, find the bottom and backtrace down to finish, use stack to store data, have two concepts of backtrace and pruning, do not have the shortest
Array Array (Violent Search, Full Array)
To restore the state to its original state after backtracking
...
Posted by darkerstar on Wed, 10 Nov 2021 15:05:55 -0800
An article to understand Timer
preface
This article belongs to the column "100 problems to solve Java concurrency". This column is original by the author. Please indicate the source of quotation. Please help point out the deficiencies and errors in the comment area. Thank you!
Please refer to table of contents and references for this column 100 problems to sol ...
Posted by Sassci on Wed, 10 Nov 2021 14:50:37 -0800
shell loop explanation and examples
1, Condition selection and judgment (if, case)
1.1 if statement usage and examples
When we need to judge in the script, we can use the if statement to implement it. The specific syntax is as follows:
Single branch
if judgment conditions; then
Branch code with true condition fi
Double branch
if ...
Posted by kumar_ldh on Wed, 10 Nov 2021 14:42:35 -0800
[SVG] for the beauty of the front page, I choose to learn SVG
[SVG] for the beauty of the front page, I choose to learn SVGBlog descriptionThe information involved in this article comes from the Internet and personal summary, which means the summary of personal learning and experience. If there is any infringement, please contact me to delete it. Thank you!explainIn the process of self-study before, SVG h ...
Posted by sledge4 on Wed, 10 Nov 2021 14:14:08 -0800
OpenCV basic tutorial (11) -- HighGUI graphical user interface
11. HighGUI graphical user interface
11.1 creation and use of slider
11.1,1 create slider: createTrackbar() function
The createTrackbar function is used to create a slider with adjustable values:
int cv::createTrackbar(const cv::String &trackbarname, const cv::String &winname, int *value, int count, cv::TrackbarCallback onChange = ( ...
Posted by ckjian on Wed, 10 Nov 2021 14:03:12 -0800
JAVA8 Stream series of operations -- java
Java cultivation program -- the 60th day of learning clock in
Java introduction to mastery (60th day of punch in)
Java 8 stream operation follow-up
Time flies. I've been learning java for 2 months. In the first half of the month, I've delayed a lot of progress because of the review. I still have energy to spend on Algorithms and ...
Posted by kevin99 on Wed, 10 Nov 2021 13:56:58 -0800
vue environment construction
vue environment construction
vue front-end framework, but I won't say more about why I configure this environment
Mac environment construction
Install Node
All front-end framework environments need NODE.js. First install the Nodejs development environment, and vue operation needs to be implemented by the npm management tool that depends on nod ...
Posted by quintus on Wed, 10 Nov 2021 13:41:59 -0800
[ random thoughts ] numpy realizes linear regression (batch gradient descent method)
preface
Linear regression (Linear Rrgresson) is one of the simplest machine learning algorithms. It is the first algorithm for most new machine learning, which is equivalent to the "Hello World" in machine learning. In order to let everyone better learn linear regression, the author will use numpy (handwritten) batch gradient d ...
Posted by Codewarrior123 on Wed, 10 Nov 2021 13:41:32 -0800