Doug A

Results 128 comments of Doug A

FYI Rust-Libp2p (networking stack behind IPFS) supports DHT: https://github.com/libp2p/rust-libp2p/tree/master/protocols/kad I've been familiar with both Hypercore (formerly known as Dat Protocol, now called Hole Punch) and IPFS (IPNS, IPLD, Libp2p) since...

@kadmil how long does the Off-chain storage need to be saved for? Forever? Or less than forever?

> work in the browser via wasm_bindgen. We did this with `rust-libp2p` and it works pretty well. I'm here because I stumbled upon [`Willow`](https://willowprotocol.org/) which is apparently partially implemented in...

How long is the timeout? I'm troubleshooting browser webrtc right now, and seeing that the first usable DataChannel after the noise handshake takes about 10 seconds to open up.

Yeah, what I'm seeing is an immediately available channel (likely the noise handshake) then 10 seconds of unavailability, then after 10 seconds the ongoing data channel is available. I think...

Does this part need to be a specific format? Or can it be any string? ```rust let msg = format!( "From: Cloudflare bot To: Toon In-Reply-To: {} Message-ID: Subject: Email...

What about an API like this: ```rust use uuid::Uuid; use worker::*; #[event(email)] async fn main(message: EmailMessage, _env: Env, _ctx: Context) -> Result { let new_message = EmailMessage::try_from( RawEmailMessage::builder() .from_name("From Name")...

Actually, on second thought, maybe `msg` should just be left a a string and if the user wants to use a `build` helper, it can exist in userland as a...

This looked promising: https://docs.rs/mail-builder/latest/mail_builder/index.html

ref https://github.com/DouglasDwyer/wasm_runtime_layer/pull/39