Aleksey Fomkin

Results 22 comments of Aleksey Fomkin

@s0kil I do not know. There is no design of light components for now. Of course first option is better.

https://reactjs.org/docs/lists-and-keys.html

Pseudo code ``` if key < old_key then node_insert_before(node, old_node) move_old_pointer_back() else key > old_key then node_remove(old_node) move_current_pointer_back() else compare_nodes() ```

```scala val a = lhs.nextNode val b = rhs.nextNode val bb = rhs.nextNode // 123 -> 0123 if a.key != b.key && a.key == bb.key then node_insert_before(a, b) rhs.back() rhs.back()...

Ok. I find out the problem. 0.12.4 is completely broken. https://github.com/http4s/blaze/blob/v0.12.4/http/src/main/scala/org/http4s/blaze/http/HttpServerStage.scala#L178 Here if content is complete after `parseContent ` stage will never come back to `gatherBody `. So if body...

Hi! In a difference with Jackson which designed to operate mutable objects, pushka designed to work with immutable case classes. Also `null` is disallowed. So we can't just ignore a...

Hi, @andemi ! Two questions: 1. You need exactly `BSONDocument`, or `ByteBuffer` with BSON will be OK too? 2. What do you mean when talking about "custom handlers for some...

What means "validate"? It's needed for be sure thats email is email and age not 999? If it is, I suppose we can do it _before_ converting to BSON. Anyway...

So what "validation" means?