Kubedm deploy kubernetes Cluster - kubernetes introduction to actual combat [introduction + Advanced]

1. kubernetes cluster deployment 1.1 kubernetes installation overview To learn kubernetes, first of all, a kubernetes cluster is needed. In order to meet the needs of different scenarios, the community provides different installation methods to meet the needs of various scenarios. Common methods are: MiniKube is a single node installation of ...

Posted by gardnc on Wed, 20 May 2020 21:35:58 -0700

jQuery foundation of front end development

[contents] 1, About jQuery 2, Basic use of jQuery   1, About jQuery 1. Introduction jQuery encapsulates the native js code (with many additional functions)Can let you write less code to complete js operation Similar to the module in python, the front-end module is not called "class library" If you are compatible with mult ...

Posted by wreed on Tue, 19 May 2020 07:01:07 -0700

Haven't you built and used Maven Nexus private library?

Why use private library By default, maven goes to the remote central warehouse to download the JAR package. It's quite slow to visit the foreign network. If everyone in the team downloads the JAR package once, it's undoubtedly a waste of the network. Of course, it can also add the domestic image, such as Ali's, which is relatively stable. But ...

Posted by DeadEvil on Tue, 19 May 2020 03:20:28 -0700

LeetCode 680. Verify palindrome string II

My LeetCode: https://leetcode-cn.com/u/ituring/ My LeetCode source code [GitHub]: https://github.com/izhoujie/Algorithmcii LeetCode 680. Verify palindrome string II subject Given a non empty string s, delete at most one character. Determine whether it can be a palindrome string. Example 1: Enter: "aba" Output: True Example 2: Enter ...

Posted by Ghostgator on Mon, 18 May 2020 23:55:33 -0700

Real time prediction of bitcoin price using LSTM framework

Warm tip: this case is only for learning and research purposes, and does not constitute an investment proposal. The price data of bitcoin is based on time series, so the price prediction of bitcoin is mostly realized by LSTM model. Long term short-term memory (LSTM) is a kind of deep learning model especially suitable for time series data (or ...

Posted by rubik on Sun, 17 May 2020 19:59:36 -0700

openstack Gets Started to Learn More

openstack to learn more Introduction to OpenStack Cloud Computing (1) Service types of cloud computing IAAS: Infrastructure as a service, such as cloud hosts; PAAS: Platform as a Service, e.g. docker; SAAS: Software as a Service, e.g., Purchase Enterprise Mailbox, CDN; Traditional IT IAAS PAAS SAAS 1 Application ...

Posted by Bricktop on Sat, 16 May 2020 18:17:01 -0700

LeetCode 25. K a group of flip list

My LeetCode: https://leetcode-cn.com/u/ituring/ My LeetCode source code [GitHub]: https://github.com/izhoujie/Algorithmcii LeetCode 25. K a group of flip list subject I'll give you a list. Every k nodes will be flipped. Please return to the flipped list. k is a positive integer whose value is less than or equal to the length of the list. If t ...

Posted by didijeeeke on Sat, 16 May 2020 08:08:27 -0700

Spring Cloud cognitive learning: the use of Zuul gateway

catalog zuul effect: Simple example: 0. Create module 1. Import dependency: 2. Add notes to the main program: 3. Configure application.yml: 4. test Configuration syntax:route Add: 💡 The previous article introduced a new component, hystrix. Hystrix is a fuse, which can be used to solve the problem of service fuse and service degradat ...

Posted by BradZynda on Fri, 15 May 2020 00:58:16 -0700

The implementation of C ා to transfer files to the network disk

C - realize file transfer to network disk Introduction: Next, the FTP transfer file is implemented. This article is the same as above. However, the connection is established through cmd. After the connection is established, the operation is also realized through the following steps. Establish the hierarchical structure of files as above, so I w ...

Posted by Fog Juice on Thu, 14 May 2020 08:22:51 -0700

Docker installation and basic management commands

1, About docker 2, Three core concepts of docker 1. Mirror image 2. Container 3. Warehouse 3, Basic operation of installation and docker 1. Installation and start up 2. Image operation of docker 3. Container operation of docker 1, About docker Docker, as the most popular project in the open source community, is an open source tool for runnin ...

Posted by adityamenon90 on Wed, 13 May 2020 17:50:07 -0700