Tag:Agreement
-
Time:2021-3-6
summary In my work, I feel that HTTP protocol is more important. In July 2020, I sorted out the system, drew the XMIND, and later supplemented the details and demo of each module
-
Time:2021-3-5
A series of articles: awesome rust Mongodb officially released mongodb rust driver Rust organization on GitHub Learn rust through examples Rust implementation of common algorithms Lightweight Windows GUI tool library based on Rust Chinese English comparison of rust language terms Official weekly diary of rust Small and fast rust asynchronous runtime SMOL Microsoft open source […]
-
Time:2021-3-5
2.3 <?xml version=”1.0″ encoding=”ISO-8859-1″?> <!DOCTYPE web-app PUBLIC “-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN” “http://java.sun.com/dtd/web-app_2_3.dtd”> <web-app> </web-app> 2.4 <?xml version=”1.0″ encoding=”UTF-8″?> <web-app id=”WebApp_9″ version=”2.4″ xmlns=”http://java.sun.com/xml/ns/j2ee” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=”http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd”> </web-app> 2.5 <?xml version=”1.0″ encoding=”UTF-8″?> <web-app xmlns=”http://java.sun.com/xml/ns/javaee” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=”http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd” version=”2.5″> </web-app> JDK version above 1.5 3.0 <?xml version=”1.0″ encoding=”UTF-8″?> <web-app version=”3.0″ xmlns=”http://java.sun.com/xml/ns/javaee” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=”http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd”> </web-app> JDK […]
-
Time:2021-3-5
The samesite property of cookie is used to restrict the third-party cookie, so as to reduce the security risk。 It can set three values: Strict Lax None 1.Strict Strict is the most strict,No third-party cookies are allowed. Cookies will not be sent under any circumstances when cross sites. In other words,Only if the URL of […]
-
Time:2021-3-3
It’s hard to do it, but it’s easy to do it ..Directly select the JSON file to upload, no need to store the file package controller import ( “encoding/json” “errors” “fmt” “gindemo/middleware” “github.com/gin-gonic/gin” ) type User struct { Uid string `json:”uid”` Owner string `json:”owner”` User string `json:”user”` } type Json struct { } func Loadfile(c […]
-
Time:2021-3-3
Http2 has been released for a long time. Compared with 1.0, http2 has been greatly improved. On the premise of semantic compatibility with 1.0, it greatly improves web performance and further reduces network latency.Check whether your browser supports http2, and compare the performance gap between 1.0 and 2.0http2.0 Just recently, when we were testing the […]
-
Time:2021-3-2
github.com/MasoniteFramework/mason… pypi.org/project/masonite/ docs.masoniteproject.com/ Add ORM to replace previous Oracleorm.masoniteproject.com/ The author updates GitHub very quickly, just like laravel, the update speed is very fast. This work adoptsCC agreementReprint must indicate the author and the link of this article
-
Time:2021-3-2
The auth type is supported in this version and the attributes not supported in the previous version, which also means that the protocol of mqtt V5.0 has been supported, and the bug repair and code optimization are left in the later version Most scenarios are verified directly at connect, so the auth type is not […]
-
Time:2021-3-2
On demand content processing HTTP clients may send protocol headers to tell the server which resources they have seen. This is when getting the web page (using HTTP)GETRequest) is very common to avoid sending the complete data already obtained by the client. However, the same protocol header can be used for all HTTP methods(POST, PUT, […]
-
Time:2021-3-1
@[toc] IPFs project introduction IPFs introduction: IPFs (inter planar file system) is a global, point-to-point distributed version of the file system, the goal is to supplement (or even replace) the current rule of the Internet Hypertext Transfer Protocol (HTTP), all with the same file system computing devices connected together. The principle uses content-based address instead […]
-
Time:2021-2-25
A series of articles: awesome rust Mongodb officially released mongodb rust driver Rust organization on GitHub Learn rust through examples Rust implementation of common algorithms Lightweight Windows GUI tool library based on Rust Chinese English comparison of rust language terms Official weekly diary of rust Small and fast rust asynchronous runtime SMOL Microsoft open source […]
-
Time:2021-2-25
A series of articles: Simple implementation of HTTPS (1) automatic implementation of SSL Simple implementation of HTTPS (2) self signed certificate As we all know, HTTP protocol is an insecure protocol, and HTTPS protocol is the abbreviation of HTTP over SSL / TLS, which means “use”SSL/TLSHTTP, also known as “hypertext transfer security protocol”. HTTP with […]