Blake Gentry

Results 189 comments of Blake Gentry

Do you have thoughts on putting more into a json manifest like this? I was thinking that plugins could have a json manifest that includes their help text or a...

Yeah, I understand that it's not something that can really be fixed. And no, I used [golang-crosscompile](http://dave.cheney.net/2013/07/09/an-introduction-to-cross-compilation-with-go-1-1), which doesn't explicitly disable cgo if it's supported. So that's why it's working...

> If you compile everything on OSX will you have the same problem on the Windows and Linux cross compiled builds? @ddollar golang-crosscompile builds a cross compiling environment for all...

Also thinking that a `--debug` flag or similar env that shows request / response body might be helpful.

@dustin I definitely agree that utilizing `context.Context` is the way to go here. You can model it after what `net/http` does and make the context a part of the `coap.Message`....

I encountered this same need tonight. Following on @arenoir's idea, I was able to come up with something that works (with [a minor change](https://github.com/poteto/ember-changeset/pull/292) to ember-changeset). I made a `ValidationProxy`...

I believe this was: ```js // broken route.js ... myTask: task(function*() { this.transitionTo("otherRoute"); }), ``` ```js // working route.js ... myTask: task(function*() { Ember.run(() => this.transitionTo("otherRoute")); }), ``` In my...

Related dep upgrade PR https://github.com/n1ru4l/envelop/pull/2235 Needs some manual work to get it over the line and adjust to the new APIs.

For me, this cache config adds 2 seconds to restore the cache and then drops my bun install time from 6-10s to

1m20s sounds like you either have an enormous set of deps to cache, or a very slow transfer speed. With GitHub Actions my cache save time was generally under 10...