08 2013 档案

摘要:Linux下C语言编程的入门级好书,内容覆盖很全面,点到即止,适合刚毕业面临找工作的同学。网页版:http://learn.akae.cn/media/index.html 阅读全文
posted @ 2013-08-22 20:25 么幺 阅读(204) 评论(0) 推荐(0)
摘要:《Cracking the coding interview》是一本被许多人极力推荐的程序员面试书籍, 详情可见:http://www.careercup.com/book。 里面有150道程序员面试题目及相应的解答。hawstein同学对Cracking the coding interview的所有习题做了非常细致的解答:http://hawstein.com/posts/ctci-solutions-contents.html.每天看几道,收获多多! 阅读全文
posted @ 2013-08-21 17:10 么幺 阅读(273) 评论(0) 推荐(0)
摘要:1 #!/bin/bash 2 3 NORMAL=$(tput sgr0) 4 GREEN=$(tput setaf 2; tput bold) 5 YELLOW=$(tput setaf 3) 6 RED=$(tput setaf 1) 7 8 function red() 9 {10 echo -e "$RED$1$NORMAL"11 }12 13 function green()14 {15 echo -e "$GREEN$1$NORMAL"16 }17 18 function yellow()19 {20 echo -e "$YELLO 阅读全文
posted @ 2013-08-20 12:38 么幺 阅读(677) 评论(0) 推荐(0)
摘要:来自腾讯大讲堂的一篇文章,真心不错。记录下来:《Linux文件系统十问,你知道吗?》http://djt.qq.com/article/view/620?ADTAG=email.InnerAD.weekly.20130813 阅读全文
posted @ 2013-08-14 12:49 么幺 阅读(230) 评论(0) 推荐(0)