摘要: http://www.tuicool.com/articles/yqayEv 数据库操作的API文档连接: http://legacy.python.org/dev/peps/pep-0249/ 阅读全文
posted @ 2016-04-24 14:44 李祥 阅读(1081) 评论(0) 推荐(0) 编辑
摘要: 视频抓取原理:获取所有的知识类别id-》然后获取其子项-》根据子项链接分析获取该类课程数-》循环获取链接指向的视频。需要安装python库:requestspython解析xml使用了网上找的代码。 本来可以再优化。但是懒! 1 # coding: UTF-8 2 import os 3 import sys 4 import requests 5 import urlli... 阅读全文
posted @ 2016-03-28 01:52 李祥 阅读(1971) 评论(2) 推荐(0) 编辑
摘要: LCov 白盒覆盖率 阅读全文
posted @ 2014-03-10 01:09 李祥 阅读(3443) 评论(0) 推荐(0) 编辑
摘要: Linux, WinSCP, Putty 好饿!!!!!|| 阅读全文
posted @ 2014-03-09 23:39 李祥 阅读(811) 评论(2) 推荐(0) 编辑
摘要: 数组指针 阅读全文
posted @ 2016-05-09 01:07 李祥 阅读(612) 评论(0) 推荐(0) 编辑
摘要: C++形参默认值 阅读全文
posted @ 2016-05-09 01:06 李祥 阅读(639) 评论(0) 推荐(0) 编辑
摘要: GO http共享 阅读全文
posted @ 2016-05-09 00:08 李祥 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 使用文档:https://www.crummy.com/software/BeautifulSoup/bs4/doc.zh/ python的编码问题比较恶心。 Demo 阅读全文
posted @ 2016-04-24 11:54 李祥 阅读(5745) 评论(0) 推荐(0) 编辑
摘要: web服务器的原理 阅读全文
posted @ 2016-03-28 02:49 李祥 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 1.安装nodejs http://www.nodejs.org/下载或直接安装nodejs. 安装默认会勾选加入环境变量。 打开cmd,输入node -v。测试是否成功。2.安装express 命令行输入:npm install -g express 安装express。 遇到错误:np... 阅读全文
posted @ 2015-01-28 02:33 李祥 阅读(341) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include "mysql.h" #pragma comment(lib, "libmysql.lib"); using namespace std; int main() { MYSQL mysql; mysql_... 阅读全文
posted @ 2015-01-06 01:14 李祥 阅读(3100) 评论(0) 推荐(0) 编辑