上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 19 下一页
  2014年12月22日
摘要: http://www.searchtb.com/2012/09/protocol-buffers.htmlhttp://www.cnblogs.com/jacksu-tencent/p/3447310.htmlhttp://cxwangyi.blogspot.com/2010/06/google-p... 阅读全文
posted @ 2014-12-22 20:11 阿笨猫 阅读(329) 评论(0) 推荐(0) 编辑
  2014年12月16日
摘要: 先记录,以后再试试https://github.com/gnab/remark/wikihttp://segmentfault.com/blog/sweetdum/1190000000484121http://www.woiweb.net/impress-js-tutorial.htmlhttps:... 阅读全文
posted @ 2014-12-16 13:09 阿笨猫 阅读(377) 评论(0) 推荐(0) 编辑
  2014年11月21日
摘要: http://www.cppblog.com/kefeng/archive/2010/10/20/130574.htmlVim中的正则表达式功能很强大,如果能自由运用,则可以完成很多难以想象的操作。如果你比较熟悉Perl的正规表达式,可以直接参照与Perl正则表达式的区别一节。一、使用正则表达式的命... 阅读全文
posted @ 2014-11-21 20:34 阿笨猫 阅读(34392) 评论(0) 推荐(1) 编辑
  2014年7月17日
摘要: http://la5u.org/archives/542http://stedolan.github.io/jq/download/https://linuxtoy.org/archives/jq.html 阅读全文
posted @ 2014-07-17 15:21 阿笨猫 阅读(338) 评论(0) 推荐(0) 编辑
  2014年7月11日
摘要: http://dag.wiee.rs/home-made/dstat/#downloadhttps://github.com/dagwieers/dstathttp://lhflinux.blog.51cto.com/1961662/518868http://blog.csdn.net/chen_j... 阅读全文
posted @ 2014-07-11 14:58 阿笨猫 阅读(367) 评论(0) 推荐(0) 编辑
  2014年6月16日
摘要: http://devel.cs.stolaf.edu/projects/bw/wiki.real/index.php/Hadoop_Reference,_January_2011http://guoyunsky.iteye.com/blog/1709392http://stackoverflow.c... 阅读全文
posted @ 2014-06-16 09:55 阿笨猫 阅读(264) 评论(0) 推荐(0) 编辑
  2014年6月15日
摘要: Hadoop Pipes Exception: Illegal text protocol command对于Hadoop pipes 出现这样的错误,基本上编译代码依赖的.so和.a 版本不匹配网上也没有给出更多信息,我的同事最近回复了解决办法,可以参考https://groups.google.... 阅读全文
posted @ 2014-06-15 09:44 阿笨猫 阅读(561) 评论(0) 推荐(0) 编辑
  2014年5月31日
摘要: http://blog.csdn.net/andyelvis/article/category/948141http://www.scons.org/doc/production/HTML/scons-user.html 阅读全文
posted @ 2014-05-31 23:04 阿笨猫 阅读(214) 评论(0) 推荐(0) 编辑
摘要: http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000http://git-scm.com/book/zhhttp://iissnan.com/progit/index.htmlhttp:/... 阅读全文
posted @ 2014-05-31 21:05 阿笨猫 阅读(286) 评论(0) 推荐(0) 编辑
  2014年1月28日
摘要: wget加上参数之后,即可成为相当强大的下载工具。wget-r -p -np -khttp://xxx.com/abc/-r, --recursive(递归) specify recursive download.(指定递归下载)-k, --convert-links(转换链接) make links in downloaded HTML point to local files.(将下载的HTML页面中的链接转换为相对链接即本地链接)-p, --page-requisites(页面必需元素) get all images, etc. needed to display HTML page.( 阅读全文
posted @ 2014-01-28 09:37 阿笨猫 阅读(2671) 评论(0) 推荐(0) 编辑
  2013年9月28日
摘要: 一、DistributedCache简介 DistributedCache是hadoop框架提供的一种机制,可以将job指定的文件,在job执行前,先行分发到task执行的机器上,并有相关机制对cache文件进行管理. 常见的应用场景有: 分发第三方库(jar,so等);分发算法需要的词典文件;分发程序运行需要的配置;分发多表数据join时小表数据简便处理等 主要的注意事项有: 1.Dist... 阅读全文
posted @ 2013-09-28 23:33 阿笨猫 阅读(6733) 评论(0) 推荐(0) 编辑
  2013年9月21日
摘要: http://www.iwenchao.com/mathematics/matrix-differential.html http://en.wikipedia.org/wiki/Matrix_calculus http://www.atmos.washington.edu/~dennis/MatrixCalculus.pdf https://ccrma.stanford.edu/~dattorr... 阅读全文
posted @ 2013-09-21 20:52 阿笨猫 阅读(8392) 评论(0) 推荐(0) 编辑
  2013年8月30日
摘要: http://www.orczhou.com/index.php/2010/03/iostat-detail/ Linux系统出现了性能问题,一般我们可以通过top、iostat、free、vmstat等命令来查看初步定位问题。其中iostat可以给我们提供丰富的IO状态数据。 1. 基本使用 $iostat -d -k 1 10 参数 -d 表示,显示设备(磁盘)使用状态;-k某些使用blo... 阅读全文
posted @ 2013-08-30 16:07 阿笨猫 阅读(1498) 评论(0) 推荐(0) 编辑
摘要: 由于经常使用,简单记录之 $ alias urlencode='python -c "import sys, urllib as ul; print ul.quote_plus(sys.argv[1])"' $ urlencode 'q werty=/;'q+werty%3D%2F%3B alias urldecode='python -c "import sys, urllib as u... 阅读全文
posted @ 2013-08-30 15:43 阿笨猫 阅读(1030) 评论(0) 推荐(0) 编辑
  2013年8月10日
摘要: 现在hadoop周边发展的外围系统越来越多,都搞不清了. http://www.neevtech.com/blog/2013/03/18/hadoop-ecosystem-at-a-glance/ http://www.csdn.net/article/2013-03-11/2814446-Hadoop_ecosystem_infographic 阅读全文
posted @ 2013-08-10 11:24 阿笨猫 阅读(517) 评论(0) 推荐(0) 编辑
  2013年8月7日
摘要: 这个挺有意思 http://blog.csdn.net/CherylNatsu/article/details/6436570 使用调试器时最常用的功能就是step, next, continue,这几个调试命令都是“往下执行”的, 但是很多时候会有这种需求:你在调试的过程中多跳过了几步而错过中间过程,这时候不得不重头调试一遍,非常麻烦。而GDB从7.0版本开始支持反向调试功能,也就是允许你倒... 阅读全文
posted @ 2013-08-07 22:08 阿笨猫 阅读(1829) 评论(0) 推荐(1) 编辑
  2013年7月2日
摘要: 偶尔看到data deduplication的博客,还挺有意思,记录之 http://blog.csdn.net/liuben/article/details/5829083?reload http://qing.blog.sina.com.cn/tj/88ca09aa33000uyo.html 阅读全文
posted @ 2013-07-02 13:28 阿笨猫 阅读(313) 评论(0) 推荐(0) 编辑
  2013年6月17日
摘要: http://linuxtoy.org/archives/bash-shortcuts.html 生活在 Bash shell 中,熟记以下快捷键,将极大的提高你的命令行操作效率。 编辑命令 Ctrl + a :移到命令行首 Ctrl + e :移到命令行尾 Ctrl + f :按字符前移(右向) Ctrl + b :按字符后移(左向) Alt + f :按单词前移(右向) Al... 阅读全文
posted @ 2013-06-17 13:44 阿笨猫 阅读(349) 评论(0) 推荐(0) 编辑
  2013年6月14日
摘要: 在代码中常常会看见likely()和unlikely()的用法,尤其是linux内核代码中. if(likely(value)) 等价于 if(value) if(unlikely(value)) 也等价于 if(value) 从代码理解上,它们的效果是一致的,那么他们的区别在哪里呢? 这2个宏在compiler.h中如下定义: #define likely(x) __builtin_exp... 阅读全文
posted @ 2013-06-14 18:54 阿笨猫 阅读(884) 评论(0) 推荐(1) 编辑
  2013年6月9日
摘要: 一、命令参数 G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind --tool=memcheck --leak-check=full --show-reachable=yes --leak-resolution=high --trace-childr 阅读全文
posted @ 2013-06-09 15:35 阿笨猫 阅读(447) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 19 下一页