Jacob Bandes-Storch
Jacob Bandes-Storch
This page: https://pypi.org/project/mcap/ says only: > MCAP Python Library > This library provides classes for reading and writing the MCAP file format. We should provide discoverable documentation on how to...
Currently our consuming code in the foxglove/studio repo uses hard-coded string constants like `"ros1"` and `"ros1msg"` for well-known values. If these are really well-known, they should be exported by the...
For some reason the text layout breaks after attempting to swipe/scroll up: https://github.com/jtbandes/SpacePOD/assets/14237/28d04456-3add-48ab-a473-4606c33d0820
## Description We recently had tests start failing on `galactic`: https://github.com/foxglove/schemas/actions/runs/5137329133/jobs/9245476136 ``` /usr/bin/bash -c source /opt/ros/galactic/setup.sh && colcon test-result --verbose build/foxglove_msgs/Testing/20230531-2033/Test.xml: 28 tests, 0 errors, 2 failures, 0 skipped -...
When streaming compression is used, the compressed frame does not include a size, and therefore `ZSTD_getFrameContentSize ` will return `ZSTD_CONTENTSIZE_UNKNOWN`. Thus, the `new Simple().decompress(buf)` call will fail, because `contentSizeImpl` returns...
The `.slice()` function creates a copy of the original data, then `set()` does another copy. Instead, we can create a Uint8Array that uses `old_buffer` as its underlying buffer, and pass...
The following code should raise an error, but doesn't: [Try Flow](https://flow.org/try/#0MYewdgzgLgBAhjAvDA2gRgLoG4BQOBmArmMFAJbgz4ggAUcATgwFwy1iEC2ARgKYMAfaAzJgA5gEoUGCTADeOGEvhMAdAAdCEABa0ARAA89E3AF881OnBMXipCmBjdG9Jqw49+02QvM5nDPQmQA) ```js const a = [1]; function foo(arr: (number|string)[]) { arr.push("x"); } foo(a); function bar(arr: number[]) { } bar(a); ```...
Fixes #7 @repalash Could you please test and verify that this fixes the issue for you?
> Its creating a new process each time I open quicklook. Also seems like its created after the quicklook is closed but that could be just a delay and because...