`
wwwjjq
  • 浏览: 55769 次
社区版块
存档分类
最新评论
文章列表
1.我的家是一座城堡,风可以进来,但是女王没我的同意不能进来。 2.三老:老板,老干部,老百姓。 3.Life is short, [the] craft long, opportunity fleeting, experiment treacherous, judgment difficult. 4. "Computer science education cannot make anybody an expert programmer any more than studying brushes and pigment can make somebody an expert ...
a  de facto standard called Common Gateway Interface(CGI——通用网关接口) The Common Gateway Interface (CGI) is a standard (see RFC 3875: CGI Version 1.1) method for web server software to delegate the generation of web content to executable files. Such files are known as CGI scripts; they are programs, of ...
magnitude   大小 runaway  逃亡的 vendor   供应商 blissful   幸福 wristwatch   手表 Concurrency and Parallelism   并发和并行 simulate   模拟 superscalar  超标量(流水线) intermediary  中介 sink 沉 hub  集线器 frame  帧 payload  有效载荷 Ethernet segment  以太网段 bridged Ethernets  桥接以太网 socket  插座 ephemeral port  短暂的端口 a wheel and a trolley ...

我的书单

《The Little Schemer》:我觉得 Dan Friedman 的 The Little Schemer (TLS) 是目前最好,最精华的编程入门教材。它的前身叫《The Little Lisper》。很多资深的程序语言专家都是从这本书学会了 Lisp。虽然它叫 "The Little Schemer",但它并不使用 Scheme 所有的功能,而是忽略了上面提到的 Scheme 的毛病,直接进入最关键的主题:递归和它的基本原则。这本书不但很薄,很精辟,而且相对于其他编程书籍非常便宜(在美国才卖 $23)。   《SICP》:The Little Schemer ...
ratify  批准 flawed   有缺陷的 quirky   古怪的 gibberish   乱码 overhead   开销 incurred   产生的 ubiquitous   普及 perplexing   复杂的 conduit   导管 今天下午感觉很轻松,喜欢这种感觉,怀疑了一些东西,但是还是有很多东西是美好的。 要有两个线程正在执行才能算是Parallelism;Concurrency则只要有两个以上线程还在执行过程中即可。简单地说,Parallelism要在多核或者多处理器情况下才能做到,而Concurrency则不需要。 Concurrency and p ...
http://blog.csdn.net/shenlan211314/article/details/625177 一、不要使用依赖于图形放置位置的文本。使用如“ 这幅图...” 或“ 下面的图形...” 等短语要求所指的图形需在固定位置。而像“ 图5...” 这样的短语则允许图形出现在任意位置。 二、放松。一些使用者在发现图形没有十分准确的出现在他们所想要的位置时,往往非常着急。这没有必要,图形的放置是LATEX 的工作,最好放松一些。” 1.为什么Latex不推荐我们让图形准确出现在放置的位置呢?“因为那会导致糟糕的分页,将大片的空白留在页面下方。为得到专家级的排版效果,作者不 ...
template  模板 conversely   反过来 mousetrap  捕鼠器 elapsed  过去 cubical  立方体 herald  先锋 dashes  破折号 dot  点 rational number  有理数 typeset  排字 subject   主题 Calculus  结石  微积分 customary  习惯性 immaterial  无关紧要 Derivative   导数 limit   极限 Integrals   积分 sums   总和 Calculus   微积分 customary   习惯性 preamble   前言 full s ...
原文链接http://www.cnblogs.com/feisky/archive/2010/03/05/1679160.html http://www.boost.org/ 1、http://snippets.dzone.com/tag/c/ --数以千计的有用的C语言源代码片段 2、[url]http://www.hotscripts.com/category/c-cpp/scripts-programs/ Hotscripts[/url] --提供数以百计的C和C++脚本和程序。所有程序都分为不同的类别。 3、http://www.planetsourcecode.com/vb/d ...
归有光 项脊轩,旧南阁子也。室仅方丈,可容一人居。百年老屋,尘泥渗漉,雨泽下注;每移案,顾视无可置者。又北向,不能得日,日过午已昏。余稍为修葺,使不上漏。前辟四窗,垣墙周庭,以当南日,日影反照,室始洞 ...
File processing in any language tends to be idiomatic in the sense that you need to learn a general strategy and then apply that strategy in the applications you write.  C++ is no exception to this rule. combinatorics    组合数学 decay   衰变 legacy   遗产 vowels    元音 consonant   辅音 strand   链 propagate   ...
EOF:end of file.值一般为-1. windows下为 ctrl+z. UNIX下为 ctrl+D. 关于其是否作为流结束的标识,其检查方式有两种: windows采用阻塞式。 阻塞式检查方式指的是只有在回车键按下之后才对此前是否有    Ctrl+Z组合键按下进行检查。这种阻塞式的方式有一个特点:只有按下回车之后才有可能检测在此之前是否有Ctrl+Z按下。还有一个特点就是:如果输入缓冲区中有可读的数据则不会检测Ctrl+Z(因为有要读的数据,还不能认为到了流的末尾)。还有一点需要知道:Ctrl+Z产生的不是一个普通的ASCII码值,也就是说它产生的不是一个字符,所以不会跟其它 ...
http://msdn.microsoft.com/en-us/library/64973255(v=VS.90).aspx // struct1.cpp struct PERSON {   // Declare PERSON struct type    int age;   // Declare member types    long ss;    float weight;    char name[25]; } family_member;   // Define object of type PERSON int main() {    struct PERSON sister; ...
char *fgets(char *restrict buf, int n, FILE *restrict fp); fgets : including the next newline,but no more than n-1 characters,into the buffer. char *gets(char *buf); it doesn't store the newline in the buffer. int fputs(const char *restrict str, FILE *restrict fp); fputs writes the null-terminated ...
function templates are special functions that can operate with generic types. this allows us to create a function template whose functionality can be adapted to more than one type or class without repeating the entire code for each type. the format for declaring function templates with type paramete ...
http://www.wutianqi.com/?p=1181
Global site tag (gtag.js) - Google Analytics