c#Winform Custom Control - Bread Crumb Navigation

premise It's been 7 or 8 years, and I've always wanted to make a beautiful set of custom controls, so I've got this series of articles. GitHub: https://github.com/kwwwvagaa/NetWinformControl Code cloud: https://gitee.com/kwwwvagaa/net_winform_custom_control.git If you think it's OK, please click ...

Posted by carlosx2 on Wed, 02 Oct 2019 04:17:07 -0700

Building Etcd Cluster

Article directory I. About ETCD II. Stand-alone Installation 3. Building Clusters Official website: https://etcd.io/ Github: https://github.com/etcd-io/etcd/releases I. About ETCD etcd is an open source, distributed key-to-value data storage system that provides shared configuration, service ...

Posted by thorpe on Wed, 02 Oct 2019 01:58:37 -0700

lsyncd-Real-time Synchronization (Mirror) daemon

E-mail: 1226032602@qq.com Official documents https://axkibe.github.io/lsyncd/ https://github.com/axkibe/lsyncd brief introduction Lsyncd uses file system event interfaces (inotify or fsevents) to monitor changes to local files and directories. Lsyncd organizes these events for a few seconds and then ...

Posted by stilgar on Tue, 01 Oct 2019 20:25:17 -0700

xlnet Chinese text classification task

xlnet Chinese version of the pre training model has finally come out, see the address. https://github.com/ymcui/Chinese-PreTrained-XLNet After coming out, we tried the Chinese text categorization model. The xlnet model has changed many things compared with Bert. The model level is not much. The curre ...

Posted by kashmirekat on Tue, 01 Oct 2019 09:03:56 -0700

Abstract Multiplexing of Video Upload Method for Small Program JAVA (57)

There are video uploads in the user center and video uploads in the video presentation. How to abstract this js is the key. Now let's try to extract it from the public js for easy invocation. Source code No.15 in https://github.com/limingios/wxProgram.git Steps of abstract methods New public js Find a copy of the video upload code in mine an ...

Posted by brianlange on Tue, 01 Oct 2019 06:39:13 -0700

Hystrix implements ThreadLocal context transfer between main thread and sub-thread

Problem description When I use log link tracking( Link Tracking of Logs Based on SLF4J MDC Mechanism I found that when using Hystrix thread pool isolation, I couldn't copy the MDC context of the main thread from the sub-thread.( Slf4j MDC mechanism The log link is blocked. problem analysis Hystrix thread pool isolation is implemented using Hys ...

Posted by andyhajime on Mon, 30 Sep 2019 23:50:50 -0700

Java http tool class

Quickly launch http requests in projects I. Adding Dependency <dependency> <groupId>cn.gjing</groupId> <artifactId>tools-httpclient</artifactId> <version>1.0.2</version> </dependency> II. Project Use 1. HTTP request (GET case) public static void main(String[] args) { HttpClient ...

Posted by MrOnline on Mon, 30 Sep 2019 22:20:48 -0700

Asynchronous redis of Swoole learning

I. Asynchronous redis service installation Swoole Official Documents Guide - > Quick Start - > Asynchronous Redis client 1. swoole uses asynchronous redis preconditions redis services hiredis library (X) Compiling swoole requires adding -- enable-async-redis (X) Note: If your version of swoole is over 4.3, you only need to install redi ...

Posted by will35010 on Mon, 30 Sep 2019 21:34:28 -0700

The way of learning in Golang - the first problem of leetcode go learning. Sum of two numbers

Golang Foundation [1. Two Sum](https://leetcode.com/problems/two-sum/) subject Solution 1 Violent Solution Solving problems Solution 2 Query the difference serial number Solving problems Write test program Acknowledgement: LeetCode-In-Go 1. Two Sum subject Given an array of integers, return ...

Posted by Paul Moran on Mon, 30 Sep 2019 20:35:39 -0700

Providing an external http interface API based on grpc through grpc-gateway

The advantages of grpc are no longer described, but how to provide Restful interface to the outside world and how to use grpc-gateway to convert grpc to Restful API when there is no desire to develop the same function repeatedly. install go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway go get -u github.com/micro/protobuf ...

Posted by kmussel on Mon, 30 Sep 2019 16:21:48 -0700