Jemy Graw
Jemy Graw
[http header](http://qdisk.qiniudn.com/bat-http-header.png) It may looks more compatible under different themes for the http request & response headers' key to use `white` rather than `gray`. Hope it helps.
请大家备注自己愿意认领的包名称和需要时间(单位为Day)。逾期没有完成的任务将被标注为可认领,供其他人认领完成,并不再拥有翻译署名权。
code like this not work. ``` Icon( Feather.gitlab, size: 16, color: Colors.grey) ```
This is a little snippet displaying the error caused by this line. ``` package main import ( "bufio" "flag" "fmt" "os" "golang.org/x/net/websocket" ) func main() { var origin string var...
https://github.com/onlynight/v2ex_flutter_demo/blob/master/lib/ui/app.dart#L16 这里应该是 2 吧。
需要升级 cached_network_image: ^2.0.0-rc https://github.com/renefloor/flutter_cached_network_image/issues/270
https://github.com/anhao/go-ernie/blob/5b459d24168efa45b0e0beef00f2a7b101b8a609/baidu_chat.go#L11 ``` Temperature float32 `json:"temperature,omitempty"` TopP float32 `json:"top_p,omitempty"` PenaltyScore float32 `json:"penalty_score,omitempty"` ```
登录的时候,显示too many redirects的问题,然后后台日志有OAuthRedirect unknown provider错误。求解。
如果像这样创建数据库 ``` sql CREATE DATABASE `wetalk` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_bin ``` 则运行 ``` shell ./wetalk orm syncdb ``` 的时候,会报错,错误如标题所示。 经检查,utf8存储方式所占用的字节过多导致。 建议对表的列设置一个合适的长度。 目前发现 `user_social`和`setting`两张表会出现这个问题。