My study notes 11.10

2021SC@SDUSC Coordinate axis to configure xAxis: the x axis in the rectangular coordinate system grid. xAxis.show  : Whether the x-axis is displayed. The default is true. xAxis.gridIndex  : The index of the grid where the x-axis is located. It is located on the first grid by default. The default value is 0. xAxis.position: th ...

Posted by fowlerlfc on Wed, 10 Nov 2021 05:40:41 -0800

useMutableSource for in-depth interpretation of "React18 new features"

I. PrefaceHello, I'm 👽 , Next, there will be a new series, interpretation of the new features of React v18, which mainly aims at the background, function introduction and principle analysis of the new features, and dares to be the first person to eat crabs. I hope my friends can praise and forward, and then watch a wave official account and s ...

Posted by leoric1928 on Wed, 10 Nov 2021 05:35:56 -0800

04 - configure shortcut key to start terminal / terminal beautification

1, Configure startup terminal shortcut command: 1. Turn on automatic operation     2. Select quick operation   3. Set "workflow received" to "no input"; Then drag run AppleScript on the left to the right   4. Replace the following code at the code on the right. The code opens the terminal on the desktop and ...

Posted by jackliu97 on Wed, 10 Nov 2021 05:24:23 -0800

Javascript type judgment

Basic types of JS There are seven basic types of JS: bigInt (bigInt is a built-in object and the second built-in type other than symbol), number, string, boolean, symbol, undefined and null. Complex data types include objects, including basic objects, functions, arrays, and built-in objects (Date, etc.). Method of judging type Method 1. type ...

Posted by TLawrence on Wed, 10 Nov 2021 05:23:22 -0800

Intelligent transportation day01-03_imutils

1. Introduction to imutils function imutils is a package based on OPenCV, which can call the OPenCV interface more simply. It can easily realize a series of operations such as image translation, rotation, scaling, skeletonization and so on. Installation method: pip install imutils Confirm that numpy,scipy,matplotlib and opencv are installe ...

Posted by shiflett on Wed, 10 Nov 2021 05:16:34 -0800

The ranking algorithm that interviewers like to ask

prefaceAfter a year of self-study, JAVA ABA finally made an appointment for an interview. However, the interviewer asked her to talk about her understanding of sorting algorithm.Interviewer: do you know anything about algorithms? Sort this one, okay?ABBA ABBA: understand that the sorting algorithm mainly includes bubble sort, insert sort, Hill ...

Posted by darf on Wed, 10 Nov 2021 04:59:43 -0800

Data acquisition experiment 4

1. Operation ① 1.1 operation content Requirements: master the serialization output method of Item and Pipeline data in the scene; Scrapy+Xpath+MySQL database storage technology route crawling Dangdang website book data Candidate sites: http://www.dangdang.com/ Key words: Students' free choice Output information: MySQL database storage ...

Posted by baw on Wed, 10 Nov 2021 04:47:13 -0800

RFC guide | building secure I/O

motivationRecently, Rust officially merged an RFC [1]. By introducing the concept of I/O security and a new set of types and characteristics, it provides users of AsRawFd and related characteristics with assurance about their original resource handle, so as to make up for the loophole of encapsulation boundary in Rust.The Rust standard library ...

Posted by volant on Wed, 10 Nov 2021 04:46:27 -0800

Synchronization exercise (Java SE)

Case 1: data sorting in string Requirement: there is a string: "91 27 46 38 50". Please write a program to realize it. The final output result is: "27 38 46 50 91" Idea: 1. Define a string         2. Store the numeric data in the string into an array of int type           &nb ...

Posted by NogDog on Wed, 10 Nov 2021 04:44:22 -0800

Java learning 18: Reflection

18. Reflection Reflection mechanism Reflection mechanism allows the program to obtain the internal information of any class (such as member variables, constructors, member methods, etc.) with the help of Reflection API during execution, and can operate the properties and methods of objects. After loading the Class, a Class object is generate ...

Posted by Kurtismonger on Wed, 10 Nov 2021 04:34:38 -0800