摘要: ``` # coding: cp936 import win32gui import win32con import time class TestTaskbarIcon: def __init__(self): # 注册一个窗口类 wc = win32gui.WNDCLASS() hinst = wc.hInstance = win... 阅读全文
posted @ 2018-11-22 15:37 abcyrf 阅读(5212) 评论(1) 推荐(1) 编辑
摘要: server端: client端 python脚本打包成exe,可以使用PyInstaller 阅读全文
posted @ 2018-11-22 11:19 abcyrf 阅读(5506) 评论(0) 推荐(0) 编辑
摘要: 官网: https://www.vaultproject.io/ python客户端: https://github.com/hvac/hvac docker镜像: https://hub.docker.com/_/vault/ 安装: 启动vault之后,浏览器访问http://ip:8200 , 阅读全文
posted @ 2018-11-08 15:17 abcyrf 阅读(1061) 评论(0) 推荐(0) 编辑
摘要: http://www.flexifont.com 阅读全文
posted @ 2018-10-11 15:13 abcyrf 阅读(207) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/duiniweixiao/p/8884274.html 阅读全文
posted @ 2018-09-27 11:13 abcyrf 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 香港科技大学TensorFlow三天速成课件 https://blog.csdn.net/zhongxon/article/details/54709347 香港科技大学TensorFlow三天速成课件 https://blog.csdn.net/gh13uy2ql0n5/article/detai 阅读全文
posted @ 2018-09-18 20:05 abcyrf 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 首先安装redi,使用redis充当broker 在settings.py中增加如下配置: INSTALL_APPS中增加 在settings.py同级目录增加celery.py coding: utf 8 from __future__ import absolute_import, unicod 阅读全文
posted @ 2018-09-18 16:37 abcyrf 阅读(228) 评论(1) 推荐(0) 编辑
摘要: 删除所有未打 dangling 标签的镜像 docker rmi $(docker images q f dangling=true) 阅读全文
posted @ 2018-09-18 14:09 abcyrf 阅读(436) 评论(0) 推荐(0) 编辑
摘要: http://docs.traefik.cn/ Traefik kubernetes 初试 https://blog.csdn.net/ximenghappy/article/details/60870557 阅读全文
posted @ 2018-09-18 10:20 abcyrf 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 从已有docker实例导出镜像: docker commit m="commit" docker_id target_image_name:1.0 基于镜像启动实例: docker run d name cmdbbase net=host e a="123" image_name:1.0 删除实例: 阅读全文
posted @ 2018-09-13 19:17 abcyrf 阅读(2315) 评论(0) 推荐(0) 编辑