代码改变世界

随笔档案-2012年06月

给IT新人的15点建议:苦逼程序员的辛酸反省与总结 《转》

2012-06-23 21:22 by Rollen Holt, 964 阅读, 收藏,
摘要: 【给IT新人的15点建议:苦逼程序员的辛酸反省与总结】1、保持一颗生机灵动的心;2、不随便提意见;3、常称赞同事;4、低调一些,谦虚一些;5、不在其位,不言其事;6、要懂得韬光养晦,不要时时锋芒毕露;7、不到最后一刻,自己离职的想法决不可以和公司内部任何人分享,8、不得罪办公室里的女人;9、加强交际能力;10、若无特殊情况,一定不要跨级汇报;11、要善于向上司汇报工作;12、不要轻易造成情绪污染。你若是一个领导,那这一点就太要紧了。13、一举一动找准自己的位置、别人的位置;14、没有必要做一个愤青;15、记住别人的善,忘记别人的恶。很多人表面上看着老实巴交的,实际上内心比谁都好强、自负、虚荣、 阅读全文

Qt: SQL Programming

2012-06-08 23:16 by Rollen Holt, 1362 阅读, 收藏,
摘要: SQL ProgrammingThis overview assumes that you have at least a basic knowledge of SQL. You should be able to understand simpleSELECT,INSERT,UPDATE, andDELETEstatements. Although theQSqlTableModelclass provides an interface to database browsing and editing that does not require a knowledge of SQL, a b 阅读全文

Python标准库-string模块《未完待续》

2012-06-05 22:08 by Rollen Holt, 2176 阅读, 收藏,
摘要: >>> import string>>> s='hello rollen , how are you '>>> string.capwords(s)'Hello Rollen , How Are You' #每个单词的首字母大写>>> string.split(s)['hello', 'rollen', ',', 'how', 'are', 'you'] #划分为列... 阅读全文

Linux c学习--进程基础学习

2012-06-02 16:04 by Rollen Holt, 954 阅读, 收藏,
摘要: #include <stdio.h>#include <stdlib.h>#include <unistd.h>int main(int argc, char const *argv[]){ printf("I am process %ld\n", (long)getpid() ); printf("My parent is %ld\n", (long)getppid()); return 0;}上面的例子输出了进程的ID和他的父进程的ID#include <unistd.h>#include <st 阅读全文

Linux c基础学习

2012-06-02 15:58 by Rollen Holt, 703 阅读, 收藏,
摘要: #include <stdio.h>#include <stdlib.h>int myarray[50000]={1,2,3,4,5};int main(int argc, char const *argv[]){ return 0;}#include <stdio.h>#include <stdlib.h>int myarray[50000];int main(int argc, char const *argv[]){ myarray[0]=3; return 0;}如果你用ls -l命令查看上面的2个程序文件的话,你就会发现两个文件的大小差 阅读全文

Windows 8 RP版今夜来袭 官方下载入口曝光

2012-06-01 23:34 by Rollen Holt, 418 阅读, 收藏,
摘要: 微软 Windows 硬件及驱动开发者博客昨日不小心泄露了 Windows 8 Release Preview(以下简称 RP 版)的下载时间和入口,不过这篇文章在发表后两分钟就被删除了。这篇已经被删除的文章来自 Windows 开发部门副总裁 Chuck Chan,他表示 Windows 8 RP 版将于“今天发布”,署名日期为 5 月 31 日。这个日期应该是指美国当地时间,那么北京时间 6 月 1 日凌晨 Windows 8 RP 版就可以下载了。文中还提供了 Windows 8 RP 版的下载入口,只是当前该链接跳转到的是 Windows 8 消费者预览版(Consumer Previ 阅读全文

下载:Visual Studio 2012 RC候选版

2012-06-01 13:20 by Rollen Holt, 466 阅读, 收藏,
摘要: 和 Windows 8 RP 版一起,微软如约放出了 Visual Studio 2012 和 .NET Framework 4.5 的 RC 候选版。Visual Studio 2012 RC 候选版在 Beta 版的基础上进行了很多改进,尤其是用户界面。 官方下载页面:http://www.microsoft.com/visualstudio/11/en-us/downloads 系统需求: 微软宣布,Visual Studio 2012 的硬件需求与 Visual Studio 2010 相同。 不过由于 Visual Studio 2012 需要利用新版 Windows 的核... 阅读全文

shell学习的一些资源

2012-06-01 12:40 by Rollen Holt, 1195 阅读, 收藏,
摘要: shell基础1:文件安全与权限http://bbs.chinaunix.net/thread-434579-1-1.html附:Linux的用户和用户组管理http://bbs.chinaunix.net/thread-438660-1-1.htmlshell基础二:查找技巧,find及xargs的使用http://bbs.chinaunix.net/thread-441883-1-1.htmlshell基础三和四:后台(crontab,at,&,nohup)及(*,?,[]等)http://bbs.chinaunix.net/thread-442596-1-1.htmlshell基 阅读全文