Installation and configuration of flutter
Before installation, I'll talk to you a few words,What is flutterFluent is an open source software development kit (SDK), which is used to "help developers efficiently build multi platform exquisite applications through a set of code base, and support mobile, Web, desktop and embedded platforms". Allow cross platform development. This ...
Posted by paulspoon on Tue, 30 Nov 2021 06:14:40 -0800
round function in SQL Server
round function in SQL Server
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---SQL Rounding question 1:
SELECT CAST('123.456' as decimal) ---123 You will get 123 (the after the decimal ...
Posted by Permutant on Tue, 30 Nov 2021 06:02:01 -0800
16 Dart tips that every fluent developer should know (Section 3)
1. Do you know? Dart supports string multiplication.This is a simple program that shows how to print China with string multiplication. Come on, Gansu hold on:My hometown Gansu is ill now, but I believe he will get better!void main() {
for (var i = 1; i <= 5; i++) {
print('Gansu hold on, beef noodles, come on!' * i);
}
}
// Output:
Ga ...
Posted by seby on Tue, 30 Nov 2021 05:58:37 -0800
Poj1509 glass beads [suffix array or suffix automata SAM]
Portal
analysis
Minimum cyclic string problem Given a string
S
S
S. Each time, you can move its first character to the back to find the string with the smallest dictionary order.
T
T
...
Posted by g0liatH on Tue, 30 Nov 2021 05:53:13 -0800
Common probability distribution and hypothesis test
1 general random variable
1.1 two types of random variables
According to the number of possible values of random variables, they are divided into discrete type (finite value) and continuous type (infinite value).
1.2 discrete random variables
For discrete random variables, the probability mass function (PMF) is used to describe their di ...
Posted by synapp2 on Tue, 30 Nov 2021 05:51:54 -0800
[model training] ubuntu compiles Darknet and YOLO training
Welcome to my official account, reply to 001 Google programming specification. O_o >_< o_O O_o ~_~ o_O Hello, I'm Jizhi horizon. This paper introduces the method of compiling darknet and yolo training on ubuntu.1. Compiling darknet1.1 compiling opencv I won't say much about the installation of cuda and ...
Posted by surajkandukuri on Tue, 30 Nov 2021 05:17:38 -0800
0-1write MC/OS __Basics4
July 24, 2021 10:04:51 Saturday
9, Implementation time base list
What is a time base list
The time base list is time-dependent. Tasks in delay and tasks with timeout restrictions on waiting events will be removed from the ready list and then inserted into the time base list.
The time base list is updated in OSTimeTIck. If the delay time ...
Posted by devil_online on Tue, 30 Nov 2021 05:16:03 -0800
Pat practice - 1003 I want to pass
subject
"Correct answer" is the most gratifying reply given by the automatic question judgment system. This question belongs to PAT's "correct answer" distribution - as long as the read string meets the following conditions, the system will output "correct answer", otherwise it will output "wrong answer". ...
Posted by subrata on Tue, 30 Nov 2021 05:09:50 -0800
Experimental instruction for data structure and algorithm R (2020)
preface:
LPT inner roll: Brush questions every day
Experiment 1 linear table
1. Let the data elements in sequence table A increase in order, try to write A program to insert x into the appropriate position of the sequence table so that the table is still orderly.
#include<stdio.h>
#include<stdlib.h>
#define LIST_INIT_SIZE 100 ...
Posted by sgtpepper on Tue, 30 Nov 2021 05:01:39 -0800
0-1write MC/OS __Basics1
2021-07-16 22:23:32 Friday
1, Bare metal system and multitasking system
Bare metal system
polling systems
During bare metal programming, first initialize the relevant hardware, and then let the main program cycle continuously in a dead cycle to do all kinds of things sequentially, with poor real-time performance.
Front and rear consol ...
Posted by manianprasanna on Tue, 30 Nov 2021 04:59:33 -0800