Divy Srivastava

Results 191 comments of Divy Srivastava

See https://github.com/denoland/rusty_v8/issues/469 for why rusty_v8 doesn't bind `Isolate::GetCurrent`. Closing.

Closing because stale. Feel free to open if you're still working on it.

:+1: for this. It seems to be an easy task looking at how `asciimoo/drawille` does it - https://github.com/asciimoo/drawille/blob/166fe0ceed4c13ab0c25505fd9dd72e9e7b56d66/drawille.py#L168-L177

`deno_gl` - https://github.com/DjDeveloperr/deno_gl can run three.js with the WebGL backend built on top of OpenGL using Deno FFI.

Yes this should be possible. Working on it 👍

This is a bug in [node-minecraft-protocol](https://github.com/PrismarineJS/node-minecraft-protocol) package. `node-minecraft-protocol` generates PEM of non-standard 65-character lines. Deno follows the [rfc7468](https://datatracker.ietf.org/doc/html/rfc7468) PEM strictly. > Generators MUST wrap the base64-encoded lines so that each...

![image](https://github.com/denoland/deno/assets/34997667/4fa6f8f3-8a42-4932-977a-84ed72ccfc33)

We have partial support for Secure curves in WebCrypto. Here is the tracking issue: https://github.com/denoland/deno/issues/16145

Hey, the time is spent by `dyld` loading every dynamic framework on macOS before app's `main()` is called. `DYLD_PRINT_STATISTICS` var can be used to measure time spent loading frameworks. Ref...

We already increase the stack size on Windows but only for `debug` builds. Maybe we should do this on `release` builds too. https://github.com/denoland/deno/blob/17271532d4dcf8dfee1c7b1ac9dbdacb0a04deeb/.cargo/config.toml#L9-L10 Actionable items: - Make a simple swc...