Smooth restart of GoLang service
elicit questions
In the process of developing with go, if we modify the code, it is control+c that kills the running process, and then go run or go build that runs. When our project goes online, killing the process directly will lead to online service interruption, which is absolutely not allowed in ...
Posted by benrussell on Sat, 08 Feb 2020 03:31:02 -0800
File System (01): Manage Excel and PDF file types based on the SpringBoot framework
Source code for this article: GitHub. Click here || GitEE. Click here
1. Introduction to Document Types
1. Excel Documents
Excel is a spreadsheet software.Intuitive interfaces, excellent computing functions and chart tools are often used in system development to transfer data to Excel files or to import Excel data into the system, which involve ...
Posted by Round on Thu, 06 Feb 2020 18:54:39 -0800
Python Crawler Serial 5-Proxy, Cookie Resolution
1. ProxyHandler Processing (Proxy Server)
1. Using proxy IP is a common means of crawling
2. Get the address of the proxy server:
www.xicidaili.com
www.goubanjia.com
3. Proxies are used to hide real access. Proxies do not allow frequent access to a fixed site, so proxies must be many.
4. Basic usage steps:
(1) Set proxy address
(2) Create a Pox ...
Posted by landavia on Wed, 05 Feb 2020 08:49:12 -0800
PyTorch: Digital recognizer competition
background
Since I learned PyTorch last time, I have left it for a long time. I almost forgot it. After brushing "die into DL PyTorch" once again, I tried to do the one on Kaggle Digit Reconizer Match.
Reference material
https://tangshusen.me/Dive-into-DL-PyTorch/#/
https://www.kaggle.com/ ...
Posted by next on Wed, 05 Feb 2020 07:10:16 -0800
Build your own Fabric network
Build your own Fabric network
Article directory
Build your own Fabric network
1, Generate organization structure and identity certificate
1.1. crypto-config.yaml configuration file
1.2 generate organization structure and identity certificate
2, Generate additional profiles
2.1. configtx.yaml fi ...
Posted by Vorotaev on Wed, 05 Feb 2020 05:29:12 -0800
ProcessFunction: the lowest level API of Flink
Some operators and functions mentioned above can perform some time operations, but cannot obtain the current Processing Time or Watermark timestamp of the operator, which is simple to call but relatively limited in function. If you want to get the time stamp of Watermark in the data flow, or shuttle bac ...
Posted by eddjc on Wed, 05 Feb 2020 02:21:22 -0800
Hexo Serverless Framework, simple three steps to build your personal blog
Many people want to have their own personal blog, but also look beautiful and cool.Especially for developers, not only can they share their technological insights, but they can also add points during interviews.Here are two useful artifacts. They can be done in 3 minutes without having to be busy at the ...
Posted by willchoong on Tue, 04 Feb 2020 17:41:05 -0800
OpenGL with QtWidgets: Light color
(This is a study note for LearnOpenGL, translated in Chinese for the tutorial) https://learnopengl-cn.github.io/)
0. Preface
Previously, I learned the introductory chapter of LearnOpenGL, and this article started learning about the colors of light (Lighting).
1. How to implement
Color can be digi ...
Posted by luke101 on Tue, 04 Feb 2020 16:36:27 -0800
Using fastDFS client to transform file upload
java client
Mr. Yu Qing provides a java client, but as a C programmer, the Java code written can be imagined. And it's been a long time since maintenance.
Here we recommend an open source FastDFS client that supports the latest spring boot 2.0.
It is very simple to configure and use. It supports c ...
Posted by changeback on Tue, 04 Feb 2020 04:55:40 -0800
How to create a zip archive of directories in Python?
How to create a zip archive of directory structure in Python?
#1 building
To add compression to the generated zip file, see This link .
You need to change:
zip = zipfile.ZipFile('Python.zip', 'w')
to
zip = zipfile.ZipFile('Python.zip', 'w', zipfile.ZIP_DEFLATED)
#2 building
I am right. Code from Mark Byers Some changes ha ...
Posted by fgm on Mon, 03 Feb 2020 07:34:43 -0800