Christopher Chedeau

Results 102 comments of Christopher Chedeau

You can provide an arbitrary C measure function to css nodes to do layout. This should give you the same power as sizeThatFits (but someone needs to actually test it).

I just want to mention that while this would be a nice to have, position: absolute with top, left, width, height solves most of the use cases if you can...

Bump, I would also really like to use this inside of a Connect pipeline. It's a shame to have to write content to a temporary file ;(

I want to highlight specific words from the code. I found out there was a **mark** API to do that but it's really painful to work with, you have to...

Fyi, you can use `xargs -n 50 -p 8` to run the command on 8 cores using 50 files at a time. ```js find src -name '*.js' | xargs -n...

@nmaxcom yeahh, if you have files with quotes or spaces, then you are going to be screwed. But if someone is able to create arbitrary named files on your file...

This was the place where the original file was taken from :(

I’d rather try to find cases where we can avoid respecting \n in objects rather than trying to add more of it.

We are now adding parenthesis around && inside of || which seems like the biggest issue people are facing in this issue. I'm closing this issue. If there are other...

Update here, we do want to add parenthesis back when they help disambiguate code for humans. I haven't had the time to actually go through all the cases and figure...