每日一谚:A good name is Consistent (easy to guess), Short (easy to type), Accurate (easy to understand)。
Go技术生态
- 2021 GopherChina上字节跳动分享的Go 网络库上的实践中提到的netpoll库开源 - https://github.com/cloudwego/netpoll
- Go实现的全能公链thinkium - https://github.com/ThinkiumGroup/go-thinkium
- 私有化仓库的 GO 模块使用实践 - https://zhuanlan.zhihu.com/p/384621827
- 在Go中构建商业应用: Three Dot实验室联合创始人专访 - https://goingwithgo.com/2021/07/building-business-applications-in-golang-three-dots-labs/
- 比较现代的容器镜像生成器:Jib、Buildpacks和Docker - https://community.suse.com/posts/comparing-modern-day-container-image-builders-jib-buildpacks-and-docker
- 充分利用Fleet和Rancher进行Kubernetes GitOps持续集成和交付 - https://digitalis.io/blog/kubernetes/kubernetes-gitops-continuous-integration-and-delivery-with-fleet-and-rancher/
- 内置go语言扩展引擎的Go web服务器 - https://github.com/i-rme/GOP-Server/
- Go实现的包数据编辑工具 - https://remyhax.xyz/posts/golang-packet-editing/
- 我喜欢的编程语言以及我为什么喜欢它们 - https://deepu.tech/languages-i-like-and-why/
- kubernetes配置模式:kubernetes controler模式 - https://developers.redhat.com/blog/2021/05/05/kubernetes-configuration-patterns-part-2-patterns-for-kubernetes-controllers
- stealthpool提供了一个内存池,它在堆外分配的块不会被垃圾收集器追踪到 - https://github.com/Link512/stealthpool
Go技术进阶专栏导读
Go语言有很强的C语言背景,除了语法具有继承性外,其设计者以及其设计目标都与C语言有着千丝万缕的联系。在Go语言与C语言的互操作(Interoperability)方面,Go更是提供了强大的支持,尤其是在Go中使用C语言,你甚至可以直接在Go源文件中编写C代码,实现这种互操作的技术就是cgo。
Go进阶专栏“改善Go语⾔编程质量的50个有效实践”的第45篇文章《与C互操作不是免费的!一文了解cgo的使用成本》https://www.imooc.com/read/87/article/2475 将为你详解cgo的原理、使用方法、跨平台构建的注意事项以及cgo带来的开销。

资料下载
关注公众号iamtonybai,发送特定关键字获取对应精品资料!
- Go语言学习技术路线图2021版 - 发送go2021
- GopherChina 2021技术大会ppt资料 - 发送gopherchina2021;
- GopherChina 2020技术大会ppt资料 - 发送gopherchina2020;
- GopherCon 2020大会技术ppt资料 - 发送gophercon2020;
- 《设计数据密集型应用程序》作者Martin Kleppmann新课“分布式系统”的讲义资料 - 发送distsys;
- O'Reilly的《分布式跟踪实战(Distributed Tracing in Practice)》 - 发送distrace;
- 加州伯克利的47页的“机器学习的数学基础”资料 - 发送math4ml;
“Gopher部落”,新年新气象
“Gopher部落”正式转正(从试运营星球变成了正式星球)!“gopher部落”旨在打造一个精品Go学习和进阶社群,目前虽小,但持续力很强。在2021年上半年,部落将策划两个专题系列分享,并且是部落独享哦:
- Go技术书籍的书摘和读书体会系列
- Go与eBPF系列
感谢大家对本星球的支持!
联系方式
- 有意想学习容器或Kubernets的童鞋可以了解一下我的慕课网实战课:k8s实战 - https://coding.imooc.com/class/284.html
- gopherdaily归档:https://github.com/bigwhite/gopherdaily
- 编辑:Tony Bai (https://tonybai.com)
- 邮件订阅:https://gopher-daily.com/
- 知乎Go进阶专栏:https://www.zhihu.com/column/c_1352639051791454208
- “Gopher部落”知识星球:https://public.zsxq.com/groups/51284458844544
- 微信公众号:iamtonybai
往期推荐
一文告诉你如何用好uber开源的zap日志库
使用p.key的形式读取ini配置项
使用go-metrics在Go应用中增加度量
通过实例理解Go Execution Tracer
使用functrace辅助进行Go项目源码分析
通过实例理解Go逃逸分析
Go标准库http与fasthttp服务端性能比较