John Hughes
John Hughes
@ritchie46 is there any news on supporting FixedSizeList in Polars? What would be involved in adding support?
@AutumnMeowMeow any progress on this? I'm forever missing pane-resizing with the mouse #1262 and would need this to impl I believe.
An easy-to-use method to build a dependency from a cmake-based project would be super awesome. Something that used the new CMake server protocol to explore the project and provide targets...
I spent a few hours looking at this more thoroughly today. Multipart actions, e.g. ``` env.Builder(action=[ SCons.Action.Action(change_to_dir()), SCons.Action.Action("$COMMAND"), SCons.Action.Action(return_to_dir()) ]) ``` won't work with a parallel build because any action...
An simpler alternative which works is to modify `IncrementalSubProcess.Popen2()`: ``` ... process = subprocess.Popen( " ".join(args_list), **dict( kwargs, close_fds=close_fds, shell=True ) ) ... ```
I think typically the warnings against using `shell=True` are about running untrusted code. Since this is not a webservice, I think this is not a problem. I've also found another...
Hi @m-decoster , thanks for the report. Can you please post the output of the command `uname -a`?
- [x] `log_pinhole()` https://github.com/rerun-io/rerun/pull/1274 - [x] `log_mesh()` https://github.com/rerun-io/rerun/pull/1286 - [x] [log_image()](http://127.0.0.1:8000/package/rerun/__init__/#rerun.log_image) - [x] `log_scalar()` https://github.com/rerun-io/rerun/pull/1290 - [x] [log_arrow()](http://127.0.0.1:8000/package/rerun/__init__/#rerun.log_arrow) - [x] [log_view_coordinates()](http://127.0.0.1:8000/package/rerun/__init__/#rerun.log_view_coordinates) - [x] [log_obb()](http://127.0.0.1:8000/package/rerun/__init__/#rerun.log_obb) - [x] [script_add_args()](http://127.0.0.1:8000/package/rerun/__init__/#rerun.script_add_args) - [x] [log_rect()](http://127.0.0.1:8000/package/rerun/__init__/#rerun.log_rect)...
Added a test step and linting fixes.