Results 14 comments of GrooveStomp

![detect-zoom](https://f.cloud.github.com/assets/433268/267302/368fe314-8e75-11e2-97b5-90f24673cbee.png) FYI - This issue is occurring for me with Chrome Version 25.0.1364.172 m on a Dell U2711 monitor with Windows 7. DPI is 109ppi with an overall resolution of...

For Go we used [logrus](https://github.com/Sirupsen/logrus) at my last gig.

More specifically, we used Logrus with json output. We also used [ougai](https://github.com/tilfin/ougai) for Ruby to output json logs. We were using Datadog to aggregate logs and it had a built-in...

I started looking into this a bit. We use `github.com/manifoldco/promptui`; but I'm not sure if the bug lies in that library, or in the readline library it uses: `github.com/chzyer/readline`.

Sorry, I need to clarify that a bit. There is a bug in zero where we interpret a `delete` as EOF. This specific bug doesn't occur in `promptui`. Here's a...

I'm able to reproduce this with Readline like so: ```Go package main import ( "fmt" "github.com/chzyer/readline" "github.com/manifoldco/promptui" "os" ) func main() { c := &readline.Config{ HistoryLimit: -1, UniqueEditLine: true, }...

@bmonkman you have existing Go code for some of this? I'd like to start breaking this down into implementable pieces.

@bmonkman The basic functionality to support this is now delivered for zero, but we're missing image processing. Should we keep the epic alive for that?

Some suggestions: **unit testing** - Go: testify, `go test`. I've personally not used an external library for unit tests in go; so just having a dummy `*_test.go` file and relying...

Now that we're ostensibly support both NodeJS **and** Go on the backend, I think it makes for an even stronger case to use Launch Darkly.