Jamie Talbot

Results 15 comments of Jamie Talbot

Oh, huh. Well, I'm running a patched version with [this PR](https://github.com/gocolly/colly/pull/512) applied, and it fixes it, though perhaps for the wrong reason? I checked and it wasn't going into the...

ok, so confirmed it's still broken with a vanilla client, so fair enough. ``` request, err := http.NewRequest("GET", "https://regexr.com/39p0t", nil) response, _ := client.Do(request) defer response.Body.Close() b, err := ioutil.ReadAll(response.Body)...

Yeah, I was wondering the same. Couldn't find anything interesting in curl's trace output, and I'm at the limits of my knowledge here, but I appreciate you taking the time...

I went and tried that approach, and it didn't immediately work for me, though I don't exactly recall why right now. It really would be very nice if you could...

Came here with a similar issue. I have a client that uses the http protocol to receive cloudevents from a pubsub push. (I have a custom Format to handle the...

(I know I could just start an http server, but i'd like to take advantage of auto subscription creation, especially when using a local pubsub emulator in development that is...

i was hoping that an addition of the pushconfig/endpoint parameter to the pubsub protocol would signal data was to be expected in that way, and allow the receiver to do...

How about making them observables using something like RxJS @murgatroid99? I'm not an expert on them, but I believe they would support streaming and metadata a little more cleanly, and...

FWIW, I did suggest observables, which seem to be steaming compatible and promise compatible, and potentially worthy of exploration.

Some of it is admittedly just personal preference, where I can look at the code generated by the build step and understand exactly what's going on. For my specific situation,...