Results 71 comments of Denis Ryabov

I think COUNT opcode (for \count) should work much faster than IS_IDENTICAL/IS_NOT_IDENTICAL opcodes to compare two arrays.

1. `-+` is possible, but `+-` requires temporary switching to text mode (like it is done for changing `\cdot` to `\times` on break). The latter is quote complicated and may...

Do you apply CSSO before CSS preprocessor?

Seems I've found where the issue comes from. Usually the `font` property (in your example it is `font: normal 16px/1`) overrides all previous `font-*` properties. But in you example the...

Look at this line in your CSS code: ```css font: normal 16px/1; ``` It's malformed, because it doesn't contain the font family, though CSS spec requires it.

We use `csso` to optimize critical css on several websites, and found there are many Wordpress plugins that load its own copy of FontAwesome, and this kind of optimization would...

А если уголок снаружи, но не доводить до лучей? ![sq_corners](https://user-images.githubusercontent.com/378044/57968288-c2064680-7970-11e9-835e-343108158c8e.png)

@jemmybutton А почему проверка не через скалярное произведение? Длинно через компоненты записывать или просто так быстрее?

+1 My son asked me how to flip the alien image (to move it in the opposite direction), and the only solution I found (in addition to pre-creation of flipping...

Exactly. Currently he uses `direction` variable to move the alien with `alien.left += 2 * direction`, so that `alien.scale_x = direction` seems to be an ideal and clear solution.