Christopher Joel

Results 221 comments of Christopher Joel

Sounds good to me, contributions welcome here!

Anecdotally, we use `thiserror` in Noosphere (so soft preference for that crate)

Yah, I've thought it would be nice to have a "resolve" command in orb so that you can do one-time, on-demand lookup of e.g., a slashlink or a peer address....

After in-person discussion, it seems like we ought to address this with the following: The gateway sync routine is currently designed as a Git-like fetch -> rebase -> push flow....

Can you provide a rationale for the change? Maybe a test?

Thanks, I missed that the bug was in the title at first :+1:

Interesting idea. Unlike git, we don't have a "staged" phase that changes advance to before being committed (although I've wondered if we should try to implement one). Instead, `orb sphere...

@bgins thanks for opening this ticket. Can we perhaps frame the issue in terms of the desired debugging modality? I'm open to the idea that a canonical JSON collection is...

Maybe instead, it should be... ```rs pub trait Authorization { async fn resolve_ucan(&self, &S) -> Result; } // Or... pub enum Authorization { Ucan(Ucan), Cid(Cid), Jwt(String), UcanIpld(UcanIpld) } ``` And...

Related work from @jsantell : https://github.com/subconsciousnetwork/noosphere/pull/549