Alan Hoffmeister
Alan Hoffmeister
Any updates? :-)
I would gladly help you if I didn't lack ASM skills :-( Even if you don't have an ARM device you can still cross compile and execute/test using qemu: ```...
@hrsakai I've rebased my PR and it's ready for review 👍
@hrsakai @sijie sorry for the delay here, let's start by correcting some of my misconceptions: JS do support ints higher than 32 bits when representing them as a [`Number`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER), but...
What I'm doing for now is this "hack": ```javascript const deepstream = require("@deepstream/client"); const client = deepstream("ws://localhost:6020"); const stateMatchGroups = [ ["MERGING", "READY"], // When using `record.getRecord` before being logged...
Since most of the frameworks/clients out there are attached to specific network libraries, I would recommend to create ones that relay on `Write + Read` streams. It would be useful...
Yup, Rust already have all pieces that we need. Shouldn't be too complicate to join `native-tls`, a http parser and the `http` crate into a library that operates over a...
@terion-name I'm not sure if I understood the problem. The example you provided should work just fine if you implement a resolver for that query that returns a collection. So...
I've found a temporary workaround: while developing, you'll want your worker to load `tsx/cli` instead, then pass the actual script you wanna run as an `argv`, like so: ```typescript const...