上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页

2019年4月14日

摘要: Django1 1、Python工具 - pip 1、作用 Python的软件包管理器,有一些python包被集成到了pip中。只要被集成到pip中的包,都允许通过pip直接安装 2、安装 pip sudo apt install python-pip (python2) sudo apt inst 阅读全文
posted @ 2019-04-14 20:59 微子天明 阅读(158) 评论(0) 推荐(0) 编辑

2019年3月14日

摘要: 一、 docker linux 网络命名空间 docker linux 网络命名空间 #ip netns list 查看网络命名空间 #ip netns delete test1 删除网络命名空间 #ip netns add test1 增加网络命名空间 test1 网络命名空间里边执行ip a或者 阅读全文
posted @ 2019-03-14 19:12 微子天明 阅读(542) 评论(0) 推荐(0) 编辑
摘要: Docker镜像介绍 什么是image docker 普通用户提权限(每次都需要sudo,麻烦) (1)添加一个docker组 #sudo groupadd docker (2)把普通用户添加到docker组里#sudo gpasswd -a vagrant docker (3)重启服务#sudo 阅读全文
posted @ 2019-03-14 19:11 微子天明 阅读(1413) 评论(0) 推荐(0) 编辑
摘要: Docker笔记 菜鸟笔记:https://www.runoob.com/docker/centos-docker-install.html 1, https://gitlab-demo.com Docker官网:https://docs.docker.com/install/overview/ 有 阅读全文
posted @ 2019-03-14 19:09 微子天明 阅读(495) 评论(0) 推荐(0) 编辑

2019年1月29日

摘要: Ansible 自动化运维 一、ansible安装 (1)安装epel-release #yum -y install epel-release 下载epel-release包 # wget http://mirrors.sohu.com/fedora-epel/epel-release-lates 阅读全文
posted @ 2019-01-29 17:32 微子天明 阅读(184) 评论(0) 推荐(0) 编辑

2018年10月5日

摘要: JavaScript 知识6 一, String 对象 1,分隔字符串, 函数: split(seperator) 作用: 将字符串,通过seperator 拆分成一个数组; eg: var msg="张三丰|男|65|19000102"; var arr = msg.split("|"); con 阅读全文
posted @ 2018-10-05 17:54 微子天明 阅读(124) 评论(0) 推荐(0) 编辑

2018年9月10日

摘要: JavaScript知识5 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script> /** * 判断指定年份是否为闰年 * 参数 ye 阅读全文
posted @ 2018-09-10 23:18 微子天明 阅读(217) 评论(0) 推荐(0) 编辑

2018年9月5日

摘要: Pandas库: pandas索引与计算: 阅读全文
posted @ 2018-09-05 23:33 微子天明 阅读(98) 评论(0) 推荐(0) 编辑

2018年9月3日

摘要: Numpy 一,数据结构 数据类型: ndarray 创建一维的数组: vector = numpy.array([5,10,15,20]) 创建二维的数组: matrix = numpy.array([[5,10,15,20],[15,20,25,30]]) 查看数据的结构: vector.sha 阅读全文
posted @ 2018-09-03 22:41 微子天明 阅读(119) 评论(0) 推荐(0) 编辑

2018年9月2日

摘要: JavaScript 4 练习1 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script> //1、从弹框中录入一个字符 var c = 阅读全文
posted @ 2018-09-02 21:52 微子天明 阅读(209) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页

导航