每日一谚:Don't use an interface if it's not clear how the interface makes the code better.

Go技术生态

  1. 编写50w行Go代码之后:可汗学院工程师的Go感悟 - https://blog.khanacademy.org/half-a-million-lines-of-go/
  2. 为什么你应该在你的Go服务器处理程序中使用errgroup.WithContext - https://bionic.fullstory.com/why-you-should-be-using-errgroup-withcontext-in-golang-server-handlers/
  3. BuildKit CLI for kubectl是docker build的替代品 - https://container-registry.com/posts/productivity-lift-buildkit-cli-for-kubectl/
  4. docker和kubernetes是如何创建ip地址的 - https://dustinspecker.com/posts/how-do-kubernetes-and-docker-create-ip-addresses/
  5. Go语言eBPF入门 - https://networkop.co.uk/post/2021-03-ebpf-intro/
  6. k8s集群中如何切换容器运行时 - https://dev.to/stack-labs/how-to-switch-container-runtime-in-a-kubernetes-cluster-1628
  7. gohugo vs. jekyll,哪个才是你的菜 - https://draft.dev/learn/posts/hugo-vs-jekyll-which-is-right-for-your-blog
  8. mk48: go实现的开源游戏项目 - https://github.com/SoftbearStudios/mk48
  9. 如何构建良好的远程工作文化 - https://liuandrewk.medium.com/how-to-build-a-good-remote-work-culture-5f482cd4f1dd
  10. 油管视频:git和github教程 - https://www.youtube.com/watch?v=RGOj5yH7evk

Go技术进阶专栏导读

在 Go 官方的 2019 年 Go 开发者调查报告中,有关 Go 开发过程依赖的调试工具与技术的调查结果中,排名前两名的分别是:使用文本输出 (fmt.Print 等) 调试 Go 代码 和 使用专业调试器 (如:Delve、GDB) 在本机调试 Go 代码。和“print 辅助调试”相比,专门调试工具可以运用在 “print 调试” 无法胜任的场景下。比如:与 IDE 集成、事后调查等。Go进阶专栏“改善Go语⾔编程质量的50个有效实践”的第38篇文章《掌握 Go 代码调试利器:delve》https://www.imooc.com/read/87/article/2465 将为你详细讲解目前Go语言领域使用最多的调试器:delve的原理、详细使用方法与注意事项。

往期推荐

第一波GopherChina嘉宾,你最爱的Gopher来了吗?

Go标准库http与fasthttp服务端性能比较

使用reflect包在反射世界里读写各类型变量

给expvarmon插上数据持久化的“翅膀”

Go标准库flag包的“小陷阱”

Go语言“十诫”[译]

Go泛型语法又出“幺蛾子”:引入type set概念和移除type list中的type关键字