Andy Walker

Results 92 issues of Andy Walker

From a UX perspective, "Error: runtime error: invalid memory address or nil pointer dereference" is not particularly helpful if I've made a mistake in my magefile that causes a panic,...

:computer: UX

Part of one of my build steps is a docker login using AWS creds. For security the docker executable prefers you to pass the password on stdin as opposed to...

I am developing a new theme for VSCode (and others eventually), and I include screenshots of the theme in action in the `README.md` for the project. Currently, I have to...

discussion

Per our discussion in [stompngo_examples issue #2](https://github.com/gmallard/stompngo_examples/issues/2), I'm opening an issue in the main project. The concern is on what to do with in-flight messages received after or during an...

Convention in Go is to use single line comments, even for multiline ones. Would be nice to have a toggle that lets the style persist until the first non-comment line.

xyz -> oklab for draft to fix #54 oklab->xyz failing due to fp inaccuracy (I think?) with calculated matrix inverse. Might have to go through linear rgb for now. Port...

I'm using this for development with a series of services that describe themselves in their structured logs, i.e.: ``` {"service":"myservice", "level":"debug", "msg","some message"} ``` It would be very useful to...

About to start playing around with this project for development in containers with a project structured like so: ``` go.mod go.sum projectshared.go sharedlib/ sharedlib.go cmd/ cmd1/ main.go anothercmd1file.go cmd2/ main.go...

I'm getting "message too large" messages on some large JSON documents that, when compressed, are nowhere near the limit. in `producer_partiton.go`: ```go // if msg is too large if len(payload)...