摘要: \lstdefinestyle 参考 https://blog.csdn.net/ProgramChangesWorld/article/details/52142313 我们在使用listings的时候,需要设置语言和样式。用\lstset会设置全局的变量,如果我们文章中有多种代码,那么就需要\l 阅读全文
posted @ 2019-09-11 11:05 秋来叶黄 阅读(1560) 评论(0) 推荐(0) 编辑
摘要: 参考 https://docs.microsoft.com/zh-cn/windows/win32/api/winbase/nf-winbase-bindiocompletioncallback https://young2code.wordpress.com/2009/08/16/network- 阅读全文
posted @ 2019-09-10 14:35 秋来叶黄 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 1. AcceptEx 10061 客户端循环连接,没有发送数据,一定次数后,连接失败,WSAGetLastError的结果是10061。并且后续无法再次连接。 这是因为其中的一个参数,详细用法参考IOCP Input/Output Completion Port IO完成端口 BOOL Accep 阅读全文
posted @ 2019-09-09 13:40 秋来叶黄 阅读(860) 评论(0) 推荐(0) 编辑
摘要: 参考 https://portal.databasemart.com/kb/a457/how-to-install-desktop-environment-and-xrdp-service-in-debian-9.aspx 1. 确保已经安装桌面系统 如果没有安装,运行下面安装,安装完重启。 tas 阅读全文
posted @ 2019-09-04 17:52 秋来叶黄 阅读(3505) 评论(0) 推荐(0) 编辑
摘要: 1. Debian无法apt install debian安装完成后,如果运行apt install,提示 Media change: please insert the disc labeled 'Debian GNU/Linux 7.0.0 _Wheezy_ - Official amd64 C 阅读全文
posted @ 2019-09-03 17:31 秋来叶黄 阅读(1123) 评论(0) 推荐(0) 编辑
摘要: 原文 https://blog.csdn.net/l1028386804/article/details/77199194 1. mysql崩溃 161108 11:36:45 mysqld_safe Starting mysqld daemon with databases from /usr/l 阅读全文
posted @ 2019-08-15 13:23 秋来叶黄 阅读(1154) 评论(0) 推荐(0) 编辑
摘要: windows判断创建目录 阅读全文
posted @ 2019-08-14 16:42 秋来叶黄 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1. postgresql执行结束后,判断结果是否成功,有几种结果 typedef enum { PGRES_EMPTY_QUERY = 0, /* empty query string was executed */ PGRES_COMMAND_OK, /* a query command tha 阅读全文
posted @ 2019-08-14 13:24 秋来叶黄 阅读(758) 评论(0) 推荐(0) 编辑
摘要: 1.mysql connector c++32位/64位关系 mysql connect c++安装要与我们的应用对应,应用是32位,connect就要是32位的,与数据库是32还是64无关 2.mysql connector c++ sqlstring与std::string不兼容崩溃问题 mys 阅读全文
posted @ 2019-08-14 13:24 秋来叶黄 阅读(642) 评论(0) 推荐(0) 编辑
摘要: 1. 生成静态库,linux下库的规则是lib开头 g++ -c code.cpp ar cr libcode.a code.o 阅读全文
posted @ 2019-08-13 15:51 秋来叶黄 阅读(121) 评论(0) 推荐(0) 编辑