Nico Burns

Results 211 comments of Nico Burns

https://github.com/nc4rrillo/indigo/issues/44 Linking this issue with the macOS issue on the `indigo` project (another attempt at a webrender based cross-platform GUI), as I'm seeing the same rendering issues on both (mostly...

@tirumaraiselvan > Yes, libpq is the only dependency for linux Do you know what the dependencies for macOS are? Even if there isn't a static binary available, a dynamically linked...

I think a `daff`-style diff is the way to go for this feature. Daff actually has a spec: http://paulfitz.github.io/daff-doc/spec.html, and the codebase (written in Haxe) is MIT licensed.

Is it possible to get raw access to a websocket with this PR (and do your own auth and protocol/channel management)? The channels API sounds great, but I imagine a...

I would like to raise the issue of caching here. I imagine a lot of `measure_func`s will want to cache not just the overall result of the computation, but intermediate...

A few notes from my work on CSS grid that relates to `MeasureFunc`: - For Grid, we will want to be able to pass a "sizing constraint" (`MinContent` or `MaxContent`)...

> The deep hierarchy benchmark needs almost 3 seconds while the flat benchmark finishes in < 5 ms on my system. > This difference seems insane to me, is there...

@alice-i-cecile @Weibye I might be being stupid, but doesn't this change (replacing Dimension::Undefined with Option) effectively undo the earlier change of making `Dimension::Auto` the default dimension? If this change is...

Regarding leaf nodes, would it make sense for them to be "just another layout type"? So you end up with: ```rust enum Display { Flexbox, CSSGrid, Leaf, // More layout...

@alice-i-cecile Good to know! I can break this up into smaller PRs if that would be helpful? And maybe add feature flags for flexbox and grid (flexbox defaulting to on,...