每日一谚:Concurrency is a way to structure a program by breaking it into pieces that can be executed independently.

Go技术新闻

  1. Go与eBPF入门 - https://networkop.co.uk/post/2021-03-ebpf-intro/
  2. Go 1.16.1和Go 1.15.9发布 - https://groups.google.com/g/golang-announce/c/MfiLYjG-RAw/m/zzhWj5jPAQAJ?pli=1
  3. 使用Go实现gRPC长期流式传输(long-lived streaming) - https://dev.bitolog.com/grpc-long-lived-streaming/
  4. netaddr.IP:Go的新IP地址类型 - https://tailscale.com/blog/netaddr-new-ip-type-for-go/
  5. 使用flag.Func(Go 1.16引入)自定义命令行标志 - https://www.alexedwards.net/blog/custom-command-line-flags
  6. cosign: 为镜像库中的容器签名,验证和存储, sigstore子项目 - https://github.com/sigstore/cosign
  7. 在Go中创建证书颁发机构(CA)和签名证书 - https://shaneutt.com/blog/golang-ca-and-signed-cert-go/
  8. 接纳Kubernetes需要转变思维方式(第1部分) - https://www.thoughtworks.com/insights/blog/mindset-shift-needed-kubernetes-adoption-part-1
  9. Go语言的mTLS入门指南 - https://venilnoronha.io/a-step-by-step-guide-to-mtls-in-go
  10. 在k8s上根据rabbitmq中消息数量自动扩展Celery - https://learnk8s.io/scaling-celery-rabbitmq-kubernetes
  11. 人工智能神经网络中的多模态神经元 by openai - https://openai.com/blog/multimodal-neurons/
  12. 使用basecamp规划我的生活 - https://world.hey.com/tassia/how-i-use-basecamp-to-organize-my-life-3e71de07

Go技术进阶专栏导读

Go语言在提供“Communicating Sequential Processes(CSP)”并发模型原语的同时,还通过标准库的sync包提供了针对传统基于共享内存并发模型的基本同步原语,包括:互斥锁(sync.Mutex)、读写锁(sync.RWMutex)、条件变量(sync.Cond)等。