摘要:
char tBuf[1024] = {0}; int ret = readlink("/proc/self/exe" , tBuf , 1023) ; char *p = strrchr(tBuf , '/'); printf("%s\n", ++p); 阅读全文
摘要:
#include <stdio.h>#include <stdarg.h> void test(const char * format, ...); int main(void){test("%d_%s", 6, "abc");return 0;} void test(const char * fo 阅读全文
摘要:
1 概念 (Conceptual) 这种视角 “呈现了所研究领域中的各种概念……得出概念模型时应该很少或者不考虑实现它的软件……”。该视角要回答的问题是:“软件要负责什么?” 2 规约(Specification) “现在我们要考虑的是软件,但我们关注的是软件的接口,而不是实现。 ” 该视角要回答的 阅读全文
摘要:
http://uml.org.cn/oobject/201104212.asp 阅读全文
摘要:
netstat –apn | grep 8080 lsof -i:8080 阅读全文
摘要:
被检测程序加入 -g -fno-inline 编译选项保留调试信息。 调试命令:valgrind --tool=memcheck --leak-check=full --show-reachable=yes ./test其中:--leak-check=full 指的是完全检查内存泄漏,--show- 阅读全文
摘要:
在生成DER编码是X509_ALGOR类型没有赋值导致,要先new,然后赋值。 req_st->req.appKeyReq->appKeyType = X509_ALGOR_new(); X509_ALGOR_set0(req_st->req.appKeyReq->appKeyType, OBJ_n 阅读全文
摘要:
http://www.ruanyifeng.com/blog/2015/09/continuous-integration.html 阅读全文
摘要:
https://www1.qt.io/offline-installers/ 阅读全文
摘要:
#define SOURCE_FILE_NAME (strrchr((char*)__FILE__, '/') == NULL) ? (char*)__FILE__ : (strrchr((char*)__FILE__, '/') + 1)#define LOG_BUF_LEN 1024#defin 阅读全文