上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 30 下一页
摘要: 环境:win10 vs2017 c++17 boost 1、下载源码:https://github.com/qicosmos/iguana 2、创建工程,包含源码目录、boost库目录;boost库;c++17 阅读全文
posted @ 2019-06-21 16:48 osbreak 阅读(747) 评论(0) 推荐(0) 编辑
摘要: cinatra 一个高效易用的c++ http框架 1、下载源码 https://github.com/qicosmos/cinatra 2、 准备好boost库 (vs2019 编译boost库 【msvc-14.2】 x64位) 3、 vs2019 配置工程: c++17 、boost路径、库路 阅读全文
posted @ 2019-06-21 13:59 osbreak 阅读(1161) 评论(0) 推荐(0) 编辑
摘要: 环境: win10 vs2017 v141 1、下载 boost_1_70_0.zip. 2、以管理员方式打开 3、 bootstrap.bat 4、编译64位库 b2.exe stage --toolset=msvc-14.1 address-model=64 --stagedir="D:\App 阅读全文
posted @ 2019-06-21 11:05 osbreak 阅读(4155) 评论(0) 推荐(1) 编辑
摘要: 基础操作 1.0 Pod /* 获取命名空间 */ kubectl get namespace /* 创建命名空间 */ kubectl create ns test /* 删除命名空间 */ kubectl delete ns test /* 使用yml文件 */ kubectl apply -f 阅读全文
posted @ 2019-06-18 14:37 osbreak 阅读(967) 评论(0) 推荐(0) 编辑
摘要: Kuboard 搭建k8s 官网教程:https://kuboard.cn/ https://kuboard.cn/install/history-k8s/install-k8s-1.19.x.html 1.0 环境配置 # 修改 hostname hostnamectl set-hostname 阅读全文
posted @ 2019-06-15 18:25 osbreak 阅读(370) 评论(0) 推荐(0) 编辑
摘要: certbot certonly -》 选1 输入用邮箱 -》 A 同意 -》 Y -》 输入你的域名 -》 阅读全文
posted @ 2019-06-01 14:55 osbreak 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 查看端口占用 ss -lntpd | grep :80 阅读全文
posted @ 2019-06-01 13:54 osbreak 阅读(132) 评论(0) 推荐(0) 编辑
摘要: gitlab 提交 Git global setup git config --global user.name "lial" git config --global user.email "lial@xxxxx.com" Create a new repository git clone git@ 阅读全文
posted @ 2019-05-07 11:17 osbreak 阅读(365) 评论(0) 推荐(0) 编辑
摘要: 网络 1.01 获得本地计算机主机名称/ip信息 { //初始化WinSock WSADATA WSAData; if (WSAStartup(MAKEWORD(2, 0), &WSAData) != 0) { return; } //获得本地计算机主机名称 char hostName[1024] 阅读全文
posted @ 2019-04-15 13:39 osbreak 阅读(181) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "reflect" ) type Student struct { name string age int } func (s Student) Set(name string, age int) { s.name = name s.age = age } func test(b... 阅读全文
posted @ 2019-03-21 22:49 osbreak 阅读(130) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 30 下一页