Divy Srivastava

Results 191 comments of Divy Srivastava

Uno reverse by https://github.com/denoland/deno/pull/17899 ![image](https://user-images.githubusercontent.com/34997667/220935413-43112ef0-4915-4d9a-9edd-edf479d45f5c.png) opAsync will stay.

https://github.com/denoland/autobahn I run this manually when large changes are made to ext/websockets. PRs welcome to integrate this into CI

Depends on https://github.com/denoland/deno/pull/17604

Good point. `Date` header is missing from uWebSocket. uWebSocket: ``` > GET / HTTP/1.1 > Host: 127.0.0.1:3000 > User-Agent: curl/7.84.0 > Accept: */* > * Mark bundle as not supporting...

On Windows, dynamic libraries generally don't have `lib` prefix. So it's `add.dll`. Also, This is useful but its not enough for most libraries that need to release libraries and cache...

/bench http[realistic,minimal] The previous bench run probably crashed.

Seems to be an issue with the bench bot. Merging.

Looked into `op_require_read_closest_package_json` and the actual error not being propogated is: ``` Os { "Filename is too long" } ``` Filepath being passed to `op_require_read_closest_package_json`: ``` /Users/divy/gh/deno/data:text/javascript,(async function() {const {...

I am not familiar with Openwrt but linux arm64 (gnu and musl) Deno builds are currently not supported. See https://github.com/denoland/deno/issues/3711 https://github.com/denoland/deno/issues/1846

@CosminPerRam I opened https://github.com/denoland/deno/pull/21777 with a different implementation that fixes bugs in this approach. The major one being that the promises returned by `this.#listener` are not ref/unrefable because they wrap...