会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
AABBOO
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
···
21
下一页
2021年6月21日
工具列表
摘要: 1 网络状况模拟 https://github.com/jagt/clumsy
阅读全文
posted @ 2021-06-21 21:06 wolbo
阅读(27)
评论(0)
推荐(0)
2021年6月15日
gitlab 手动删除ci产物
摘要: #!/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)
2021年6月11日
ms vc++ 编码期计算对象大小
摘要: 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)
2021年6月9日
windows设置程序崩溃转储
摘要: 设置崩溃处理函数 #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)
2021年5月25日
svn迁移至git 保留提交记录
摘要: 生成一个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)
2021年5月8日
cad 设置视野大小的方法
摘要: 1 画一个大的圆或其他图形 如半径50000 2 z(zoom) 缩放 a全部 2 limits命令 设置边界 limits -50000,-50000 50000,50000
阅读全文
posted @ 2021-05-08 16:07 wolbo
阅读(911)
评论(0)
推荐(0)
2021年5月6日
boost program option 允许未识别的选项
摘要: 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)
2021年4月29日
win32查找,杀死进程
摘要: 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)
2021年4月23日
processexplore sysmon查找弹窗
摘要: 电脑总是自动弹窗 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)
2021年4月20日
二维数组斜对角遍历
摘要: #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
下一页
公告