每日一谚:Concurrency makes parallelism (and scaling and everything else) easy.

Go技术生态

  1. 通过实例理解Go Execution Tracer - https://t.zsxq.com/fYnIQ3N
  2. 为什么企业应该使用Go编程语言?- https://mobisoftinfotech.com/resources/blog/why-companies-use-golang/
  3. Go在stackoverflow建立官方文档频道 - https://blog.golang.org/stackoverflow
  4. devtron: k8s软件交付工作流 - https://github.com/devtron-labs/devtron
  5. 致gohugo的情书 - https://akondas.com/blog/a-love-letter-to-hugo/#netlify-is-beautiful
  6. GoFiber:Express框架的高性能替代品 - https://dev.to/karanpratapsingh/introduction-to-go-fiber-2m0a
  7. Sidero是一个支持Kubernetes集群API的裸金属供应系统 - https://github.com/talos-systems/sidero
  8. 为什么Golang是构建人工智能驱动的应用程序的主流编程语言?- https://medium.com/devtechtoday/why-golang-is-a-mainstream-programming-language-for-building-ai-powered-apps-805f29f08a1f
  9. pipeline: 一个帮助你在Go中创建流水线的库 - https://github.com/deliveryhero/pipeline
  10. 使用WSL2 + Goland进行Go项目(Thanos)开发及测试 - https://hangzhi.github.io/2021/06/24/wsl2GolandThanosDev/
  11. 使用go构建云应用教程 - https://www.golang.dk/courses/build-cloud-apps-in-go
  12. PlayStation架构 - https://www.copetti.org/writings/consoles/playstation/

Go技术进阶专栏导读

我们现在编写的大部分现代应用程序都离不开与时间相关的操作。常见的时间操作包括:获取当前时间、时间比较、时区相关的时间操作、时间格式化、定时器(一次性定时器timer和重复定时器ticker)的使用等。Go语言通过标准库的time包为常见时间操作提供了全面的支持。