Peter Nguyen
Peter Nguyen
I found that wrapping the form data in a `URLSearchParams` works. ```js const url = 'https://example.com'; const formData = new FormData(); formData.append('username', 'test'); r = await ky.post(url, { body: new...
With the latest Deno. And the [above suggestion](https://github.com/vadimdemedes/ink/issues/250#issuecomment-1226723194). This seems to work without the `--unstable` flag. ```cli $ deno run --allow-all ink-test.jsx ``` ```jsx // required because ink does some...
@mikebuilds I made a worker that has DKIM and SPF support here. https://github.com/pethin/email-svc
I just hit this issue today, as I have homebrew installed in ~/.homebrew. This patch seems like it'll fix the issue with custom homebrew prefixes. > One reason we did...