每日一谚:The benefits of implicit satisfaction of interface : 1. fewer dependencies 2. no type hierarchy 3. organic composition.

Go技术新闻

  1. 带你提前体验Go 1.16 io/fs包 - https://benjamincongdon.me/blog/2021/01/21/A-Tour-of-Go-116s-iofs-package/
  2. 支持Go的开源的Native persistent memory实现 - https:///jerrinsg/go-pmem
  3. Go播客:通过CUE配置赋能开发人员 - https://changelog.com/gotime/163
  4. 将fuzzing test以一等公民身份加入Go的设计草案 - https:///proposal/+/master/design/
  5. 为什么我的Go api比Node api慢十倍 - https:///golang-why-my-go-api-was-10x-slower-than-node-api-b9433d01c490
  6. 理解Go re-slicing - https://dev.to/gholami1313/re-slicing-in-golang-bp0
  7. 安全的电邮系统替代品(实验性) - https:///bitmaelum/bitmaelum-suite
  8. 用于Go练手的Go项目idea - https://smoqadam.me/posts/a-few-ideas-for-your-next-go-project/
  9. 我们是如何将linux移植到apple M1芯片上的 - https://corellium.com/blog/linux-m1
  10. 与克劳德-香农共度一万小时:天才如何思考、工作和生活 - https:///the-mission/10-000-hours-with-claude-shannon-12-lessons-on-life-and-learning-from-a-genius-e8b9297bee8f
  11. github 2020安全特性总结 - https://github.blog/2021-01-11-github-security-features-highlights-from-2020/
  12. 关于Go出口管制的讨论 - https:///g/golang-dev/c/RDlJVoki8R0

Go技术进阶专栏导读

Go语言是使用包(package)作为基本单元来组织源码的,可以说一个Go程序就是由一些包链接在一起构建而成的。很多Gopher在学习Go包导入时都或多或少有些疑惑:import 后面路径中的最后一个分段到底代表的是什么? 是包名还是一个路径?Go进阶专栏“改善Go语⾔编程质量的50个有效实践”的第十六篇文章《理解包导入路径的含义》https://www.imooc.com/read/87/article/2387

 将为大家揭开Go包导入路径的那些秘密!