摘要:
在GitHub上管理项目 新建repository 本地目录下,在命令行里新建一个代码仓库(repository) 里面只有一个README.md 命令如下: touch README.md git init 初始化repository git add README.md 将README.md加入到 阅读全文
该文被密码保护。 阅读全文
摘要:
C# string pattern1 = @"(?is)]*?src=(['""\s]?)(?[^'""\s]*)\1[^>]*?>"; string pattern2 = @"(?is)]*?href=(['""\s]?)(?[^'""\s]*)\1[^>]*?>"; python: pattern1 =r"(?<=href=\").+?(?=\")|(?<=href=\ 阅读全文
摘要:
public String FormAturl(String urlX, string objurl) { Uri baseUri = new Uri(objurl); // http://www.enet.com.cn/enews/inforcenter/designmore.jsp Uri absoluteUri = new Uri(baseUri, urlX);//相对绝... 阅读全文
摘要:
1.安装两个whl文件 https://pypi.python.org/pypi/Twisted 下载Twisted的whl文件 https://pypi.python.org/pypi/Scrapy 下载whl文件 运行pip installl Twisted-17.9.0-cp36-cp36m- 阅读全文
摘要:
为了学习机器学习深度学习和文本挖掘方面的知识,需要获取一定的数据,新浪微博的大量数据可以作为此次研究历程的对象 一、环境准备 python 2.7 scrapy框架的部署(可以查看上一篇博客的简要操作,传送门:点击打开链接) mysql的部署(需要的资源百度网盘链接:点击打开链接) heidiSQL 阅读全文
该文被密码保护。 阅读全文
该文被密码保护。 阅读全文
摘要:
int[] result = new int[2]; //[0,3],[3,0] Dictionary<int, int> table = new Dictionary<int,int>(); // use empty constructor, result: 544 ms for (int i = 阅读全文
摘要:
//Retry机制 public static class Retry { /// /// 重试零个参数无返回值的方法 /// /// 执行方法方法 /// 重试间隔 /// 重试次数 public static void Execute(Action action... 阅读全文