weakish
weakish
ideviceinstaller can also be installed via apt on debian/ubuntu.
The official GitHub command line tool `gh` provides the `gist` sub-command. Replacing gist.rb with gh can also reduce messy curl and jq logic in gister. Later gister can be turned...
Similar to `gister --readme`, `gister --man | man -l -` looks cool to me. But this will introduce unnecessary dependency (markdown to man page converter). So I think it is...
Currently, create-cycle-app turns off `strictFunctionTypes` checks in `.tsconfig` in the `cycle-scripts-one-fits-all` flavor. ```json "strict": true, "strictFunctionTypes": false, ``` I want to know if it is safe to remove the line...
https://github.com/psf/black/releases/tag/22.1.0 因为目前 Python SDK 还支持 Python 2,所以需要找替代品,或者暂时用旧版的 black
比如以下代码会出错: ```python Author = leancloud.Object.extend('Author') author = Author() author.name = "Bob" Post = leancloud.Object.extend('Post') post = Post() post.set('title', 'hugry') post.set('content', 'where to eat') post.set('author', author) Comment = leancloud.Object.extend('Comment') comment =...
1. Python 2 已于 2020 年 1 月 1 号 EOL;未来 Python 3.10 还会移除一些兼容 Python 2 的特性 2. SDK 用的依赖也逐渐开始停止支持 Python 2,比如 gevent 1.5 官方说不支持 python 3.8 的(不过目前在 3.8 下跑单元测试能跑过,但不确定会不会有边角问题),而支持...
This is consistent with `query.first`. Thank [artsungames] for bringing this to our attention. [artsungames]: https://forum.leancloud.cn/t/python-get-id-null/24104