上一页 1 2 3 4 5 6 7 8 ··· 52 下一页
摘要: curl_easy_perform() failed: Problem with the SSL CA cert (path? access rights?) 最近遇到了一个这个问题 发现是因为自己加了一个这个 curl_easy_setopt(pCURL, CURLOPT_SSL_OPTIONS, 阅读全文
posted @ 2024-01-04 16:31 冰糖葫芦很乖 阅读(137) 评论(0) 推荐(0) 编辑
摘要: https://chromium.googlesource.com/chromium/src/+/105.0.5195.127/tools/vscode https://source.chromium.org/chromium/chromium/src/+/main:tools/vscode/ 一直 阅读全文
posted @ 2024-01-03 11:51 冰糖葫芦很乖 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 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 冰糖葫芦很乖 阅读(729) 评论(0) 推荐(0) 编辑
摘要: 转载来自:https://jzgkchina.com/node/1005 Ping 命令 Ping 命令,是一个基于网络层 (比传输层还底层) 的 ICMP(Internet Control Message Protocol) 协议的命 令,主要用于检测和目标主机之间的网络是否通畅,以及网络的延时。 阅读全文
posted @ 2023-12-13 16:18 冰糖葫芦很乖 阅读(262) 评论(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 冰糖葫芦很乖 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 转载来自:https://www.jianshu.com/p/0124f10b2e00 codesign就是创建和管理证书的。下面列举一些基本的操作使用。 可以查看codesign的使用帮助 codesign --help 使用方法的命令 Usage: codesign -s identity [- 阅读全文
posted @ 2023-10-09 18:08 冰糖葫芦很乖 阅读(813) 评论(0) 推荐(0) 编辑
摘要: 执行 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 最后会给出警告说 接下来的话, 那我们把路径放进去 在文件末尾编辑您的~/.zshrc export 阅读全文
posted @ 2023-09-13 13:59 冰糖葫芦很乖 阅读(376) 评论(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 冰糖葫芦很乖 阅读(1411) 评论(0) 推荐(0) 编辑
摘要: 原文:《漫谈 C++ 的各种检查》 为什么代码中需要各种检查?在 C++ 中调用一个函数、使用一个类、实例化一个模板时,对传入的参数、使用的时机,往往会有很多 限制 (constraint/restriction)(例如,数值参数不能传入负数、对象的访问不是线程安全的、函数调用不能重入);而处理限制 阅读全文
posted @ 2023-08-17 09:31 冰糖葫芦很乖 阅读(216) 评论(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 冰糖葫芦很乖 阅读(126) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 52 下一页