Shu

Results 7 comments of Shu

> 如上修改,发现单表分页时又为0,紧急修改如下 > ![image](https://user-images.githubusercontent.com/34881771/83827314-90dded00-a710-11ea-81a8-21b296379d4a.png) 现在还是这个代码解决的吗? gorm.io/gorm 里面都看不到newscope函数了 ?

关于英文的拼写检查 我了解的两个版本 go 和python 1 [mispell](https://github.com/client9/misspell)是kubernetes社区在用的每次verify pr都会检查一次。功能很强,但有些拼写检查很弱, 有些真的拼写错误会漏掉 2 [spell-check](https://github.com/DasyDong/spell-check-go),我今天手写的, 基于[pyenchant](https://github.com/pyenchant/pyenchant) 这个检查Bug也很多, 会错误识别typo但不太会漏 总体上这两种下面这些都会识别出有问题, 譬如protocolbuffers, 但如果是protocolBuffers这种标准的就不会被标记成错误 ``` zhongfox istioctl sinaimg tKfTcgy flw dmj wq grn referrerpolicy oyaml proxyv productpage cb...

ch := make(chan int) // 带缓冲区 ch := make(chan int, 10) // 不带缓冲区,缓冲区满之前,即使没有接收方,发送方不阻塞 第一个才是不带缓冲区吧? 第二个是带缓冲区

问两个问题: 1 pika operator / 最小镜像 有进展吗 ? 2 pika 支持helm 吗 看helm官方么有 或者docker最佳实践有吗 多谢

`sudo find / -name kube-shell` kube-shell path is not in zsh, you just find the path and export path to .zshrc file vi .zshrc, add export code , save the...

I am also looking for a good spell-checking library for python. I use python enchant ,however it's not satisfied currently. [spell-check-go](https://github.com/DasyDong/spell-check-go) Have you found better python library? @Raphencoder

> Hi @DasyDong , > Yes I found this library who is pretty awesome! > https://github.com/bakwc/JamSpell Sounds good .Thanks a lot