Mathis Van Eetvelde
Mathis Van Eetvelde
When using the -log.file flag like this using the `rdvp serve` command, everything works fine. ```bash rdvp serve \ -log.format=json \ -log.file=/home/ec2-user/log.json ``` But when you try to use the...
When running `http_api.py` its giving me this error: ``` Mathiss-iMac:match_ai mathis$ python3 http_api.py Traceback (most recent call last): File "http_api.py", line 17, in from linkedin.linkedin import LinkedInAuthentication, LinkedInApplication, PERMISSIONS File...
All im trying to do is get the top posts of a subreddit. This is my code: ```go package main import( "fmt" "github.com/cameronstanley/go-reddit" ) func main() { client := reddit.NoAuthClient...
The links to the images on line 3 and 5 are broken. They both give me a 502 Bad Gateway.
Following the link in the about section ([here](https://pkg.go.dev/github.com/yuexcom/go-xrp?utm_source=godoc)) tells me the following: `"github.com/yuexcom/go-xrp" does not have a valid module path ("go-xrp"). `
The way a google drive client session is created from the credentials is deprecated. ```go conf, err := google.JWTConfigFromJSON([]byte(creds), scope) // instantiating a new drive service ctx := context.Background() svc,...