Skip to content

Commit 4b471c0

Browse files
committed
gopher daily: add issue-20210613.md
1 parent d1f74f5 commit 4b471c0

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

202106/issue-20210613.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
Python vs Go:哪一个是最好的,为什么 | Gopher Daily (2021.06.13) ʕ◔ϖ◔ʔ
2+
3+
>每日一谚:Don't solve problems by building a thing. Instead, combine simple tools and compose them.
4+
5+
### Go技术生态
6+
7+
1. Python vs Go:哪一个是最好的,为什么?- https://techbiason.com/go-vs-python/
8+
2. gitops成熟度模型 - https://www.weave.works/blog/the-gitops-maturity-model
9+
3. 提高Kubernetes可理解性的5个技巧 - https://www.rookout.com/blog/5-tips-to-improve-kubernetes-understandability
10+
4. 异步和持久化的推送通知服务,支持APNS、FCM、网络推送、Telegram和电子邮件 - https://github.com/pennersr/shove
11+
5. 用OpenTracing、Jaeger和Ingress-NGINX在Kubernetes中设置分布式追踪功能 - https://awkwardferny.medium.com/setting-up-distributed-tracing-with-opentelemetry-jaeger-in-kubernetes-ingress-nginx-cfdda7d9441d
12+
6. Orkestra:一个云原生的发布编排和生命周期管理(LCM)平台 - https://github.com/Azure/orkestra
13+
7. 使用kubeadm在Ubuntu的VirtualBox上创建一个Kubernetes 1.20集群 - https://kosyfrances.com/kubernetes-cluster/
14+
8. cve-2021-31440: 使用eBPF的Kubernetes容器漏洞 - https://www.tigera.io/blog/cve-2021-31440-kubernetes-container-escape-using-ebpf/
15+
9. 你真的需要redis吗?如果只用PostgreSQL就可以实现呢?- https://spin.atomicobject.com/2021/02/04/redis-postgresql/
16+
10. vscode增加remote repositories插件,可直接从GitHub上浏览甚至编辑任何GitHub repo而无需先pull源码 - https://code.visualstudio.com/blogs/2021/06/10/remote-repositories
17+
18+
19+
### Go技术进阶专栏导读
20+
21+
对数据类型为字节切片 ([]byte) 或字符串 (string) 的对象的处理是我们在 Go 语言编程过程中最常见的操作。Go 字节切片为内存中的字节序列提供了抽象,而 Go 字符串则代表了采用 UTF-8 编码的 Unicode 字符的数组。Go 标准库中的 bytes 包和 strings 包分别为字节切片和字符串这两种抽象类型提供了基本操作类 API。一旦熟练掌握了这些常见基本操作的使用方法,处理字节切片和字符串以及由它们组成的复合类型数据对象时就可以游刃有余了。
22+
23+
Go进阶专栏“[改善Go语⾔编程质量的50个有效实践](https://mp.weixin.qq.com/s/RThCEQOdytQxwrMP7XRTRw)”的第41篇文章[《像极!bytes包和strings包的那些相似操作》](https://www.imooc.com/read/87/article/2471) 将为你详细讲解bytes 和 strings 包提供的 API ,包括查找与替换、比较、拆分、拼接、修剪与变换等。
24+
25+
![](http://image.tonybai.com/img/202011/go-column-pgo-with-qr-and-text.png)
26+
27+
28+
### 资料下载
29+
30+
关注公众号**iamtonybai**,发送特定关键字获取对应精品资料!
31+
32+
* Go语言学习技术路线图2021版 - 发送**go2021**
33+
* GopherChina 2020技术大会ppt资料 - 发送**gopherchina2020**
34+
* GopherCon 2020大会技术ppt资料 - 发送**gophercon2020**
35+
* 《设计数据密集型应用程序》作者Martin Kleppmann新课“分布式系统”的讲义资料 - 发送**distsys**
36+
* O'Reilly的《分布式跟踪实战(Distributed Tracing in Practice)》 - 发送**distrace**
37+
* 加州伯克利的47页的“机器学习的数学基础”资料 - 发送**math4ml**
38+
39+
### “Gopher部落”,新年新气象
40+
41+
[“Gopher部落”](https://mp.weixin.qq.com/s/jUqAL7hf2GmMun64BJufEA)正式转正(从试运营星球变成了正式星球)!“gopher部落”旨在打造一个精品Go学习和进阶社群,目前虽小,但持续力很强。在2021年上半年,部落将策划两个专题系列分享,并且是部落独享哦:
42+
43+
* Go技术书籍的书摘和读书体会系列
44+
* Go与eBPF系列
45+
46+
![](http://image.tonybai.com/img/202103/gopher-tribe-zsxq-card.png)
47+
48+
感谢大家对本星球的支持!
49+
50+
### 联系方式
51+
52+
* 有意想学习容器或Kubernets的童鞋可以了解一下我的慕课网实战课:k8s实战 - https://coding.imooc.com/class/284.html
53+
* gopherdaily归档:https://github.com/bigwhite/gopherdaily
54+
55+
* 编辑:Tony Bai (https://tonybai.com)
56+
* 邮件订阅:https://gopher-daily.com/
57+
* 知乎Go进阶专栏:https://www.zhihu.com/column/c_1352639051791454208
58+
* “Gopher部落”知识星球:https://public.zsxq.com/groups/51284458844544
59+
* 微信公众号:iamtonybai,扫码关注!
60+
61+
![](http://image.tonybai.com/img/202011/qrcode_for_iamtonybai.jpg)
62+

0 commit comments

Comments
 (0)