摘要: 1.先创建目录,和选择路径 2.commit -> sync 3. cd ~/.ssh 查看公钥 在github 添加公钥. 4. 克隆文件git clone git@github.con:cuzz1/day14 5.下次更新只需要git pull 阅读全文
posted @ 2017-12-19 21:26 cuzz_z 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 1.在主目录中添加一个wsgi.py文件 2.安装gunicorn pip3 install gunicorn (green unicorn) 独角兽 3. gunicorn wsgi --bind 0.0.0.0:2000 4.安装supervisor : pip install supervis 阅读全文
posted @ 2017-12-19 17:58 cuzz_z 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 一. Git创建 1. git init 命令来初始化一个Git仓库 2. 添加文件到Git仓库,分两步 1) 使用命令 git add <file>,可以反复多次添加,添加多个文件 2) 使用命令 git commit -m "注释", 完成二.时光穿梭机 版本退回: 1. 命令git log 查 阅读全文
posted @ 2017-12-18 21:11 cuzz_z 阅读(154) 评论(0) 推荐(0) 编辑
摘要: Linux 服务器介绍和使用常用 Linux 版本分析在虚拟机中安装 Linux 操作系统(Ubuntu 16.04版本)常用工具/概念/使用方式以前和现在的服务器(托管和云平台)域名购买(腾讯云买 .cc 域名)VPS购买, 可以用下面的服务(论坛使用的主机商), 2.5刀/月的即可 http:/ 阅读全文
posted @ 2017-12-17 15:46 cuzz_z 阅读(123) 评论(0) 推荐(0) 编辑
摘要: CSS 的使用 内联(inline style attribute) 完全不应该这样做 <head> 标签内的 <style> 标签 偶尔可以用 <link> 标签中的外联 推荐的方式 三种主要的选择器 元素选择器 class 选择器 id 选择器 样式优先级(从高到低) !important 内联 阅读全文
posted @ 2017-12-17 15:23 cuzz_z 阅读(119) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/jiu0821/p/5641600.html 阅读全文
posted @ 2017-12-09 18:54 cuzz_z 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 点击添加按钮添加一个新的todo的时候, 程序的流程图如下: 1. 浏览器提交一个表单给服务器(发送POST 请求) POST /todo/add HTTP/1.1 Content-Type: application/x-www-form-urlencoded title = aaa 2. 服务器解 阅读全文
posted @ 2017-12-03 10:58 cuzz_z 阅读(410) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/dfhgshgdf/article/details/77512026 阅读全文
posted @ 2017-10-28 00:23 cuzz_z 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 参考:http://blog.csdn.net/dawnranger/article/details/50037703 Selector 有一个 .re() 方法,用来通过正则表达式来提取数据。 不同于使用 .xpath() 或者 .css()方法, .re() 方法返回unicode字符串的列表, 阅读全文
posted @ 2017-10-26 13:01 cuzz_z 阅读(771) 评论(0) 推荐(0) 编辑
摘要: 参考:http://cuiqingcai.com/968.html http://cuiqingcai.com/977.html 阅读全文
posted @ 2017-10-23 22:50 cuzz_z 阅读(100) 评论(0) 推荐(0) 编辑