Torbjørn Sørby

Results 8 comments of Torbjørn Sørby

Hi, I would very much welcome a merge of this PR!

We also experience this issue with ├── [email protected] └── [email protected] It seems to fail any time the sentence ends with a capital letter. Simple reproducer: ```javascript import { split, Syntax...

In our project we used to use `sphinx-tabs` which already has this feature. Maybe `sphinx-design` could adopt that method? https://github.com/executablebooks/sphinx-tabs/blob/master/sphinx_tabs/static/tabs.js. It has the advantage of not cluttering the URL.

@nedrebo, We do not install Eigen, PCL nor OpenCV in our CI. That's why we don't run build them, and why I believe they're not linted. When we run clang-tidy...

I found -U :) So, we could just add: ```bash ... cmake --build . || exit $? cmake -ULINT_ONLY "$SOURCE_DIR" || exit $? ```

It sort of worked, although you're correct that it will throw an error on missing header. Were able to fix most other issues though. See https://github.com/zivid/cpp-extra-samples/pull/92. Maybe this PR will...

For the capture service we add a short_wait_duration.sleep()afterwards. In ```cpp     zivid_camera::SettingsAcquisitionConfig acquisition_0_cfg;     ASSERT_TRUE(acquisition_0_client.getDefaultConfiguration(acquisition_0_cfg, dr_get_max_wait_duration));     acquisition_0_cfg.enabled = true;     ASSERT_TRUE(acquisition_0_client.setConfiguration(acquisition_0_cfg)); ``` Could it be that `dr_get_max_wait_duration` is a little too short? Or...

Hi @waiyc, As far as I understood the major difference between action and service is that actions are asynchronous, whereas services are synchronous. I can understand why it would be...