未完结,随时更新

部分:字面意思已经很清楚了就是页面主要的展示区域。 [role元素](https://www.w3.org/TR/wai-aria/roles#usage_intro)

HTML5规范

阅读全文 »

单数和复数名词(Singular)

名词表示人,地点,物或者想法。名词应该是学习语言需要接触的第一个话题。

复数名词(Plural Nouns)

大多数的复数名词形式是在尾部追加“s”

比如:bottle-bottles, cup-cups, pencil-pencils

阅读全文 »

非模态对话框相对于模态对话框,他的创建和销毁过程和模态对话框有一定的区别

先看一下MSDN的原文:

When you implement a modeless dialog box, always override the OnCancel member function and call DestroyWindow from within it. Don’t call the base class CDialog::OnCancel, because it calls EndDialog, which will make the dialog box invisible but will not destroy it. You should also override PostNcDestroy for modeless dialog boxes in order to delete this, since modeless dialog boxes are usually allocated with new. Modal dialog boxes are usually constructed on the frame and do not need PostNcDestroy cleanup.

阅读全文 »

非模态对话框相对于模态对话框,他的创建和销毁过程和模态对话框有一定的区别

先看一下MSDN的原文:

When you implement a modeless dialog box, always override the OnCancel member function and call DestroyWindow from within it. Don’t call the base class CDialog::OnCancel, because it calls EndDialog, which will make the dialog box invisible but will not destroy it. You should also override PostNcDestroy for modeless dialog boxes in order to delete this, since modeless dialog boxes are usually allocated with new. Modal dialog boxes are usually constructed on the frame and do not need PostNcDestroy cleanup.

阅读全文 »

623f8b1a.png

这是一本综合成功者的学习经验的书,书中列举了伟人的学习方法,有一定的参考意义。贵在实践。
推荐阅读,因为本书是以参考的方式提出的建议,所以需要读者有一定的辨识能力,有一定的自我认知能力,剩下的就是实际动手能力了。

81594f34.png

使用vs2017编译libcurl和openssl静态库。
因为用到了https相关操作所以需要libcurl支持ssh,在编译openssl的过程中遇到些小麻烦,所以记录下来。
openssl1.1.x有了些变化,附带的帮助文件,信息量不小,时间有限,暂时使用openssl1.0.x来编译。

编译好的库
http://slproweb.com/products/Win32OpenSSL.html

阅读全文 »