Daniel Nephin

Results 443 comments of Daniel Nephin

> most of make install commands create multiple files in multiple locations I believe most `make install` commands also allow you specify a "base path" as well, right? Which might...

I think it's a bit dangerous to remove volumes by default. There could be important data in those volumes, and the expectation for anyone who has used `docker run` or...

One option seems to be a new method on `Logger`: ```go type logWriter struct { logger Logger level Level } func (w logWriter) Write(p []byte) (n int, err error) {...

The main benefit for me would be in `tilt snapshot view`. We use the snapshots to debug CI runs, so the url of the snapshot is frequently different. I think...

@nicks Thank you for the response! I looked and you are correct that these image tags are from our script. I believe this was to satisfy the `outputs_image_ref_to` parameter to...

I don't think so, no. The two problems, as I understand them, are: One: https://github.com/google/go-github/blob/454c1ddaeb85aa3caba66b7cd21ca24b6a2e311d/github/repos_releases.go#L390 because this API requires [application/octet-stream](https://docs.github.com/rest/overview/media-types) to download the asset. This line should use that as...

Hello, thank you for the bug report! Unfortunately I am not maintaining this repo anymore. See #98. Maybe one of the other golang pre-commit hooks have this support.

Yes, I don't really use git hooks anymore. I'll run tests on every file save, and my IDE mostly takes care of formatting and import order every time a file...

Ya, I get a ton of value from running tests on every save! I use `gotestsum --watch -ftestname -- -count=1`. Sometimes if I'm working in a large project I'll add...