go restful go http web123456789101112//基础 web serverfunc simpleHttpServer(){ //1. 往serverMux的 map[string]muxEntry 添加路由规则pattern以及封装了handler的muxEntry //2. 匹配pattern,Handler被调用 http.HandleFunc("/hello&qu 2017-10-05
go protobuf 介绍Protocol buffers通常称为Protobuf,是Google开发的一种协议,允许对结构化数据进行序列化和反序列化。 谷歌开发它的目的是提供一种比XML更好的方式来进行系统间通信。 因此,他们专注于使其比XML更简单,更小,更快,更易于维护。与此同时,该协议甚至超越了JSON,具有更好的性能,更好的可维护性和更小的尺寸。 安装 下载 protoc 放到 GOPATH/bin 测试 1 2017-10-03 go
docker抓包方法 1. 确认容器网络模式1docker inspect container_name | grep NetworkMode 回显: 1"NetworkMode": "default", 2. host模式抓包3. default模式抓包1docker inspect --format '{{.State.Pid}&# 2017-08-01
Centos7搭建k8s 关闭防火墙12systemctl stop firewalldsystemctl disable firewalld 关闭Swap12swapoff -a sed -i 's/.*swap.*/#&/' /etc/fstab 关闭Selinux12345678910111213setenforce 0 sed -i "s/^SELINUX=enf 2017-08-01 k8s
申请移动设备管理厂商(MDM Vendor) 申请移动设备管理厂商(MDM Vendor)前提:必须是苹果企业开发者 前往苹果开发者网站申请成为MDM Vendor,申请成功后在开发者网站可以看到多出一个MDM CSR选项 2016-07-01 MDM Vendor