12 2012 档案

摘要:from:http://www.infoq.com/cn/news/2012/12/programmer-interview-record这篇访谈是2006年一位波兰程序员Jaroslaw "sztywny" Rzeszótko (AKA "Stiff")发布的,原文已经下线,2008年澳大利亚一位开发者(twitter是@dodgy_coder)在经过原作者授权的情况下,将这篇访谈再次发布了。原作者提出了10个问题,问题有关于他认为读者会感兴趣的或尊敬各位优秀程序员所创造的各种事物,最后两个问题则是出于原作者的兴趣。原作者介绍,并不是所有人都 阅读全文
posted @ 2012-12-30 10:23 庚武 阅读(449) 评论(0) 推荐(0) 编辑
摘要:GLX-Dock (Cairo-Dock with OpenGL)is so cool 阅读全文
posted @ 2012-12-26 14:08 庚武 阅读(136) 评论(0) 推荐(0) 编辑
摘要:首先您要知道一個電腦系統的界面架構﹐由內到外是這樣的﹕硬體(含 firmware固件)﹕Driver﹕O/S(kernel)﹕應用軟體(shell/Application)﹕使用者所有電腦系統都一定要有硬體﹐這個不會被懷疑吧﹖例如您的輸入需要鍵盤﹔輸出需要熒幕。但是電腦要怎樣處理您的輸入和怎樣顯示正確的輸出呢﹖這就需要軟體來協助了﹐但如果離開 CPU 軟體本身是不能發揮任何工作的。CPU 會處理所有輸入和輸出給軟體﹐而且軟體的所有運算也一定要交由 CPU 處理。我們可以簡單的將 O/S 歸為軟體﹐它是作為使用者(人)和硬體(機)之間的界面(中介)﹔而 driver 呢﹖可以看成 O/S 和硬體 阅读全文
posted @ 2012-12-26 11:38 庚武 阅读(907) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2012-12-19 13:58 庚武 阅读(2) 评论(0) 推荐(0) 编辑
摘要:香港中文大学 镜像网站:http://ftp.cuhk.edu.hk/http://mirrors.163.com/.help/ubuntu.html 阅读全文
posted @ 2012-12-17 11:03 庚武 阅读(91) 评论(0) 推荐(0) 编辑
摘要:http://askubuntu.com/questions/211409/is-there-classic-mode-in-ubuntu-12-10sudo apt-get install gnome-session-fallbackstartdict星际译王词典下载 http://forum.ubuntu.org.cn/viewtopic.php?f=86&t=313666 阅读全文
posted @ 2012-12-15 14:49 庚武 阅读(353) 评论(0) 推荐(0) 编辑
摘要:#include <iostream>using namespace std;class A{public: A():x(1){} virtual void to_str(){ cout<<"A.x:"<<x<<" @ "<<hex<<this<<dec<<endl; } virtual void set_x(int xx){ cout<<"A setx called"<<endl; x = xx; }private 阅读全文
posted @ 2012-12-13 14:33 庚武 阅读(276) 评论(0) 推荐(0) 编辑
摘要:#include <iostream>using namespace std;struct CPoint{ int x,y;};class Point{public: Point(int x, int y){ pt.x = x; pt.y = y; } int x() const {return pt.x;} int y() const {return pt.y;} CPoint get_pt() { return pt; } // 自定义转换操作符 operator CPoint(){ return pt; } operator int(){ return pt.x + pt.. 阅读全文
posted @ 2012-12-11 17:54 庚武 阅读(260) 评论(0) 推荐(0) 编辑
摘要:I Wandered Lonely as a Cloud我如行云独自游 ——William Wordsworth 威廉姆·华兹华斯I wandered lonely as a cloud我孤独地漫游,像一朵云That floats on high over vales and hills,在山丘和谷地上飘荡,When all at once Isawa crowd,忽然间我看见一群Ahost, of golden daffodils;金色的水仙花迎春开放,Beside the lake, beneath the trees,在树荫下,在湖水边,Fluttering and danci 阅读全文
posted @ 2012-12-08 10:29 庚武 阅读(385) 评论(0) 推荐(0) 编辑
摘要:from《C++ Common Knowledge》#include <iostream>using namespace std;extern void fi(int);extern void fl(long);extern void fc(char);class Foo{public: Foo(){}; virtual ~Foo(){}; static void do_foo(int i){ cout<<"您好,您输入了i="<<i<<endl; } void to_str(){ cout<<"a_:& 阅读全文
posted @ 2012-12-07 14:15 庚武 阅读(219) 评论(0) 推荐(0) 编辑
摘要:http://en.wikipedia.org/wiki/Closure_(computer_science)Incomputer science, aclosure(alsolexical closureorfunction closure) is afunctionor reference to a function together with areferencing environment—a table storing areferenceto each of thenon-local variables(also calledfree variables) of that func 阅读全文
posted @ 2012-12-05 16:18 庚武 阅读(230) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示