Construction of Go 1.13 Private Agent Service
Original address: Construction of Go 1.13 Private Agent Service.
Setting GOPROXY can only specify one proxy service address prior to the release of Go version 1.13.After entering Go 1.13, GOPROXY supports multi-proxy settings, which can be separated.The following:
export GOPROXY=https://proxy.golang.org,direct
According to the official document ...
Posted by webpoet on Mon, 09 Sep 2019 18:23:23 -0700
How does Go implement protobuf encoding and decoding: source code
Links to the original text: https://mp.weixin.qq.com/s/oY...
This is a companion article to analyze how Go implements protobuf encoding and decoding:
How to Realize the Coding and Decoding of protobuf by Go (1): Principle
How Go implements protobuf encoding and decoding (2): source code
This edition is the second one.
Preface
Last article Ho ...
Posted by adt2007 on Mon, 09 Sep 2019 06:27:51 -0700
Surface Flinger Loading Display Flow of Android P Graphic Architecture
Related source code:
\frameworks\base\services\core\java\com\android\server\display\LocalDisplayAdapter.java
\frameworks\base\core\java\android\view\SurfaceControl.java
\frameworks\base\core/jni\android_view_SurfaceControl.cpp
frameworks\native\libs\ ...
Posted by penguin_powered on Mon, 09 Sep 2019 02:54:49 -0700
Android error summary
Links to the original text: https://blog.csdn.net/u013293125/article/details/52636929#commentBox
# Android error summary
Recently, I have been trying to summarize the mistakes I encounter when I w ...
Posted by Ixplodestuff8 on Sun, 08 Sep 2019 23:15:37 -0700
Intertransformation between Protobuf and POJO - through Json
Preface
This article is Translations between Protobuf and Json A follow-up is mainly to solve the problem of transformation between different ProtoBean s and POJOs in system hierarchy. Transformed Proobuf and Projo have the same name and type attributes (when Proto attribute type is Message, corresponding to Pojo's Object type attributes, they ...
Posted by Simon Mayer on Wed, 04 Sep 2019 05:12:06 -0700
[RPC] Implementation of RPC framework based on netty+zookeeper step by step
The last one realizes load balancing of services, and this one brings link tracking.
For link tracking, most of them refer to Google's dapper paper: https://bigbully.github.io/Dapper-translation/.
Through the summary of the paper, the core elements ...
Posted by rewast on Tue, 03 Sep 2019 07:30:11 -0700
The system integrates the functions of authorizing posts and getting comments from posts on Facebook.
The company's business and foreign trade are closely linked, and the project needs to dock Facebook, Google and Twitter API s. Here's a detailed description of the problems we encounter in docking Facebook.
1. Registering a Facebook account is still troublesome. There are IP restrictions. An IP can't register multiple accounts and can easily b ...
Posted by gojiita on Mon, 02 Sep 2019 20:51:09 -0700
Selenium 3 + Python 3 Automated Testing Series 11 - Window Screenshots and Closing Browsers
Screenshots of windows
Automated use cases are executed by programs, so sometimes the error messages printed are not very clear. If you can save the screenshot of the current window when the script is executed incorrectly, you can see the cause of the error very intuitively through the picture. WebDriver provides four methods to intercept the ...
Posted by dupreelove on Thu, 29 Aug 2019 04:41:53 -0700
Beautiful HTML 5 Web page special effects learning notes _canvas to achieve flame following mouse
Effect:
Lifelike flames follow the mouse and sparks appear to illuminate the background text.
Drawing with canvas
javascript is used, but there is no complex logic. Beginning Degree: Simple
Welcome to my blog to read this article: https://clatterrr.com/archive...
Source code:
Demonstration address: https://clatterrr.github.io/f...
The sou ...
Posted by rich___ on Tue, 27 Aug 2019 03:44:52 -0700
Neural Network Keras
Keras
Keras is a Python deep learning framework, which can easily define and train almost all types of deep learning models. Keras was originally developed for researchers with the aim of rapid experimentation.Key features of Keras
The same code can ...
Posted by kirilisa on Mon, 26 Aug 2019 02:02:28 -0700