上一页 1 2 3 4 5 6 7 8 ··· 51 下一页
摘要: for /l %i in (1,1,10) do curl -x user:pass@ip http://127.0.0.1:9001/test -o /dev/null -s -w "time_total:%{time_total}\nresponse_code:%{response_code}\ 阅读全文
posted @ 2023-12-13 16:42 冰糖葫芦很乖 阅读(483) 评论(0) 推荐(0) 编辑
摘要: 转载来自:https://jzgkchina.com/node/1005 Ping 命令 Ping 命令,是一个基于网络层 (比传输层还底层) 的 ICMP(Internet Control Message Protocol) 协议的命 令,主要用于检测和目标主机之间的网络是否通畅,以及网络的延时。 阅读全文
posted @ 2023-12-13 16:18 冰糖葫芦很乖 阅读(149) 评论(0) 推荐(0) 编辑
摘要: Mac打包dmg https://www.cnblogs.com/strengthen/p/15933405.html Mac打包pkg https://www.cnblogs.com/strengthen/p/15933420.html pkg签名:https://www.cnblogs.com/ 阅读全文
posted @ 2023-10-21 11:24 冰糖葫芦很乖 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 转载来自:https://www.jianshu.com/p/0124f10b2e00 codesign就是创建和管理证书的。下面列举一些基本的操作使用。 可以查看codesign的使用帮助 codesign --help 使用方法的命令 Usage: codesign -s identity [- 阅读全文
posted @ 2023-10-09 18:08 冰糖葫芦很乖 阅读(516) 评论(0) 推荐(0) 编辑
摘要: 执行 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 最后会给出警告说 接下来的话, 那我们把路径放进去 在文件末尾编辑您的~/.zshrc export 阅读全文
posted @ 2023-09-13 13:59 冰糖葫芦很乖 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 可以在命令行执行 curl --version 会发现这边有他的相关协议信息 会发现缺少了 https 这个时候 我们 安装下openssl 和 curl openssl 安装 wget https://www.openssl.org/source/openssl-3.0.1.tar.gz tar 阅读全文
posted @ 2023-09-13 13:48 冰糖葫芦很乖 阅读(1160) 评论(0) 推荐(0) 编辑
摘要: 原文:《漫谈 C++ 的各种检查》 为什么代码中需要各种检查?在 C++ 中调用一个函数、使用一个类、实例化一个模板时,对传入的参数、使用的时机,往往会有很多 限制 (constraint/restriction)(例如,数值参数不能传入负数、对象的访问不是线程安全的、函数调用不能重入);而处理限制 阅读全文
posted @ 2023-08-17 09:31 冰糖葫芦很乖 阅读(163) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <dlfcn.h> #include <curl/curl.h> int main() { // 加载 libcurl 动态库 void* handle = dlopen("libcurl.dylib", RTLD_LAZY); if (!ha 阅读全文
posted @ 2023-08-02 16:33 冰糖葫芦很乖 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 开源社区已经为我们总结出了一套名为 Conventional Commits 的书写规范。很多流行的开源项目都使用了这套规范,如 Karma,Angular 等。其规定的格式如下: <type>[optional scope]: <description> [optional body] [opti 阅读全文
posted @ 2023-07-31 10:16 冰糖葫芦很乖 阅读(24) 评论(0) 推荐(0) 编辑
摘要: #include <Windows.h> int main() { // 获取目标窗口的句柄 HWND hWnd = FindWindow(nullptr, L"1111111"); if (hWnd != nullptr) { // 将窗口还原(取消最小化) ShowWindow(hWnd, SW 阅读全文
posted @ 2023-07-25 10:22 冰糖葫芦很乖 阅读(28) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 51 下一页