以二进制形式部署 CoreDNS 服务器

背景 CoreDNS 是 Golang 编写的一个插件式 DNS 服务器,Kubernetes 1.13 后内置的默认 DNS 服务器。特点如下: 插件化:基于 Caddy 框架,实现了一个插件链的架构,将不同

GoLang Struct

Struct 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69

Macos 一键 使用 wkhtmltopdf 将 html 转换为 pdf

安装 wkhtmltopdf 使用 brew 进行安装 1 brew install --cask wkhtmltopdf 将目录下的所有 html 文件一键转换为 pdf 格式 1 for f in *.html; do wkhtmltopdf --load-error-handling ignore -n --enable-local-file-access $f "$f.pdf"; done 参考文档 https://segmentfault.com/a/1190000018988358 https://github.com/wkhtmltopdf/wkhtmltopdf