makefile学习

October 28th, 2013 by JasonLe's Tech 1,052 views

参考:
http://www.itpub.net/thread-219475-1-1.html

最近要开始学习kernel代码,在Unix/linux下工作当让也要学会写makefile,makefile其实就是一个shell脚本,完成自动化编译的过程。
» Read more: makefile学习

cscope ctags vim 使用

October 24th, 2013 by JasonLe's Tech 1,369 views

最近终于忙完了导师组织的Google devfest 的活动,有了自己学习的时间,因为我加入的项目组的缘故,所以需要看一些kernel的代码,大家都知道kernel的代码比较复杂混乱,很多functions经常会跳来跳去,最后跳的我们都不知道这个值是怎么来的了。对于大型的C/C++工程更是如此,不同的source code 分布在不同的文件夹,靠我们自己打开很繁琐,cscope配合vim查看源代码就是不错的选择。 » Read more: cscope ctags vim 使用

从头到尾彻底解析Hash 表算法

October 10th, 2013 by JasonLe's Tech 1,035 views

十一、从头到尾彻底解析Hash 表算法
作者:July、wuliming、pkuoliver
出处:http://blog.csdn.net/v_JULY_v
说明:本文分为三部分内容,
第一部分为一道百度面试题Top K算法的详解;第二部分为关于Hash表算法的详细阐述;第三部分为打造一个最快的Hash表算法。 » Read more: 从头到尾彻底解析Hash 表算法

A successful Git branching model(Repost)

October 7th, 2013 by JasonLe's Tech 3,229 views
http://nvie.com/posts/a-successful-git-branching-model/

         In this post I present the development model that I’ve introduced for all of my projects (both at work and private) about a year ago, and which has turned out to be very successful. I’ve been meaning to write about it for a while now, but I’ve never really found the time to do so thoroughly, until now. I won’t talk about any of the projects’ details, merely about the branching strategy and release management. » Read more: A successful Git branching model(Repost)

使用sqlite存储信息

September 29th, 2013 by JasonLe's Tech 1,059 views

最近要使用sqlite存储信息,因为sqlite比较轻量级。性能也比较好。
我们要先在linux上使用sqlite。每输入完一条语句结尾要输入; » Read more: 使用sqlite存储信息