Computer Level 2 vb Programming Course Chapter 10 Keyboard and Mouse Events
This chapter describes the lighted event process of keyboard and mouse.
KeyPress event
KeyPress events occur when a key on the keyboard is depressed
Precise Description: Press a key and we will trigger the KeyPress event with focus at this time.
Th ...
Added by mpunn on Thu, 15 Aug 2019 15:49:49 +0300
Byte Buffer Stream-Character Stream
1. Byte buffer stream
1.1 Byte Buffer Stream Construction Method [Application]
Introduction to Byte Buffer Stream
lBufferOutputStream: This class implements buffering output streams. By setting such an output stream, the application can write ...
Added by jd023 on Thu, 15 Aug 2019 15:40:04 +0300
Windows 10+dlib19.17+face_recognition: Classifying family photos using face recognition, 4-6 seconds/sheet parallel acceleration
We installed dlib19.17 and face_recognition in Windows 10 environment. For details, please refer to:
https://blog.csdn.net/weixin_41943311/article/details/91866987
https://blog.csdn.net/weixin_41943311/article/details/98482615
Then, we use dlib19.17+face_recognition to classify family photos, whic ...
Added by jstinehelfer on Tue, 13 Aug 2019 07:02:45 +0300
Sword Finger offer Online Programming (08-12) [8]
Date: 2019--8-12
1. Converting strings to integers (Examining knowledge points: strings and programmatic conversions)
Topic Description
Converting a string to an integer (realizing the function of Integer.valueOf(string), but returning 0 when string does not meet the number requirement) requires t ...
Added by mysoogal on Mon, 12 Aug 2019 08:55:36 +0300
js string algorithm
General methods of strings
1.concat stitching string
var a="123";
var b="456";
console.log(a.concat(b)); //123456
console.log(a.concat(b).concat(a)); //123456123
2.indexOf finds characters from left to right and returns an index or -1
Note: No matter which direction ...
Added by akano on Mon, 12 Aug 2019 05:39:29 +0300
Reducing Redis Memory Occupancy
1. Advantages of reducing redis memory usage
1. Help reduce the time required to create and load snapshots
2. Improving the efficiency of loading and rewriting AOF files
3. Shorten the time required to synchronize from the server
4. Allowing redis to store more data without adding additional hardware
2. Short structure
Redis provides a se ...
Added by breath18 on Tue, 16 Jul 2019 21:56:30 +0300
JS Object - Array Attribute Method Summary
Property name
describe
prototype
Adding attributes and methods to objects
constructor
Returns an array object reference
length
Returns the number of array elements
Method name
describe
Return
Change the original array
concat()
Connect multiple arrays
New array after connection
N
join('')
Combines all elements in an array into ...
Added by cesar_ser on Tue, 16 Jul 2019 00:24:32 +0300
Noejs Learning Notes
The direct embodiment of Node.js asynchronous programming is callback.
Asynchronous programming relies on callbacks to achieve, but it can not be said that the program will be asynchronous after using callbacks.
Callback functions are called when the task is completed. Node uses a large number of callback functions. All of Node's API s suppo ...
Added by capetonian on Sat, 13 Jul 2019 23:37:54 +0300
Assembler-1 (32-bit unsigned multiplication)
This is the content of "Principles and Interface Technology of Microcomputer" in the course design of the school. I have written some drawbacks, but basically realized the operation function. I will record it temporarily for future review, which is also for your reference.
Defects:
1. Only fixed length input (32 bits corresponding t ...
Added by amos_ on Fri, 12 Jul 2019 19:53:12 +0300
Simple learning for JS hash lists
Simple learning of JS hash lists
The HashTable class, also known as the HashMap class, is a Hash list implementation of the Dictionary class.
The purpose of the hash algorithm is to find a value in the data structure as quickly as possible.
In the previous study, if you wanted to get a value in a data structure, you had to traverse the entire d ...
Added by mpb001 on Fri, 12 Jul 2019 19:14:35 +0300