Posts
All the articles I've posted.
koa2给所有页面渲染全局数据
Published: at 12:28 PM场景 给我的博客增加显示用户访问量,后台的每个请求访问量都新增1,每个页面的渲染都返回当前访问量计数。 捕捉每次请求 在所有路由之前新增 app.use(async (ctx, next) => { const totalhit = await Extends.addHit(ctx.path); ctx.state = Object...
visual stdio不同目录下的文件重名,类重名问题解决方法
Published: at 02:37 PM以下测试是在vs2008和vs2012中进行的 先建一个空的Test控制台应用程序,目录结构如下: 目录(http//img.blog.csdn.net/20131207182756984?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvdHVqaWF3/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gr...
select模型
Published: at 02:28 PM需要注意的是要将listenSock设置为非阻塞模式,这样在while(1)循环中accept才不会被阻塞。同时listenSock也要set到fdread中,如果不这样做的话,select只能监视到客户端的socket,当客户端没有进行任务IO操作的时候select返回值为SOCKETERROR会一直进行循环检测,这样是没必要...
WSAAsyncSelect模型
Published: at 02:27 PM这个模型跟窗口有关,它使用消息来进行通知的。如下是对话框客户端关键代码,连接的是一个echo服务端。 测试文件的传输,将文件发送出去,然后将读取的数据写入文件。 读写文件类WinFile参考: http//blog.csdn.net/tujiaw/article/details/17840823 Buffer类参考:ht...
windows std cout设置输出颜色
Published: at 02:25 PM包含头文件ConsoleColor.h stdcout << red << "this text is read" << stdendl; stdcout << green << "this text is green" << stdendl; // ConsoleColor.h pragma once include <iostream> include <windows.h> inline stdostream& blue(...
log4cxx编译、使用
Published: at 02:22 PM1. 下载下面三个文件放在同级目录下解压: http//apr.apache.org/download.cgi apr-1.4.6-win32-src.zip apr-util-1.5.1-win32-src.zip http//logging.apache.org/log4cxx/download.html apache-log4cxx-0.10.0.zip 2. 将apr-1.4.6改名为apr 将apr-util-1...
2013新的一年马上到来了
Published: at 02:10 PM还有一个多小时2012年就过去了,从2010年7月份毕业到现在工作有两年半了,还没做过什么总结,不知不觉就这样过来了。其实不是没有东西可写,相反要写的东西还很多,很杂,以前也想过要做一些总结,但总是不了了之,今天这种想法非常强烈,就简要的写下,然后睡个好觉。 开始接触...
python模拟鼠标、捕获按键事件
Published: at 02:03 PM在这里我需要连续的双击鼠标左键; 用按键1(不是数字小键盘里面的1)来控制运行,其他按键暂停。 ------------------------------------------------------------------------------- Name Purpose Author Administrator Created 02...
boost xml
Published: at 02:02 PM读写XML文件: testConfigRead.xml <?xml version="1.0" encoding="GB2312"?> <content> <title value="xxxx"/> <number>1234</number> <groups> <class num="1" type="type1"/> <class num="2" type="type2"/> <class num="3" type="type3"...
表达式求值——栈
Published: at 01:57 PMinclude <iostream> include <stack> include <cctype> / 获取优先级符号,flag数组优先级关系是根据oper得来的,所以它们中元素的顺序不能轻易改变 @param ain 先前的运算符 @param bin 之后的运算符 @return 成功返回运算符,失败返回空格字符 ...