一、Kubernetes是什么 Kubernetes是一个轻便的和可扩展的开源平台,用于管理容器化应用和服务。通过Kubernetes能够进行应用的自动化部署和扩缩容。在Kubernetes中,会将组成应用的容器组合成一个逻辑单元以更易管理和发现。Kubernetes积累了作为Google生产环境运 ...
分类:
Web程序 时间:
2019-09-18 00:13:34
阅读次数:
144
from wxpy import * ## 导入wxpy模块全部发方法bot = Bot(cache_path=True) ## 登入网页版微信 cache_path = True 是设置缓存,不用每次登入扫码print('robot运行中')#one_friend = bot.friends(up ...
分类:
微信 时间:
2019-09-16 14:46:12
阅读次数:
158
9. Palindrome Number Easy Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example ...
分类:
其他好文 时间:
2019-09-15 01:20:34
阅读次数:
92
tips:通常使用vector是最好的选择,当然如有必要也可选择其他容器 如果不确定使用哪种容器,可以只使用vector和list公共的操作:iterator,无下标,避免随机访问 iterator: 注意:forward_list不支持递减运算符(--) vector和string的迭代器运算同样 ...
分类:
编程语言 时间:
2019-09-14 17:22:45
阅读次数:
92
python while循环的使用,通过使用turtle画多个图形,画坐标系熟悉循环使用,锻炼思路 ...
分类:
编程语言 时间:
2019-09-13 15:20:10
阅读次数:
87
1. 阿里云VPC里面添加路由 阿里云 -> 专有网络 -> 管理 -> 路由表 -> 管理 -> 添加路由条目 2. 有公网IP的机器做转发 检查转发cat /proc/sys/net/ipv4/ip_forward 打开转发 echo "1" > /proc/sys/net/ipv4/ip_fo ...
分类:
其他好文 时间:
2019-09-11 13:21:29
阅读次数:
144
1 # -*- coding: UTF-8 -*- 2 3 from turtle import * 4 5 width(17) 6 right(25) 7 circle(150,200,20) 8 left(65) 9 forward(240) 10 left(120) 11 forward(19... ...
分类:
编程语言 时间:
2019-09-10 13:22:46
阅读次数:
141
本章内容 防火墙的概念 iptables的基本认识 iptables的组成 iptables的基本语法 iptables之forward的概念 iptables之地址转换法则 SNAT源地址转换的具体实现 DNAT目标地址转换的具体实现 firewalld介绍 firewalld配置命令 rich规 ...
分类:
系统相关 时间:
2019-09-06 22:31:17
阅读次数:
106
前言......... Actor模型作为Akka中最核心的概念,所以Actor在Akka中的组织结构是至关重要,本文主要介绍Akka中Actor系统。 1.Actor系统 Actor作为一种封装状态和行为的对象,总是需要一个系统去统一的组织和管理它们,在Akka中即为ActorSystem,其实这 ...
分类:
其他好文 时间:
2019-09-06 16:07:35
阅读次数:
86
curl https://www.ipaddress.com/ |grep "My IPv4 Address" # 推荐 curl icanhazip.com curl www.trackip.net/i|grep "<span>" curl ifconfig.me curl ifconfig.me... ...
分类:
其他好文 时间:
2019-09-06 12:46:21
阅读次数:
86