Nick Santos
Nick Santos
From https://axios-http.com/docs/cancellation: > Starting from v0.22.0 Axios supports [AbortController](https://developer.mozilla.org/en-US/docs/Web/API/AbortController) to cancel requests in fetch API way. But as far as I can tell, this library only mocks the old cancelToken-based...
Please answer these questions before submitting a bug report. ### What version of OpenCensus are you using? go.opencensus.io v0.22.4 ### What version of Go are you using? go version go1.14.3...
Hi, I'm the main author of the text editor on Medium.com. Some people have told me they're confused about whether this project is our editor or not. When talking to...
Run the following code: ``` goog.Uri.parse('http://google.com/callback#state=x%3Dy').toString() ``` Expected result: `http://google.com/callback#state=x%3Dy` Actual result: `http://google.com/callback#state=x=y` AFAIK, form-urlencoded fragments are a relatively recent thing. They come up in the OAuth spec, see https://tools.ietf.org/html/rfc6749#section-4.2.2,...
Hello @landism, Please review the following commits I made in branch nicks/snapshot: 491ff8cfb77f6fa63e8148af60a4178beef8d0f1 (2022-08-11 18:21:49 -0400) snapshot: adjust how the snapshot server binds to an address fixes https://github.com/tilt-dev/tilt/issues/5917 Code review...
Hello @nicks, Please review the following commits I made in branch nicks/ioutil: 52b1595f2a112c3480a1a2e36ec78a177c184425 (2022-08-11 18:38:11 -0400) cleanup deprecated ioutil functions Code review reminders, by giving a LGTM you attest that:...
### Expected Behavior `tilt snapshot view` should bind to localhost ### Current Behavior I've run `tilt snapshot view` locally and it seems to be binding to all addresses??? Users have...
In the #tilt channel, Dan C-P writes: > We seem to be seeing bloat in our tilt-managed kind control plane that I've narrowed down to what I think are dangling...
From sam in the tilt channel: ``` apiVersion: v1 kind: Pod metadata: name: eureka labels: app: eureka spec: containers: - name: eureka image: netflixoss/eureka:1.3.1 ports: - containerPort: 8080 --- apiVersion:...
## Describe the Feature You Want Add the following function to the tiltfile: ``` k8s_yaml(yaml, namespace='foo') ``` Tilt should go through all the objects in the YAML and do Helm/kubecontext...