Johnny Hauser
Johnny Hauser
It seems like watchify introduced a breaking change. I'm not sure what to look for, though. https://github.com/substack/watchify/commits/v3.5.0
I don't think that's relevant to the issue. `immediate` will cause the combine function to be evaluated even if the dependencies are not ready (have a value), but the inconsistency...
Here's an example where both operators are used in the same way, but produce different initial results. ```js const x = scan ((acc, v) => acc + v) (0) (stream(345))...
Also note that `merge` would immediately reflect the value of the first merged stream that has a value, so both `scan` and `merge` use their dependencies at initialization, but `scanMerge`...
This also may be of use https://github.com/angus-c/just
I just noticed the seemily random zooming was due to my desk shaking. From time to time. If I pound my fist on the desk with the ipad on it,...
This PR ought to be merged. :/
I can't control what files come through the system, but as it is, if gerber-parser throws, the error can't be caught, so the whole server crashes over it. Errors occurring...
Does that mean we should take the `parse` `plotter.destroy(error)` approach?
Related to this discussion, one use I have for gerber-parser is to determine whether a file is a gerber in situations where we can't rely on the filename or any...