Kostya M

Results 147 comments of Kostya M

also #75 about pain with manual edit

from_yaml -> edit -> to_yaml?

benchmark update here: https://github.com/kostya/myhtml#benchmark

added benchmark on apple m1: https://github.com/kostya/lexbor#benchmark

Ok, i see, but i think still need this method for manual decode entities, because imagine usecase: I store some of tokens, and process them later, and later i need...

Is it possible also add option for tokenizer to not process data? just to skip all this overhead, when you not need it, and going to process it manually.

btw, why whitespace nodes needed?, i see no reason, only for serialize purposes.

If i understand correct, all kind of white space strings, can be replaced with single space (which can be as another type of node, without text storage).

i am using `every` pattern, https://gist.github.com/kostya/7388768b1363e95852c5367a16b5900f#file-xx-cr-L19 i think you should create one loop for class, like this: ``` crystal every(10.seconds) do @files.each do |file| file.expire! if file.expired? end end ```