jsoncpp是一个用于操作json数据的C++开源库 代码地址:https://github.com/open-source-parsers/jsoncpp 使用文档:http://open-source-parsers.github.io/jsoncpp-docs/doxygen/index.h ...
分类:
Web程序 时间:
2021-05-24 12:49:23
阅读次数:
0
github地址 https://github.com/rest-client/rest-client gemfile里添加 gem 'rest-client', '~> 2.0' 执行 bundle install 代码里 # 要请求接口地址 # 上传文件的key名字 # file 文件的绝对路径 ...
分类:
Web程序 时间:
2021-05-24 12:42:18
阅读次数:
0
查看远程仓库 如果想查看你已经配置的远程仓库服务器,可以运行 git remote 命令,它会列出你指定的每一个远程服务器的名称 如果是刚 clone 下来的自己的库,能看到 origin,这是 Git 起的默认名字 $ git clone https://github.com/schacon/ti ...
分类:
其他好文 时间:
2021-05-24 12:39:49
阅读次数:
0
GRPC使用protocol buffers 作为接口定义语言(IDL)和信息交换格式。安装GRPC按照GRPC官方的教程,第一步要安装PROTOBUF的编译器下载地址:https://github.com/protocolbuffers/protobuf/releases/tag/v3.17.0我 ...
分类:
其他好文 时间:
2021-05-24 12:31:05
阅读次数:
0
liquidjs 是兼容shopify liquid 的纯js 模板引擎,同时官方文档也比较完整 支持的特性 安全渲染(没有eval 以及Function 使用) shopify 兼容 零依赖 ts 支持 参考使用 app.js const { Liquid } = require('liquidj ...
分类:
Web程序 时间:
2021-05-24 12:21:30
阅读次数:
0
一、将本地文件修改后push到远程分支有时会出现 devlops|MERGING 1 2 3 4 5 6 7 8 9 10 11 12 13 git add . git commit -m "feat:优惠券功能" git pull ........... (devlops|MEARGE) git ...
分类:
其他好文 时间:
2021-05-24 11:59:51
阅读次数:
0
1.安装脚手架为开发依赖 (官方git不推荐全局安装) npm install --save-dev @electron-forge/cli 2.使用脚手架创建新目录 npx create-electron-app my-app //创建普通的一个electron项目npx create-elect ...
分类:
其他好文 时间:
2021-05-24 11:46:17
阅读次数:
0
尝试做 ingress 实验,发现被畜生的墙拦住下载不了 mandatory.yaml & service-nodeport.yaml。 https://raw.githubusercontent.com/kubernetes/ingress-nginx/nginx-0.30.0/deploy/st ...
分类:
其他好文 时间:
2021-05-24 11:09:02
阅读次数:
0
今天想把一个本地项目推送到github【此前已经将这个项目推送到gitee!】 执行 git remote add origin +远程仓库地址 这个命令时,提示 error: remote origin already exists. 这是因为gitee&github 默认都是以 origin 这 ...
分类:
其他好文 时间:
2021-05-24 10:58:36
阅读次数:
0
##环境准备 安装windows最新版本git,硬盘建议空闲空间大于100G,内存16G。 安装vs2019,选择默认安装路径,组件选择最新的windows sdk和c++环境,因为google chromium的源码庞大,第三库极多,所以MFC和ATL也需要勾选安装。 打开控制面板,选中windo ...