Steve Coffman

Results 340 comments of Steve Coffman

Hey, I would be pretty interested in the seeing the web UI you came up with. Is that available somewhere?

Woohoo! We currently, manually use [segmentio/golines](https://github.com/segmentio/golines) for this, if there is anything useful to be gleaned from that codebase, by the way.

Ugh... I'm a huge fan of everything else about this font, but this one bugs me. It took me a while to prove it wasn't caused by my OS.

> This issue will happen if one of your otel packages is still using v0.x, and not 1.x. The fix is to upgrade every OpenTelemetry package to 1.x. This is...

My present use case is discovering major version upgrades. Currently, [we have to scrape pkg.go.dev](https://github.com/icholy/gomajor/blob/2ce7ff463e5e9811e511b2b8e761a4558991edf2/internal/latest/latest.go#L38-L63). An alternative to pkg.go.dev API, would be if there were an "official" way (via `go...

Sorry, but we can't move to Go 1.18 yet. We are stuck on Go 1.16(!) until GCP AppEngine supports a newer version (3-6 months), and I don't feel comfortable maintaining...

Hi! Can you make a GitHub repository that reproduces this issue with the current v0.17.10? I would love even more a Pull Request that would solve your issue and avoid...

@visionp Sorry about that! 😞 Do you have an open-source repository that reproduces the problem or a Pull request that fixes the problem without breaking existing behavior?

Referenced comment: > Sorry to reopen here... but I fundamentally disagree with the original statement. Most database tools I've used (sqlx for example) don't return pointers. Making everything a pointer...

I often end up with `*Users` instead of `Users` becuase my structs are generally non-trivial and so it is inefficient to copy heavy structs around by value. I do get...