Tom Robinson

Results 84 comments of Tom Robinson

The following workaround works in my case: ```javascript for (const attribute of ["width", "height"]) { for (const rect of element.querySelectorAll(`svg [${attribute}]`)) { rect.style[attribute] = ""; } } ```

:+1: and publish to npm

+1, this is quite annoying.

This would be awesome, if only to get [TempleOS](https://en.wikipedia.org/wiki/TempleOS) running.

IIRC it was an intention decision to require you hit "enter" to commit the filter. It also happens with a single param, as well as on dashboards. We can certainly...

> Also, if I arrive at a scalar after doing a min-of or max-of aggregation, I feel like I'd expect the action to be "view this order" rather than to...

A horrible workaround I found but probably wouldn't recommend is to do a deep comparison of the original and decoded objects, since excess properties are stripped when decoding: ```typescript import...

In cFBP is back-pressure considered "advisory" (i.e. to prevent processes from being overwhelmed with IPs), or is strict/immediate back-pressure feedback necessary for correctness? I ask because my implementation using Node...

Also, I don't consider requiring `yield` in front of sends to be a big deal. In fact it's kind of a nice symmetry. Though it would be good if we...

@kenhkan If that's the case then "pull" type streams are the only way to connect ports, right? How are processes distributed across OS processes or physical machines/networks? Does a "receive"...