Using the Go module

brief introduction Go will finally have its own modules. Previously, only packages were available, and modules were the parent of packages. Below is a summary of the two articles you read on the official website. https://blog.golang.org/using... https://blog.golang.org/migra... Using the Go module A module is a collection of Go packages store ...

Posted by BillBillJr on Sat, 31 Aug 2019 22:07:41 +0200

Super Simple Springboot+swagger 2 Realizes Online Interface Debugging

Preface: As a standard background development lion, is it necessary to prepare interface documents for front-end interaction when it provides interface to it? Is it necessary to pass the self-test before interacting with him? Is it necessary to write interface calls (such as postman) before self-testing? As a responsible and upward-looking eng ...

Posted by stephenlk on Sat, 31 Aug 2019 17:24:31 +0200

TextView for Android Control to Mix Static Graphics with Dynamic GIF Graphics

Recently, when working on project functions, you need to display text in TextView. At first, you thought it was simple. Just use an ImageView and a TextView to display, but you found that doing so does not achieve the desired effect. This involves rich text TextView to display text. Here's a static pictureGraphics and text of dynamic GIF are di ...

Posted by angel777 on Tue, 27 Aug 2019 04:35:03 +0200

Cookie and Session in Node

1,Cookie HTTP is a stateless protocol. Example: Open the home page of a domain name, and then open other pages of the domain name, the server can not identify visitors. That is, the same browser visits the same website, each visit has nothing to do with it. Cookie's principle is that after the client browser first accesses the server, the ser ...

Posted by slipperyfish on Mon, 26 Aug 2019 17:40:04 +0200

Installing prometheus in k8s cluster

In earlier versions, Kubernetes provided a combination of heapster, influxDB and grafana to monitor and control systems. Now the more popular monitoring tool is prometheus, which is an open source version of Google's internal monitoring and alarm system. Compared with other traditional monitoring tools, Prometheus has the following characteris ...

Posted by vegnadragon on Sat, 24 Aug 2019 17:20:00 +0200

Golden Map--Encapsulation of Controls--1

Preface With the popularity of maps, there may be many beginners like me who spend a lot of effort in understanding common map controls. So, today we mainly share some plug-in encapsulation of map control. Direction involved Today, the main learning ...

Posted by shawnyoung on Thu, 22 Aug 2019 11:20:55 +0200

Spring Boot Fast Integrated kaptcha Generation Verification Code

Kaptcha is a very practical verification code generation tool. It can generate a variety of verification codes through configuration, which can be displayed in the form of pictures, so it can not be copied and pasted. Contents of this article Introduction to Kaptcha2. Spring Boot Integration Kaptcha1. Introducing jar package into pom.xm ...

Posted by ridiculous on Wed, 21 Aug 2019 14:40:08 +0200

Data Exploration Visualization Library yellowbrick-tutorial for Python Machine Learning

Background introduction When learning sklearn er, besides the difficulty of algorithm, we have to learn matplotlib visualization. For my practical application, visualization is more important. However, the ease of use and aesthetics of matplotlib are not complimentary. One after another, plotly and seaborn have been used and finally fixed in Bo ...

Posted by koddos on Tue, 20 Aug 2019 11:27:31 +0200

Summary of Android Q Adaptation

Document description This document is based on Google AndroidQ Official Documents and Huawei Q Version Application Compatibility Correction Guidance (Huawei is a bit outdated) Testing machines used: Pixel, Android Q-beta 6-190730.005 Version ...

Posted by dungareez on Mon, 19 Aug 2019 05:31:17 +0200

CSS-Small Practice of Web Page Making

1. Naked Running of Web Pages <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Naked Running of Web Page </title> </head> <body> <h1> James Gosling, the Father of Java</h1> <img src="../java.jpg"/> <p> James Gosling, the ...

Posted by weevil on Mon, 12 Aug 2019 14:00:04 +0200