Java Encryption Technology-the Highest ECC of Asymmetric Encryption Algorithms
Links to the original text: https://my.oschina.net/mohaiyong/blog/221240
ECC
ECC-Elliptic Curves Cryptography (ECC-Elliptic Curves Cryptography) is one of the most intensive public ke ...
Posted by stormszero on Sun, 08 Sep 2019 23:20:29 -0700
Java Encryption Technology-Origin of Asymmetric Encryption Algorithms DH
Links to the original text: https://my.oschina.net/mohaiyong/blog/221266
DH
Diffie-Hellman algorithm (D-H algorithm), key agreement protocol. It is an idea put forward by Diffie and H ...
Posted by WarDeities on Sun, 08 Sep 2019 23:06:22 -0700
A Kind of Automatically Generating Scheme for Developing More Friendly Front-end Skeleton Screen
(Horsehoneycomb technology original content, public ID: mfwtech)
A study from Akamai found that after interviewing 1,048 online shoppers:
About 47% of users expect their pages to load in two seconds.
If the page load time exceeds 3 seconds, about 40% of users will choose to leave or close the page.
For a long time, in order to i ...
Posted by waterox on Thu, 05 Sep 2019 21:27:18 -0700
pthread Thread Knowledge Points
pthread Thread Knowledge Points
The two fundamental issues of communication between threads are mutual exclusion and synchronization.`
#include<pthread.h>
1. pthread_create1. Function Prototypeint pthread_create(pthread_t tidp,const pthread_attr_t attr,(void)(start_rtn)(void),void arg);
2. Functional functions:pthread_create is a functio ...
Posted by PierceCoding on Fri, 30 Aug 2019 18:16:32 -0700
Memory Management-Manual Memory Management in MRC Era
Manual Memory Management in MRC Era
In iOS, the memory of OC objects is managed by reference counting.
A newly created OC object reference count defaults to 1. When the reference count is reduced to 0, the OC object will be destroyed and its occup ...
Posted by nileshkulkarni on Thu, 29 Aug 2019 22:39:37 -0700
ELK-MACOS build deployment (including cluster)
brief introduction
Elasticsearch
Elastic search is a real-time distributed search and analysis engine that allows you to explore your data at a speed and scale you've never had before. It is used as a combination of full-text retrieval, structured search, analysis and the three functions. Support cluster configuration.
Logstash/Filebea ...
Posted by poujman on Fri, 23 Aug 2019 22:14:23 -0700
Some common design patterns of JavaScript
Definition of Design Patterns: Simple and Elegant Solutions for Specific Problems in Object-Oriented Software Design
Design patterns are some of the solutions that predecessors summed up to solve a specific scenario. Maybe it's normal to feel that the design pattern is not so well understood when you first get into contact with programming with ...
Posted by antoine on Sun, 18 Aug 2019 23:25:49 -0700
Python-day16 (formal learning)
Catalog
Modular
What is a module?
Four Forms of Modules
Why use modules
How to use modules
import
from...import...
similarities and differences
Cyclic Import Problem
Solution
1.
2.
Module Search Path
random module
...
Posted by buraks78 on Thu, 15 Aug 2019 01:46:23 -0700
Why should the @@IDENTITY function be avoided in SQL Prompt, a SQL grammar prompt tool?
SQL Prompt It is a practical SQL grammar prompt tool. SQL Prompt automatically retrieves the database object name, grammar and code fragments to provide users with appropriate code selection. Automatic script settings make code easy to read -- especially when developers are not familiar with scripts. SQL Prompt can be installed and used, which ...
Posted by UTAlan on Tue, 13 Aug 2019 03:15:09 -0700
web crawler explanation - urllib library crawler - state - exception handling - browser camouflage technology, user agent settings
If the crawler does not have exception handling, the program will crash and stop working once an error occurs in the crawl, and exception handling can continue even if an error occurs.
1. Common status codes
301: redirect to a new URL, permanent
302: Redirected to temporary URL, non-permanent
304: Reque ...
Posted by RandomZero on Mon, 12 Aug 2019 06:09:59 -0700