CET4级作文自作模板

恩,不知道还有没有语法错误,暂且这样吧,当做四级的作文模板了,每天再优化下,不过181个单词了,哈哈哈~~~

With the accelerated development of globalization, English as one of the International prevailing languages play an important role in our modern life. People who are master of English can acquire the latest knowledge more easily and faster. In addition, they can gain more opportunities in the job interview.

- 全文阅读 -

【转】Things I Wish Someone Had Told Me When I Was Learning How to Code And what I’ve learned from teaching others

Before you learn to code, think about what you want to code

Knowing how to code is mostly about building things, and the path is a lot clearer when you have a sense of the end goal. If your goal is “learn to code,” without a clear idea of the kinds of programs you will write and how they will make your life better, you will probably find it a frustrating exercise.

- 全文阅读 -

4级写作之万能模版

四六级作文主题非常简单就是对论题进行正反的判断:(1) 论题很重要;(2)论题很有害;接着可以对这个判断进行重复,换着方的说重要,有害;同时也可以给几句论据,而本文中的句子就是有通用意义的论据,每个角度背诵一两句,总有一款能用上的,希望对大家有帮助!

  1. 生活时间角度

(1) we have been always considering sth (recreational activities) as something to relax ourselves or something that can add color to the dull routine of every day life.

我们一直认为娱乐活动可以让我们放松,可以为我们每天枯燥的生活增添一些色彩。

- 全文阅读 -

【转】C++宽字符处理函数函数与普通函数对照表

字符分类:

宽字符函数 普通C函数 描述

iswalnum()      isalnum()       测试字符是否为数字或字母

iswalpha()      isalpha()       测试字符是否是字母

iswcntrl()      iscntrl()       测试字符是否是控制符

iswdigit()      isdigit()       测试字符是否为数字

iswgraph()      isgraph()       测试字符是否是可见字符

iswlower()      islower()       测试字符是否是小写字符

iswprint()      isprint()       测试字符是否是可打印字符

iswpunct()      ispunct()       测试字符是否是标点符号

iswspace()      isspace()       测试字符是否是空白符号

iswupper()      isupper()       测试字符是否是大写字符

iswxdigit()     isxdigit()      测试字符是否是十六进制的数字

大小写转换:

- 全文阅读 -

搬家了

额,还是博客搬家,准确说是域名换了。

原因很简单,原来的域名pengjianfeng.info一月初就应该到期了,当初贪便宜在老美的godaddy那儿入的,记得是8美刀吧,贼便宜:),不过续费有点麻烦,虽然可以支付宝,而且域名太长,info不甚给力,换!想用短域名,以来好记,二来做邮箱名也短,方便嘛~~~搜了下pjf的域名,com被不知谁注册了,反正天朝访问不了,net是被老美一家公司抢注了,net的是被一老美的博士or摄影家?给抢注,本来想换me,无奈180多米,加之也被抢注。算了,还是name,首次和续费都是58,价格合理,遂入。

- 全文阅读 -

【转】window消息机制

Windows操作系统最大的特点就是其图形化的操作界面,其图形化界面是建立在其消息处理机制这个基础之上的。如果不理解Windows消息处理机制,肯定无法深入的理解Windows编程。可惜很多程序员对Windows消息只是略有所闻,对其使用知之甚少,更不了解其内部实现原理,本文试着一步一步向大家披露我理解的Windows消息机制。可以说,掌握了这一部分知识,就是掌握了Windows编程中的神兵利器,灵活运用它,将会极大的提高我们的编程能力。

- 全文阅读 -

【转】Understanding the Message Loop

Understanding the message loop and entire message sending structure of windows programs is essential in order to write anything but the most trivial programs. Now that we've tried out message handling a little, we should look a little deeper into the whole process, as things can get very confusing later on if you don't understand why things happen the way they do.

- 全文阅读 -