Qt open source work 37 network transfer server
1, Foreword
Qt has been developed for 10 years, including many projects. Based on the rapid development of web and mobile Internet, a large number of application scenarios need a network transit server, which can realize mobile app or other client remote control devices. Now the Internet of things is developing very rapidly, which is the genera ...
Added by j_miguel_y on Sun, 21 Jun 2020 06:10:18 +0300
rrweb practical case and JS Download
I found this front-end artifact tool by accident. First, about rrweb:
This tool can record the user's operation process on the Web page, turn it into serializable log data, and play it back. Programmers can use it to debug bugs remotely, and product managers can use it to collect and analyze user b ...
Added by c-o-d-e on Sat, 20 Jun 2020 05:58:46 +0300
python Practical Cases of File Operations
1. Write before
Today, I've sorted out several Python cases about file operations, including reading and writing files with python, getting file names, getting file suffixes, and modifying file suffixes in bulk.Several methods of this collation are still from the point of view of use.For example, I ne ...
Added by rsmarsha on Wed, 17 Jun 2020 19:28:31 +0300
Spring Boot docking Alipay payment
Article catalog
1. Preliminary preparation
2. Coding
1. The configuration class can also be written to the Spring boot configuration file for more flexibility
2. Payment Service
3. Controller omitted
4. The front-end children request to get the returned script and execute it directly
1. Prelim ...
Added by nomad9 on Wed, 17 Jun 2020 08:14:17 +0300
Linux - NFS server summary
reference resources
http://cn.linux.vbird.org/linux_server/0330nfs.php#What_NFS_0
Introduction to NFS
introduce
NFS is network Short for file system, the main function is to let different machines and different operating systems share the specified resource files with each other through the network. It can be simply considered as a ...
Added by rhaggert on Wed, 17 Jun 2020 07:47:11 +0300
JAVA-IO streaming advanced NIO
NIO
Java NIO (New IO) is a new IO API introduced from Java version 1.4. NIO has the same function and purpose as the original IO, but it is used in a totally different way. NIO supports buffer oriented, channel based IO operations. NIO will read and write files in a more efficient way.
Main differences ...
Added by Bill H on Tue, 16 Jun 2020 10:48:24 +0300
Multi threshold image segmentation based on genetic algorithm
catalog
1. Summary
2. Introduction
3 Otsu threshold segmentation
3.1 classical Otsu method
3.2 Otsu method with multiple thresholds
3.3 multi threshold Otsu method 2
4 genetic algorithm design
4.1 individual code
4.2 mating operation
4.2.1 single location and single point crossing
4.2.2 mu ...
Added by tigomark on Sun, 14 Jun 2020 11:27:50 +0300
shell script exercises
1. Count the number of files under / var/log.
//find /var/log -type f | wc -l;
2. How to output the running result of F1.txt file to F2.txt?
// ./F1 > F2.txt shF1 > F2.txt;
3. Write a script to judge which ip addresses are currently online in the 192.168.1.0/24 network, and ping the gen ...
Added by brbsta on Sun, 14 Jun 2020 05:18:43 +0300
Kolla ansible deployment of all in one single node openstack
About kolla ansible
kolla's mission is to provide production level, out of the box delivery capabilities for the openstack cloud platform. kolla's basic idea is that all services are containers. All services are run based on docker, and one container can run only one service (process), so as to run do ...
Added by randomthinker on Sat, 13 Jun 2020 11:25:04 +0300
[source code analysis and design mode 12] command mode
1, Basic introduction
1. In software design, we often need to send a request to some objects, but we don't know who the receiver of the request is or what the requested operation is. We just need to specify a specific request receiver when the program is running. At this time, we can use the command ...
Added by Simbachips on Fri, 12 Jun 2020 12:05:51 +0300