摘要:
import os,threading,requests ip=input('请输入要检测的ip:').strip().split('.')[0:3] ip='.'.join(ip) def detect(i): address=ip+'.%s'%i if os.name == 'nt': res= 阅读全文
摘要:
第一章 <html> <!--解释器--> <!DOCTYPE html> <head> <!--字符集--> <meta http-equiv="content-type" content="text/html;charset=utf-8"/> <!--刷新跳转--> <meta http-equ 阅读全文
摘要:
https://raw.githubusercontent.com/zhiwehu/Python-programming-exercises/master/100%2B%20Python%20challenging%20programming%20exercises.txt 100+ Python 阅读全文
摘要:
import cv2 as cv import sys import time # 指定视屏存储解码格式 fourcc = cv.VideoWriter_fourcc(*'XVID') out = cv.VideoWriter('out.avi', fourcc, 20.0, (640, 480)) 阅读全文
摘要:
istio1.5后版本包括组件: 控制平面: istiod(pilot,citadel,galley) 数据平面: istio-proxy(envoy开发版) ingress gateway egress gateway addons 部署控制平面 下载地址 https://github.com/i 阅读全文