Linux 12 enterprise practice -- 12ubuntu deploying K8s cluster

0. Architecture diagram 1. Network and system settings 1.1 /etc/profile agent sudo vi /etc/profile Comment out the following agent configuration source /etc/profile 1.2 wget agent sudo vi /etc/wgetrc 1.3 clearing environment variables env | grep -i proxy unset HTTPS_PROXY unset HTTP_PROXY unset FTP_PROXY unset https_prox ...

Posted by chrispos on Sat, 27 Nov 2021 20:57:57 -0800

Spring Data JPA - property details

Recently, I checked a spring data jpa problem. In fact, it can not be regarded as a framework level problem, but rather a configuration problem; Because spring data jpa has not been used before (more mybatis or self-developed orm components), it is expected to record the configuration of spring data jpa through this article. Starting from the ...

Posted by umer on Fri, 26 Nov 2021 13:09:54 -0800

Java 8 | how to initialize Map & List2Map gracefully

The great Java 18 is coming out soon, and we may not be familiar with the core Lambda usage of Java 8. This article shares several tips for operating Map in the development process on Stream technology. After reading this article, I believe you will have a new understanding of Stream. 1, Gracefully initialize a Map Before looking down, firs ...

Posted by cuteflower on Fri, 26 Nov 2021 08:43:41 -0800

shell learning notes network operation example

From Chapter 5 of Linux Shell script introduction, a mess? No such thing! Parsing website data $ lynx -dump -nolist http://www.johntorres.net/BoxOfficefemaleList.html |grep -o "Rank-.*" | sed -e 's/ *Rank-\([0-9]*\) *\(.*\)/\1\t\2/' | sort -nk 1 > actresslist.txt 1 Keira Knightley 2 Natalie Portman 3 Monica Bellucci The website is ...

Posted by CavemanUK on Thu, 25 Nov 2021 19:58:18 -0800

Interview - database mysql

concept Do you understand the database index? Generally speaking, the underlying data structure There are two common mysql structures: Hash index, B+ Tree index and full text index. We use innoDB engine, The default is B + tree. Differences between the two structures: The bottom layer of hash index is hash tab ...

Posted by Kerblam on Thu, 25 Nov 2021 12:30:13 -0800

java basic part

Here are some common interview questions, analysis of test sites, answers, etc. Basic concepts Some basic java knowledge, various basic concepts, etc. What are the access modifiers? difference? Modifier Current classSame packageSubclassOther packagespublic√√√√protected√√√×default√√××private√×××    Scan VX for Java data, front-end ...

Posted by Kingskin on Thu, 25 Nov 2021 11:11:47 -0800

Comprehensive experiment of computer network in South China Agricultural University

preface 1, Experimental content 2, Experimental topology 3, Implementation steps   1. Dynamic routing RIP configuration   2. Divide different network segments   3. Configure single arm circuit for R1 and R4 respectively   4. ACL configuration   preface Experiment 1, Experiment 4, Experiment 5 and three ...

Posted by stovellp on Wed, 24 Nov 2021 10:33:38 -0800

Memoirs and practical skills demonstration of Xiaomi router 3 nanny brick rescue

Before saving bricks When the router TTL saved the brick, many netizens reported that they saw the information and couldn't choose. They watched the Startup menu roll over again and again. I have uploaded detailed video tutorials to watermelon, today's headlines and BiliBili. It is estimated that these two websites can accept hundreds of mega ...

Posted by chriswheat on Wed, 24 Nov 2021 04:35:24 -0800

Compose + MVI + Navigation to quickly implement Android client

Recommended by Haowen: Author: Ricardo mjiang preface At the end of July this year, Google officially released the 1.0 stable version of Jetpack Compose, which shows that Google believes that Compose can be used in the production environment. I believe that the wide application of Compose is in the near future. Now should be a better time t ...

Posted by abo28 on Wed, 24 Nov 2021 00:31:08 -0800

UDP(User Datagram Protocol) and code examples

At the beginning of learning the development method of combining C + + and QT, some good tutorials will be moved to their own blog to facilitate future search and learning. This time, a detailed tutorial and code example of udp module are reproduced; UDP(User Datagram Protocol) is a lightweight, unreliable, datagram oriented and connectionless ...

Posted by ripcurlksm on Tue, 23 Nov 2021 20:09:47 -0800