GitHub is where people build software. More than 150 million people use GitHub to discover, fork, and contribute to over 420 million projects.
Translation of C++ Core Guidelines [https://github.com/isocpp/CppCoreGuidelines] into Simplified Chinese. - lynnboy/CppCoreGuidelines-zh-CN
`Docker`: wget --no-check-certificate -qO ~/serverstatus-config.json https://raw.githubusercontent.com/cppla/ServerStatus/master/server/config.json && mkdir ~/serverstatus-monthtraffic docker run -d --restart=always --name=serverstatus -v ~/serverstatus-config.json:/ServerStatus/server/confi...
NOTE: cpp-httplib currently supports only version 1.1.1 and 3.0. #defineCPPHTTPLIB_OPENSSL_SUPPORT#include"path/to/httplib.h"// Serverhttplib::SSLServersvr("./cert.pem","./key.pem");// Clienthttplib::Clientcli("https://localhost:1234");// scheme + hosthttplib::SSLClientcli("localhost:...
Universal tool call support inllama-server:https://github.com/ggml-org/llama.cpp/pull/9639 Vim/Neovim plugin for FIM completions:https://github.com/ggml-org/llama.vim Introducing GGUF-my-LoRAhttps://github.com/ggml-org/llama.cpp/discussions/10123 ...
#define CPPHTTPLIB_OPENSSL_SUPPORT #include "path/to/httplib.h" // HTTP httplib::Client cli("http://cpp-httplib-server.yhirose.repl.co"); // HTTPS httplib::Client cli("https://cpp-httplib-server.yhirose.repl.co"); auto res = cli.Get("/hi"); res->status; res->body;...
NOTE: cpp-httplib currently supports only version 1.1.1. #defineCPPHTTPLIB_OPENSSL_SUPPORThttplib::SSLServersvr("./cert.pem","./key.pem"); httplib::SSLClientcli("localhost",1234);//or `httplib::Client cli("https://localhost:1234");`cli.set_ca_cert_path("./ca-bundle.crt"); cli.ena...
Username for 'https://gitee.com': userName Password for 'https://userName@gitee.com':#私人令牌 新建文件新建 Diagram 文件 新建子模块 上传文件 分支1 标签1 undefined 贡献代码 同步代码 创建Pull Request 了解更多 对比差异通过 Pull Request 同步 ...
cpp-httplib A C++ single-file header-only cross platform HTTP/HTTPS library. It's extremely easy to setup. Just includehttplib.hfile in your code! Server Example #include<httplib.h>intmain(void) {usingnamespacehttplib;Server svr; svr.Get("/hi", [](constRequest& req, Response& res) { ...
.github Update README with "How to use Templates" section (#241) Feb 27, 2024 build Republish Templates (#280) Aug 27, 2024 src Automated documentation update [skip ci] (#293) Oct 15, 2024 test [CPP, Typescript-Node] - Ubuntu-24.04 (noble) & 22-bookworm - updated (… ...