Jack O'Connor

Results 300 comments of Jack O'Connor

Personally I'm not sure I've ever used `Rc` or `RefCell` in non-teaching code. I'm not sure I've even _seen_ non-teaching code that uses them. (I know it's out there, just...

This enables you to `.collect()` an `ArrayString` from any iterator of chars. This is a relevant bound for e.g. the [`hex::ToHex`](https://docs.rs/hex/0.4.0/hex/trait.ToHex.html) trait.

Oh thanks for the link. One thing this highlights for me is that I misunderstood how `ArrayVec::collect` works. I had assumed it panics if it doesn't have enough capacity, but...

nob13's workaround fixed the issue for me. Sounds like this line should be included in the giter8 template? I also had to work around a recent issue with the Android...

This is interesting. Here's some more discussion of the builtin vim behavior: https://groups.google.com/forum/?fromgroups=#!topic/vim_use/iLZJm7ywh40 I notice that **ciw** has similar special casing to **cw**, and that **ci,w** lacks that special casing...

A couple more observations: I'm pretty sure that this dependency on the chunk counter only applies to seeking. So if the recipient was streaming an entire Bao encoding from the...

On the subject of the chunk counter, here are all the properties I know of so far that depend on it: - Solving the "ambiguous seeks along the right face"...

> Is it feasible to compile that slice to a Merkle Proof that can be verified on-chain I'm afraid I don't know anything about Ethereum proofs or what their requirements...

> like a classic Merkle Proof where you use a list of annotated sibling hashes in order to verify a block hashes to a Merle Root I'm afraid I still...

> I think that means that it should be pretty quick to write some kind of ProofExtractor interface that reads in obao files and spits out a list of sibling...