https://www.alibabacloud.com/forum/read-830 This article illustrates how to quickly deploy a safe Kubernetes cluster on Alibaba Cloud VPC, and install ...
分类:
Web程序 时间:
2020-03-23 15:08:52
阅读次数:
106
默认网络1、查看docker网络: docker network ls Docker中默认的三种网络分别为bridge、host和none,其中名为bridge的网络就是默认的bridge驱动网络,也是容器创建时默认的网络管理方式,配置后可以与宿主机通信从而实现与互联网通信功能,而host和none ...
分类:
其他好文 时间:
2020-03-23 00:26:33
阅读次数:
93
Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target. ...
分类:
其他好文 时间:
2020-03-22 19:30:38
阅读次数:
66
一、安装编译工具及库文件 [root@centos ~]# yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel 二、首先要安装PCRE PCRE 作用是让 Nginx 支持 Rewrite 功能。 下载、 ...
分类:
其他好文 时间:
2020-03-22 17:33:27
阅读次数:
67
一、Github项目地址 https://github.com/AllForward/GP_Homework/tree/master/个人项目 二、题目叙述 这个项目要求写一个命令行程序,模仿已有wc.exe 的功能,并加以扩充,给出某程序设计语言源文件的字符数、单词数和行数。实现一个统计程序,它能 ...
分类:
其他好文 时间:
2020-03-22 01:21:49
阅读次数:
70
"https://www.luogu.com.cn/problem/P4284" 比较套路的概率题? 由期望的线性性可以把每个点拆开来,然后答案就是每个点通电的概率之和。 通电的概率并不怎么好算,我们可以算点$u$不通电的概率$f[u]$,然后答案就是 $$\sum\limits_{i=1}^n 1 ...
分类:
其他好文 时间:
2020-03-21 21:44:13
阅读次数:
76
贪心,有一些点少不留意就会wa #include <iostream> #include <cstdio> #include <cstring> #include <limits> //#include <stack> #include<queue> #include <algorithm> #de ...
分类:
其他好文 时间:
2020-03-21 21:43:42
阅读次数:
64
1.sql语句 select distinct <select_list> from left_table <join_type> join right_table on <join_condition> where <where_condition> group by <group_by_list ...
分类:
数据库 时间:
2020-03-21 21:36:47
阅读次数:
71
MySql锁与InnoDB引擎 mysql的锁是面试中很高频问题,也是我们在日常开发中经常会遇到但是我们并没有注意到的地方。我把我自己理解的锁通过本篇博文分享出来,由于锁需要结合事务来理解,本文只介绍锁的基本概念,同样为了理解事务会更加深刻,先介绍了InnoDB的一些基础概念,也是记录自己的学习,欢 ...
分类:
数据库 时间:
2020-03-21 18:12:42
阅读次数:
72
git-book: https://git-scm.com/book/zh/v2 项目分支流程管理规范: https://www.jianshu.com/p/217d2b3bc96d <- I should click it! 我关注的点: 分支:一条时间线,一条执行线,每次修改都会在分支上留下一个 ...
分类:
其他好文 时间:
2020-03-20 23:55:33
阅读次数:
93