Johannes Kohnen

Results 12 comments of Johannes Kohnen

For folks who come here by Google search etc and have trouble building this binary: Go modules solve all build issues because @equinox0815 already went through the trouble for us...

@hlandau please please merge in #326.

If you don't want to compile yourself, but just want to download a binary from a trusted source, you can unpack the acmetool binary from debian testing directly: ``` joh@xanos:/tmp$...

Having version information of the main module in the binary is a hard problem in Go at the moment: https://github.com/golang/go/issues/29228 The author of acmetool has "solved" that in a ......

I have climbed the call stack from [`app/carbonzipper.App.renderHandler()`](https://github.com/bookingcom/carbonapi/blob/b5dd1535f91fd0e864c5bebf0e652ba0a98c8dfd/app/carbonzipper/http_handlers.go#L276) and came along [`pkg/backend.Renders()`](https://github.com/bookingcom/carbonapi/blob/b5dd1535f91fd0e864c5bebf0e652ba0a98c8dfd/pkg/backend/rpc.go#L44). It calls a bunch of `pkb/backend/Backend.Render()` in a goroutine and then waits in a loop for each of...

I assume the above is a screenshot of Jetbrains font test scratch pad with the following non-ligatured characters: ``` abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789 (){}[] +-*/= .,;:!? #&$%@|^

The idea sounds great. What I happen to be doing right now is writing test cases (I expect to push them next weekend), because I want to refactor this software...

That looks like a good step forward. I've cleaned up my testing code and pushed it to a new branch [dev](https://github.com/jwkohnen/conntrack-stats-exporter/tree/dev) and used that to also change what the exporter...

I have pushed a "big refactoring." The sloc rised quite a bit, but despite that I think the code structure is a lot cleaner and easier to do adapt the...

Coming here because I've expected restic to exit with non-zero code when it received a signal. Otherwise it is hard to terminate a script after restic terminated on request. In...