George Bach
George Bach
@jekabolt recently faced a similar problem Try this project https://github.com/gebv/lex. It is fork. Added go mod and minor code fixes. It is project looks complete. Maybe as part of other...
I also want to control the legends Maybe add slot for every items of legend? Follow the concept code ```html {{props.color}} {{props.value}} {{props.percent}} {{props.label}} ```
As far as I understood `go-git` uses `go-billy` only for git worktree (like snapshots). And `go-git` not works in parallel with FS. Then it is not required mutexes on files?...
it is what needed? ``` GET | /v1/me/player/currently-playing | Get the User's Currently Playing Track | currently playing object ``` PS I not had researched deeply on the theme
I'll see what I can do. I hope you will accept my PR.
Use static method `fromJavaScript` for Struct See https://github.com/protocolbuffers/protobuf/blob/4d6712e73995e0c64eb5f208e7388f824175b3b8/js/proto3_test.js#L466 For me works If need get Value follow the code (dirty solution?) ```javascript import { Struct } from "google-protobuf/google/protobuf/struct_pb"; var jsObj =...
`{{ "a"|add:"b"|add:"c" }}`, i think that's enough.
If the token has been restored, i can access a resource. But token is not auto-refreshed. Why? ``` golang sourceToken := oauth2.ReuseTokenSource(nil, &fileTokenSource{accessToken, refreshToken, expiry}) client := &http.Client{ Transport: &oauth2.Transport{...
When your mind is fresh... no problems Working code ``` golang sourceToken := oauth2.ReuseTokenSource(nil, &fileTokenSource{accessToken, refreshToken, expiry}) t, _ := sourceToken.Token() client = conf.Client(oauth2.NoContext, t) client.Get("...") // token is auto-updated...
@hibiken Hi! We need functionality related to dynamic queues with a quality of service (qos) of 1 for each queue. Is there a branch where this work is being carried...