上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页
摘要: 1 网络状况模拟 https://github.com/jagt/clumsy 阅读全文
posted @ 2021-06-21 21:06 wolbo 阅读(27) 评论(0) 推荐(0)
摘要: #!/bin/bash # project_id, find it here: https://gitlab.com/[organization name]/[repository name]/edit inside the "General project settings" tab projec 阅读全文
posted @ 2021-06-15 15:15 wolbo 阅读(1241) 评论(0) 推荐(0)
摘要: class A{ }; constexpr size_t sizeOfT = sizeof(A); 鼠标移动到sizeofT上可以看到A的大小 from: https://stackoverflow.com/questions/24775127/how-to-find-the-size-of-a-s 阅读全文
posted @ 2021-06-11 09:34 wolbo 阅读(48) 评论(0) 推荐(0)
摘要: 设置崩溃处理函数 #if (defined _WIN32)||(defined _WIN64) #include <windows.h> #include <Dbghelp.h> #include <tchar.h> //#pragma execution_character_set( "utf-8 阅读全文
posted @ 2021-06-09 18:08 wolbo 阅读(292) 评论(0) 推荐(0)
摘要: 生成一个authors.txt文件。这将包含您的SVN用户和Gitlab用户之间的映射: 可以跳过 从现有的svn存储库中: svn log -q | awk -F '|' '/^r/ {sub("^ ", "", $2); sub(" $", "", $2); print $2" = "$2" < 阅读全文
posted @ 2021-05-25 19:54 wolbo 阅读(234) 评论(1) 推荐(2)
摘要: 1 画一个大的圆或其他图形 如半径50000 2 z(zoom) 缩放 a全部 2 limits命令 设置边界 limits -50000,-50000 50000,50000 阅读全文
posted @ 2021-05-08 16:07 wolbo 阅读(911) 评论(0) 推荐(0)
摘要: po::variables_map vm; po::store(po::command_line_parser(argc, argv).options(desc).allow_unregistered().run(), vm); po::notify(vm); https://stackoverfl 阅读全文
posted @ 2021-05-06 17:51 wolbo 阅读(90) 评论(0) 推荐(0)
摘要: TCHAR* char2tchar(const char* str) { int iLen = strlen(str); TCHAR* chRtn = new TCHAR[iLen + 1]; size_t converted = 0; mbstowcs_s(&converted, chRtn, i 阅读全文
posted @ 2021-04-29 16:05 wolbo 阅读(297) 评论(0) 推荐(0)
摘要: 电脑总是自动弹窗 windows功能 按需用户体验工具 processexplore找到进程 使用 sysmon 监测进程 https://superuser.com/questions/1142935/which-app-triggers-the-windows-features-dialog h 阅读全文
posted @ 2021-04-23 08:50 wolbo 阅读(140) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int main() { int arr[4][4]={1,2,4,7,3,5,8,11,6,9,12,14,10,13,15,16}; int n=4; for (int k = 0; k <= 2 * (n - 1 阅读全文
posted @ 2021-04-20 19:17 wolbo 阅读(483) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页