evalphobia

Results 23 comments of evalphobia

I think we should use the different instance to manipulate multiple devices in common situation. ```go cli1, _ := googlehome.NewClientWithConfig(googlehome.Config{ Hostname: "192.168.0.1", Lang: "en", Accent: "GB", }) cli2, _ :=...

@pieterlouw This library use https://github.com/fluent/fluent-logger-golang and the default is `tcp`. https://github.com/fluent/fluent-logger-golang/blob/master/fluent/fluent.go#L20 This library just use default one so far, but you can add supports for `unix domain socket` https://github.com/fluent/fluent-logger-golang/blob/master/fluent/fluent.go#L272-L284

Thank you for creating PR. Would you put back `googletts` code for getting URL with token? It's a key factor to keep using Google TTS API for free. https://github.com/evalphobia/google-home-client-go/pull/5/files#diff-72780271da284fa0b4f776442a0d004fL75

@Dontmindmes I have never tried it. 😭 If you will do, you have to open port ( default port is [TCP 8009](https://github.com/evalphobia/google-home-client-go/blob/master/googlehome/config.go#L12) ). From a security perspective, you must restrict...

> .\main.go:16:11: cli.Close undefined (type *googlehome.Client has no field or method Close) Sorry, I removed `Close()` method and I changed to close in the every action. So you don't need...

The old raven-go was archived, so we'll move to new sentry-go. Should we create new sentry hook repository for the new sentry-go?

@dineshgowda24 Sorry, I've not created yet. I recently do not use sentry and logrus so much, so it's bit difficult to test and confirm PR and features on my environment....

@dgsb Thank you for your information! 🎓 I'll check this library needs changes or not.

@arcana261 Thanks 🍡 #75 has been Merged. https://github.com/evalphobia/logrus_sentry/releases/tag/v0.7.0

@montanaflynn Sorry for my late reply. `SetUserContext` sets [user data](https://github.com/getsentry/sentry-go/blob/master/interfaces.go#L55) into sentry client [directly](https://github.com/getsentry/raven-go/blob/2111b06cc86a0b71cdb2386a2afb3c13f901c029/client.go#L952). If you want to use this method for each request from users and set different users...