This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <launch> | |
| <node launch-prefix="docker run --rm --name listener -v$HOME:$HOME -u$UID --privileged --net=host -eROS_HOME=$ROS_HOME ros:melodic-ros-base-bionic" name="listener" pkg="roscpp_tutorials" type="listener" output="screen"/> | |
| <node launch-prefix="docker run --rm --name talker -v$HOME:$HOME -u$UID --privileged --net=host -eROS_HOME=$ROS_HOME ros:melodic-ros-base-bionic" name="talker" pkg="roscpp_tutorials" type="talker" output="screen"/> | |
| </launch> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # See https://tomlankhorst.nl/unresponsive-usb-unbind-bind-linux | |
| DEV=${1:-0000:06:00.3} | |
| echo $DEV | sudo tee /sys/bus/pci/drivers/xhci_hcd/unbind | |
| sleep 1 | |
| echo $DEV | sudo tee /sys/bus/pci/drivers/xhci_hcd/bind |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| template<typename T> | |
| struct decay_optional { | |
| using type = T; | |
| }; | |
| template<typename T> | |
| struct decay_optional<std::optional<T>> { | |
| using type = T; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma once | |
| #include <boost/uuid/uuid.hpp> | |
| #include <boost/uuid/uuid_generators.hpp> | |
| #include <boost/uuid/uuid_io.hpp> | |
| /** | |
| * This snippet implements basic string conversion support for `boost::uuids::uuid` | |
| * in libpqxx. | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <csignal> | |
| #include <thread> | |
| #include <chrono> | |
| #include <string_view> | |
| #include <fmt/core.h> | |
| #include <fmt/color.h> | |
| #include <mosquitto.h> | |
| #include <openssl/ssl.h> |
OlderNewer