会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
小白闯天下
博客园
首页
博问
闪存
新随笔
订阅
管理
上一页
1
2
3
4
5
6
···
14
下一页
2018年11月30日
mysql中文查询问题
摘要: alter table t_foo change `str` `str` varchar(100) character set utf8 not null ;
阅读全文
posted @ 2018-11-30 11:59 小白闯天下
阅读(140)
评论(0)
推荐(0)
编辑
2018年10月11日
获取网页title(还有一坑未填)
摘要: 1 def getTitle(self,url): 2 #get title 3 title = 'time out' 4 try: 5 self.res = requests.get(url,timeout=5) 6 7 8 soup = Beau...
阅读全文
posted @ 2018-10-11 15:45 小白闯天下
阅读(147)
评论(0)
推荐(0)
编辑
2018年9月5日
go安装依赖包
摘要: 实例 比如先切换到 $GOPATH 的 src 目录,cd $GOPATH/src,然后按需要下载: git clone --depth 1 https://github.com/golang/tools.git golang.org/x/tools git clone --depth 1 http
阅读全文
posted @ 2018-09-05 13:41 小白闯天下
阅读(398)
评论(0)
推荐(0)
编辑
2018年8月1日
js真乃神器也
摘要: var a =document.getElementsByClassName('SearchResult__title-text'); for (i = 0;i < a.length;i++){ console.log(a[i].innerText); } var a =document.getElementsByClassName('search-result-item...
阅读全文
posted @ 2018-08-01 09:45 小白闯天下
阅读(150)
评论(0)
推荐(0)
编辑
2018年7月2日
mongod.service: control process exited, code=exited status=1
摘要: Cent OS 7上需要把mongoDB添加到systemd,否则会出现上面的错误 将mongoDB添加到systemd # vim /usr/lib/systemd/system/mongod.service [Unit]Description=mongodb database [Service]
阅读全文
posted @ 2018-07-02 16:05 小白闯天下
阅读(2824)
评论(0)
推荐(0)
编辑
2018年6月5日
centos6 下erlang安装
摘要: https://packages.erlang-solutions.com/erlang/
阅读全文
posted @ 2018-06-05 16:00 小白闯天下
阅读(132)
评论(0)
推荐(0)
编辑
2018年6月4日
待研究
摘要: // 动态加载script $.load_script = function(xyUrl, callback) { var head = doc.getElementsByTagName('head')[0]; var script = doc.createElement('script'); script.type = 'text/javascript'; script.s...
阅读全文
posted @ 2018-06-04 11:23 小白闯天下
阅读(101)
评论(0)
推荐(0)
编辑
2018年6月1日
关键字拦截查询
摘要: #!/usr/bin/env python #coding:utf-8 # Author: closed -- # Purpose: Check which keys have been blocked # Created: 2018/05/17 # version: Python3.6 # from requests_html import HTMLSession keyword =...
阅读全文
posted @ 2018-06-01 17:09 小白闯天下
阅读(167)
评论(0)
推荐(0)
编辑
2018年5月2日
获取CNVD的cookie
摘要: def getCookie(self): #获取cookie spiderFirefox = webdriver.Firefox() spiderFirefox.get("http://www.cnvd.org.cn/") time.sleep(5) cookies = "...
阅读全文
posted @ 2018-05-02 10:39 小白闯天下
阅读(219)
评论(0)
推荐(0)
编辑
2018年4月3日
adb pull 文件夹到电脑
摘要: 正常来讲是支持文件夹的。 但实际执行的时候发现: pull: building file list...0 files pulled. 0 files skipped. 其实出现这个提示,归根到底还是权限问题。 解决方法如下: chmod -R 777 目标文件夹。 然后再执行命令就可以了。
阅读全文
posted @ 2018-04-03 15:36 小白闯天下
阅读(7241)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
···
14
下一页