Results 115 comments of Sam Whited

The GOPATH isn't being used to install the commands, it's being used to find protobuf files for stravaganza, I think? The problem is there is no central location where source...

I had an idea and pushed another commit that fixes this to work in Go module mode. TL;DR we run `go mod vendor` to put all the dependencies in the...

I should also note that it's quite possible there is a better way to do this, but the workaround works on my machine. I do not know what the correct...

@thaJeztah I can pin this to master and update, but would we rather do a release of go-connections so that we have a tag to reference in the vendor.conf comment?...

Sounds good to me (docker/go-connections#69)

This contrived example shows the error: https://go.dev/play/p/P2n9VLzEQX6 Because the start token has already been popped from the stream (to check what the name is to trigger the appropriate handler or...

That seems better to me at first glance since it's a lot more flexible. I'm assuming any XML errors would be deferred until the token was read back out? Even...

Actually, looking again this isn't the same thing. The next call to `Token` would return the start token, but in the initial examples the start token has already been consumed,...

I'm having a hard time expressing this in an example as it either becomes very long or doesn't look like it makes sense. The question is, with your proposal, which...