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
root@jarbay51:/home/ros2_ws# ros2 launch mujoco_ros2_control_demos cart_example_effort.launch.py | |
[INFO] [launch]: All log files can be found below /root/.ros/log/2024-11-06-22-24-55-261863-jarbay51-27757 | |
[INFO] [launch]: Default logging verbosity is set to INFO | |
[INFO] [gdb-1]: process started with pid [27760] | |
[INFO] [robot_state_publisher-2]: process started with pid [27761] | |
[INFO] [ros2-3]: process started with pid [27762] | |
[robot_state_publisher-2] [INFO] [1730931895.312195276] [robot_state_publisher]: Robot initialized | |
[gdb-1] GNU gdb (Ubuntu 15.0.50.20240403-0ubuntu1) 15.0.50.20240403-git | |
[gdb-1] Copyright (C) 2024 Free Software Foundation, Inc. | |
[gdb-1] License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> |
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
ARG ROS_DISTRO=jazzy | |
ARG MUJOCO_VERSION=3.0.1 | |
ARG BRANCH=main | |
FROM ros:${ROS_DISTRO} | |
ARG ROS_DISTRO | |
ARG MUJOCO_VERSION | |
ARG BRANCH |
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
{ | |
"context": { | |
"date": "2024-06-26T17:06:43+03:00", | |
"host_name": "jarbay51", | |
"executable": "/home/cihat/ws_moveit/install/moveit_middleware_benchmark/lib/moveit_middleware_benchmark/benchmark_main", | |
"num_cpus": 8, | |
"mhz_per_cpu": 3500, | |
"cpu_scaling_enabled": true, | |
"caches": [ | |
{ |
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
import matplotlib.pyplot as plt | |
import numpy as np | |
import json | |
def read_benchmark_json(middleware_implementation): | |
benchmark_json_data = None | |
with open(f'middleware_benchmark_results_{middleware_implementation}.json') as f: | |
benchmark_json_data = json.load(f) | |
return benchmark_json_data |
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
# docker build -f moveit2_zenoh_testing.Dockerfile -t moveit2_zenoh_testing . | |
# docker run -it moveit2_zenoh_testing | |
FROM ros:iron | |
RUN apt-get update && \ | |
apt install wget -y | |
RUN mkdir ws/src -p |
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
#1 __pthread_kill_internal (signo=6, threadid=140736691684928) | |
at ./nptl/pthread_kill.c:78 | |
#2 __GI___pthread_kill (threadid=140736691684928, signo=signo@entry=6) | |
at ./nptl/pthread_kill.c:89 | |
#3 0x00007ffff7042476 in __GI_raise (sig=sig@entry=6) | |
at ../sysdeps/posix/raise.c:26 | |
#4 0x00007ffff70287f3 in __GI_abort () at ./stdlib/abort.c:79 | |
#5 0x00007ffff74a2b9e in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6 | |
#6 0x00007ffff74ae20c in ?? () from /lib/x86_64-linux-gnu/libstdc++.so.6 | |
#7 0x00007ffff74ae277 in std::terminate() () |
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 <new> | |
using namespace std; | |
class A { | |
public: | |
A(int, int); | |
void f(); |
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
# https://stackoverflow.com/a/67861019 | |
import vlc | |
import tkinter as tk | |
root = tk.Tk() | |
frame = tk.Frame(root, width=700, height=600) | |
frame.pack() |
NewerOlder