k8s ingress principle and ingress-nginx deployment test

The previous article talked about service. This article is about ingress. What is ingress? The last article introduced service, which exposed three ways of service: Cluster ip, NodePort and LoadBalance. These three ways are provided in the service dimension. The function of service is embodied in two aspects. Within the cluster, it keeps track ...

Posted by foyer on Mon, 29 Jul 2019 03:49:50 -0700

iOS Learning Notes II - OC Code Specification

Articles Catalogue I. Normative Format Headfile format of 1.1 specification 1.2 Specification source file format Naming requirements 2.1 Clear Function 2.2 Consistency 2.3 Use prefixes 2.4 typesetting conventions 2.5 Class and Proocal 2.6 File Name Suffix Naming Rules 3.1 Method and Membership N ...

Posted by achild on Sun, 28 Jul 2019 06:40:38 -0700

Principle of proxychains implementation

proxychains function proxychains allow commands to access the network through the specified proxy. For example: wget www.google.com Due to the firewall, direct access is not available.   If you already have a proxy service (socks5://127.0.0.1:1080), after configuring proxychains: proxychain ...

Posted by birdie on Sun, 28 Jul 2019 00:04:34 -0700

How to use Markdown

Links to the original text: http://www.cnblogs.com/riasky/p/3363550.html From: http://wowubuntu.com/markdown/basic.html Paragraphs, Titles, Block Codes A paragraph consists of more than one connected line sentence, and more than one bl ...

Posted by SoulAssassin on Sat, 27 Jul 2019 04:20:10 -0700

Again, Tucao: the data on the xml root level is invalid. Line 1, position 1

Links to the original text: http://www.cnblogs.com/XChWaad/p/3346875.html First, I write an XML in memory using xmlTextWriter. The method is as follows: private byte[] GetSendByte(List<Article> returnList) { // C ...

Posted by djcubez on Fri, 26 Jul 2019 23:56:07 -0700

How does cameraserver of Android Camera Principle relate to cameraprovider

The camera architecture we are familiar with is the following picture: The bottom layer is camera driver, which is strongly related to hardware; the top layer of camera driver is the operation-driven camera HAL layer, which is also the core code of each manufacturer's camera. The manufacturer encapsulates its own code well without observing th ...

Posted by Paul_Bunyan on Tue, 23 Jul 2019 10:07:51 -0700

GSON Source LinkedTreeMap Learning

In the process of learning GSON, LinkedTreeMap, the basic data type of GSON, was discovered, so learning was started. private final LinkedTreeMap<String, JsonElement> members = new LinkedTreeMap<String, JsonElement>(); LinkedTreeMap, everything is so familiar. In jdk, there are LinkedMap, TreeMap and TreeMap. What is ...

Posted by Luvac Zantor on Tue, 23 Jul 2019 08:41:08 -0700

Man-machine dialogue system

Man-machine dialogue NLP (natural language process) natural language processing is a part of machine learning. Both google and Baidu have claimed great achievements in machine translation in recent years. When I open bing search materials, I also like to chat with Microsoft's chatbot. import nltk from nltk.stem.lancaster impo ...

Posted by Sir William on Sat, 20 Jul 2019 07:34:00 -0700

Android uses Kotlin to build Gradle

Android Studio Gradle 3.4.2 5.1.1 First of all, kotlin-dsl is nothing new. Gradle 5.0 was releasedGradle Kotlin DSL The current version is 1.0.2 Is it possible to abandon groovy and embrace kotlin now? Migration is still a bit of a hassle! Currently, when creating a project in Android Studio, Groo ...

Posted by techjosh on Thu, 18 Jul 2019 23:16:43 -0700

The latest personal free blog based on hexo in 2017 - Custom Page Style 1

Preface I promised a commentator friend to write this custom CSS style to modify the next theme under hexo. I had planned to write a lot of modification methods and blog optimization about the theme under hexo. Because I watched a movie with my friend in the evening, I was not allowed to write so much, so this article just introduces how to wr ...

Posted by Arkane on Wed, 17 Jul 2019 13:00:40 -0700