Ryan Dahl
Ryan Dahl
Here's an example of how to get the client IP ```js Deno.serve((req: Request, conn) => { let ip = conn.remoteAddr.hostname; return new Response("Hello World " + ip) }); ```
Since https://github.com/swc-project/swc/pull/886 has landed, we should be able to do type stripping in Rust now.
I'm in agreement. It's very painful to let web streams (ReadableStream/WritableStream) win over go streams (Reader/Writer). Go streams is plainly more general and vastly simpler. But we must have web...
@33KK This is a big change and we would need to consider it carefully - that said, the build system could definitely be improved. We have been attempting to avoid...
Thanks for the detailed explanation @33KK. While I can appreciate the lightweight nature of your proposed solution, it does bring in additional points of potential failure and maintenance. Even if...
https://discord.com/channels/684898665143206084/684898665151594506/970415140291879033
Hi - Sure, I'm all for eliminating the makefile. I don't want dependence on brew or apt-get - it's outside the scope of this project. People who use this project...
I guess all the time is when the libv8.a is linked in. Maybe dynamic linking (for development builds) would speed things up.
@goodfeli I haven't trained it actually - it's very likely a bug somewhere. I'm just using the pre-trained weights right now - but interested in fixing this.
CC our resident GYP experts @TooTallNate @bnoordhuis