Zicklag

Results 652 comments of Zicklag

There is one issue with this, that seems like a bug in Iroh, but the code is as it should work, so I think we can merge it anyway: https://discord.com/channels/1161119546170687619/1282159867423100938/1282159900247720008...

@alexcrichton, you said in your other [comment](https://github.com/rust-lang/rust/issues/34909#issuecomment-236040379): > note that the crate type "cdylib" is most appropriate for creating a Rust DSO. If you're trying to use a dylib linking...

Another thought is that you might be able to implement this without modifying `rustc` or Cargo by creating a macro that would create the extern functions automatically by reading a...

I don't think you can have it build *every* crate as a dylib. I think that will just dynamically link the standard library with `-C prefer-dynamic`. Also, you probably already...

Ah, yes, those are pretty much the reasons that *I* tried to figure out how to use dylib. I create a [tutorial](https://zicklag.github.io/rust-tutorials/rust-plugins.html) based on my attempts to get that working...

Just to do the smart redirect we would have to have some proxy service running highly available in front of Weird anyway, so what I'm thinking is that we can...

I feel like we might need another channel to listen to, maybe, that gets handles pushed to it when they _finish_ loading. So one channel for asset source changes, which...

What you might be able to do is take your automerge storage adapter, `NodeFSStorageAdapter`, in this case, and wrap it with a namespaced storage adapter, so that you know automerge's...

This is untested so far, thus the draft state. I'll try to add a test, and also probably test in my project.

Created a test case that is failing currently but passes after a fix in Willow: https://github.com/earthstar-project/willow-js/pull/38.