上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页
该文被密码保护。 阅读全文
posted @ 2017-12-04 17:49 随便了888 阅读(3) 评论(0) 推荐(0) 编辑
摘要: centos docker community version install: yum -y install docker # install dockersystemctl start docker.service # start docker servicesystemctl enable d 阅读全文
posted @ 2017-12-04 17:33 随便了888 阅读(201) 评论(0) 推荐(0) 编辑
摘要: class Base(object): pass class Inject(Base): def __init__(self): super().__init__() # python3 # super(Inject, self).__init__() # python2 pass cla... 阅读全文
posted @ 2017-11-28 11:11 随便了888 阅读(225) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash #@author vickey main() { TMP_PATH="/home/test" echo "are you sure to del all files in test/?" echo "y/n?: " read answer if [ ${answer} == "y" -o ${answer} == "Y" ] then restart ... 阅读全文
posted @ 2017-11-28 10:31 随便了888 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 后台运行:nohup python restart_myblog.py & 阅读全文
posted @ 2017-11-27 23:20 随便了888 阅读(160) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/Ray-liang/p/4173923.html 阅读全文
posted @ 2017-11-19 23:00 随便了888 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 效果: (1, 1)(2, 2)(3, 3)(4, 1)(5, 2)(6, 3)(7, 1)(8, 2)(9, 3)(10, 1)(11, 2)(12, 3)(13, 1) 阅读全文
posted @ 2017-11-16 15:02 随便了888 阅读(212) 评论(0) 推荐(0) 编辑
摘要: import time from pymouse import PyMouse from pykeyboard import PyKeyboard import re import win32clipboard as clip import win32con as con m = PyMouse() k = PyKeyboard() def set_clip(msg): if is... 阅读全文
posted @ 2017-11-14 11:39 随便了888 阅读(1822) 评论(0) 推荐(0) 编辑
摘要: def read_data(file_name): if not re.findall(".txt", file_name): file_name += ".txt" L = [[] for h in [[] for k in range(5)]] with open(file_name) as r: for d in r: ... 阅读全文
posted @ 2017-11-09 09:34 随便了888 阅读(1695) 评论(0) 推荐(0) 编辑
摘要: 这位同学写得非常详细,推荐 http://www.cnblogs.com/feixuelove1009/p/5955332.html#undefined 阅读全文
posted @ 2017-11-07 22:53 随便了888 阅读(228) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页