Paul Loyd

Results 88 comments of Paul Loyd

Let's merge =) @xacrimon

The same is true in case of floating windows: ![2019-05-10_20-40-12](https://user-images.githubusercontent.com/952180/57545736-f328ba80-7363-11e9-8854-eeb67b02dddd.png) Workaround: replace `Normal` with `GruvboxFg1`: ![2019-05-10_20-40-26](https://user-images.githubusercontent.com/952180/57545821-20756880-7364-11e9-8658-97a570e43f3c.png) Sadly, resetting (`hi! link Operator GruvboxFg1`) in `.vimrc` doesn't fix all cases, need to...

`remove_range` is a very desirable operation, especially with an implementation similar to https://github.com/facebook/rocksdb/wiki/DeleteRange: ``` Under the hood, this creates a range tombstone represented as a single kv, which significantly speeds...

It would be cool to have the instance `Sink for Api` that implements backpressure on its own.

Any thoughts? Maybe I missed something. Extra bit would be most welcome =)

Also, `parking_lot` has been updated and now `futures-intrusive` is a blocker for us.

I've fixed [`fixnum`](https://github.com/loyd/fixnum) to support `42.42` parsing (by implementing `visit_map`). `fixnum` doesn't use `serde/derive`. So, now it's fixed by enabling [`serde/derive`](https://github.com/loyd/fixnum/blob/ad0ba674caf30862d6183b9e4ae2d01c31cac159/Cargo.toml#L42). But it also requires [`serde/derive` in dev-dependencies](https://github.com/loyd/fixnum/blob/ad0ba674caf30862d6183b9e4ae2d01c31cac159/Cargo.toml#L62), but it's...

Btw, [`next_key()`](https://github.com/loyd/fixnum/blob/ad0ba674caf30862d6183b9e4ae2d01c31cac159/src/serde.rs#L128) cannot parse into `&str` (and `next_value()` too until v0.24 version). But it's a subject of another issue.

> The problem with map is that deserialization performed using deserialize_any. It have many drawbacks for non-self-describing deserializers and deserializers with weak type systems. Yep, a previous version uses `deserialize_str`...