Doug Daniels

Results 10 comments of Doug Daniels

Yes you can overwrite the git tags to match that versioning scheme, but I think the best process is to treat tags as immutable, and just re-tag the same ones...

Also i think while it's in `master` the process should be that things are tagged/re-tagged as: `v1.2.0-develop` - indicating the "next" version that will be released We can add that...

Maybe related to code-server scraping extensions from github vs using the marketplace due to Microsofts restrictions: - https://github.com/cdr/code-server/pull/113

Might also be able to upgrade to Ubuntu 20.04 (The latest LTS version that will be supported for awhile): https://linuxconfig.org/how-to-install-powershell-on-ubuntu-20-04-focal-fossa-linux

This might be a different feature, but there could be value in allowing users to specify labels at the top-level like on the executor. Then have those labels propagate down...

@bentsherman The GCP labeling being added appears to be done at the Google Lifesciences Pipeline level, for this to apply to the GCP VMs for cost monitoring this needs to...

Yeah being able to configure the html output name makes sense. I also realized this solution does not make sense for nested paths, because a file can't also be a...

@ericcurtin one option is to run it as comments, then you can run `go fmt` on it fine: ``` //usr/bin/env gorun "$0" "$@"; exit "$?" package main func main() {...

Looking at [httpcontrol](https://github.com/facebookgo/httpcontrol) Seems like there's a good example of intercepting an HTTP request and redirecting the response or also using the real response (e.g. if Rate limit is exceeded)....