Paul Taylor
Paul Taylor
I dumped the error inside the `require-search` module, it looks like `@electron-forge/maker-squirrel` is [unconditionally importing `electron-winstaller`](https://github.com/electron-userland/electron-forge/blob/8d4e903178fc71d31a746533a9c814358ef01db6/packages/maker/squirrel/src/MakerSquirrel.ts#L4). I guess this isn't installed because I'm in Linux? 1. Since I don't need...
@zichen8552 @Zeng1998 @im-ramon the fix is to add `electron-installer-debian` and `electron-installer-redhat` to your devDependencies, like I posted above.
@jorisvandenbossche cuSpatial is undergoing a massive overhaul at the moment, so the behavior described by the comment you referenced may change soon :-). But yes we've taken the Struct of...
@kylebarron We're using Arrow's `DenseUnion` to represent multiple geometry types in the same column so we can provide a similar high-level API (in terms of functionality) to `geopandas.GeoSeries`. Each geometric...
> Looking at polars again as an example, it expects that each column is strongly typed, and a union column might violate many assumptions baked in to the library, A...
> are you proposing that every usage of geoarrow be wrapped in a dense union? No, definitely not. The `DenseUnion` is only for representing columns with multiple geometry dtypes interleaved...
ReplaySignal is orthogonal to conditional listeners, but since I've advanced my branch, I support it on Replay. Conditional listeners are a nice idea. Both commits make it easier to use...
I see the potential to roll the addConditionally() functionality into the add() method (more correctly, into SignalBinding), but it feels like ambiguous API. It most likely wouldn't break backwards compatibility....
Here's a small example of ReplaySignal in action: https://gist.github.com/1107886
@lmeyerov we don't have deserialization/unpickling of the Python IPC data structures yet, but with a bit of effort it can be done with CUDA IPC primitives. The `modules/demo/ipc` folder has...