上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 57 下一页

2015年6月18日

c++ 从标注输入流读取行

摘要: #include #include #include #include #include #include int main() { //std::string bns = "list://cp01-spi-fresh2.cp01.baidu.com:8004"; std::string... 阅读全文

posted @ 2015-06-18 15:53 雨渐渐 阅读(633) 评论(0) 推荐(0) 编辑

2015年6月16日

文本编辑器 markdown

摘要: http://www.cnblogs.com/youxia/p/linux014.htmlmarkdown对数学公式的支持http://www.linuxidc.com/Linux/2014-08/104996.htm 阅读全文

posted @ 2015-06-16 16:35 雨渐渐 阅读(217) 评论(0) 推荐(0) 编辑

2015年6月15日

混乱的url编码||URL编码解码问题

摘要: 转载自:http://www.ruanyifeng.com/blog/2010/02/url_encoding.html一。问题的由来。url就是网址,只要上网就一定会用到。一般来说,URL只能使用英文字母,阿拉伯数字和某些标点符号,不能使用其他文字和符号。比如,世界上有英文字母的网址,http:/... 阅读全文

posted @ 2015-06-15 11:32 雨渐渐 阅读(785) 评论(0) 推荐(0) 编辑

2015年6月10日

待买书籍

摘要: http://item.jd.com/11666319.html 贝叶斯思维 阅读全文

posted @ 2015-06-10 14:24 雨渐渐 阅读(104) 评论(0) 推荐(0) 编辑

2015年6月8日

无root权限安装python

摘要: http://lujialong.com/?p=150pipe 安装第三方包http://www.lfd.uci.edu/~gohlke/pythonlibs/#piphttp://www.cnblogs.com/ShepherdIsland/p/4239052.html最近在刚分的主机操作,发现p... 阅读全文

posted @ 2015-06-08 20:54 雨渐渐 阅读(2021) 评论(0) 推荐(0) 编辑

2015年6月5日

python 函数默认值的小坑啊

摘要: import datetimeimport timedef test(day=datetime.datetime.now()): print daywhile True: test() time.sleep(1)run result:2015-06-05 16:52:47.106... 阅读全文

posted @ 2015-06-05 16:55 雨渐渐 阅读(147) 评论(0) 推荐(0) 编辑

2015年6月3日

python 日期转星期

摘要: import timeimport datetimetoday = int(time.strftime('%w'))print todayanyday = datetime.datetime(2012, 04, 22).strftime('%w')print anyday 阅读全文

posted @ 2015-06-03 10:36 雨渐渐 阅读(1023) 评论(0) 推荐(0) 编辑

2015年6月1日

sed 命令

摘要: sed 's/http:\/\///g' | sed 's/https:\/\///g' 阅读全文

posted @ 2015-06-01 14:41 雨渐渐 阅读(165) 评论(0) 推荐(0) 编辑

2015年5月28日

hadoop 技巧

摘要: 通过--config指定不同的集群bin/hadoop --config ./conf_time/ dfs -ls /user/rd/*/for_*/ip_table/output/rd下是都读写权限的组合多个文件hadoop fs -getmerge /user/hadoop/output loc... 阅读全文

posted @ 2015-05-28 19:25 雨渐渐 阅读(114) 评论(0) 推荐(0) 编辑

2015年5月19日

shell $变量

摘要: $0:当前脚本的文件名$num:num为从1开始的数字,$1是第一个参数,$2是第二个参数,${10}是第十个参数$#:传入脚本的参数的个数$*:所有的位置参数(作为单个字符串)$@:所有的位置参数(每个都作为独立的字符串)。$?:当前shell进程中,上一个命令的返回值,如果上一个命令成功执行则$... 阅读全文

posted @ 2015-05-19 20:54 雨渐渐 阅读(167) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 57 下一页

导航