Maurice Nonnekes
Maurice Nonnekes
Hey Chris, I'd be happy to supply the code for this. Adding an extra parameter to `smtpd.NewConn()` would break the API, so I'd advocate for one or two fields to...
I'm running into the same issue when fetching the `name` and `type` properties from `File` that came out of a `FileList` (that came out of a `DataTransfer`). ```go var val...
Hey there! I'm the author of ☝️. I'm still tinkering with that package, but it is basically working with the small tests I've been running locally. As per @codefromthecrypt's original...
I've just pushed some changes to `wasmexec` that makes the whole `js.FuncOf()` thing work. I've also built a fake-waPC thingy on top of it for convenience. @codefromthecrypt as for porting...
On a somewhat related topic, the current implementation requires us to implement the [runtime.getRandomData](https://github.com/golang/go/blob/master/misc/wasm/wasm_exec.js#L286) import while at the same time needing `crypto.getRandomValues` in the JS runtime for [rand.Read](https://github.com/golang/go/blob/master/src/crypto/rand/rand_js.go). Both doing...
Are you sure about that latter part of your comment, @ssttevee? If I deploy a Google Cloud Function written in Go and call `/foo/bar/zoink` on the base URL, it gets...
@iangudger, I was saying that the latter part of @ssttevee's comment seems to suggest that a function is only been given a singular URL path, namely `/execute`, and therefore an...
That's odd. However, looking at your code, wouldn't it be simpler to change this line ```go parts := strings.Split(line, " ") ``` to this? ```go parts := strings.Split(strings.TrimSpace(line), " ")...
I've been playing with this for a bit and I wonder how useful this really is 🤔 You cannot really break out of the `go` module so it _has_ be...
Hey Christian, nice initial start on that branch 👍 I agree with your stated difficulties. Error handling of these type of functions is kind of crappy and to be honest,...