Heavy vibe-coding warning, but it works for me!
Just set API_TOKEN env var to the value of cookie api_token from audioteka.com in you browser after logging in. The token is valid for ~20 minutes, after that, you need a new one.
Heavy vibe-coding warning, but it works for me!
Just set API_TOKEN env var to the value of cookie api_token from audioteka.com in you browser after logging in. The token is valid for ~20 minutes, after that, you need a new one.
push_ros_namespace is not mentioned in this docuse_sim_time hell (i.e. no support for global parameters)
| #! /usr/bin/python | |
| # Software License Agreement (BSD License) | |
| # | |
| # Copyright (c) 2010, Willow Garage, Inc. | |
| # All rights reserved. | |
| # | |
| # Redistribution and use in source and binary forms, with or without | |
| # modification, are permitted provided that the following conditions | |
| # are met: | |
| # |
| package | hits | |
|---|---|---|
| tf2-ros | 4042961 | |
| tf | 4019466 | |
| tf2-py | 3998899 | |
| image-transport | 3805803 | |
| tf2-msgs | 3794527 | |
| cv-bridge | 3782526 | |
| tf2 | 3775665 | |
| rviz | 3738507 | |
| actionlib | 3727017 |
| #!/usr/bin/env python | |
| from __future__ import print_function | |
| import argparse | |
| import os | |
| import rosbag | |
| import sys | |
| try: |
| # Run "iperf3 -s" on "Computer 1" and "python3 gblox.py 10000 IP_OF_OTHER_COMPUTER_1" on "Computer 2". | |
| # Run wireshark on Computer 2 and watch the packets arriving on port 5201. | |
| # You will see all IP packets except the first in each UDP transmission have mangled 4 bytes | |
| # near the beginning of their data sections. The test program shoud send repeated patterns of | |
| # 0123456789abcdef, so it should be quite easy to spot. The 00 at position 7 and 8 is always | |
| # there, 69 on the second blue line is also always there, while 87 seems to be randomly changing. | |
| import socket | |
| import sys |
| # Only add this if you need to run Apache on the host | |
| LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so |
| from math import ceil | |
| from typing import Tuple, List, Optional | |
| import matplotlib.pyplot as plt | |
| from matplotlib.animation import FuncAnimation, ImageMagickWriter | |
| from matplotlib.collections import Collection | |
| from matplotlib.container import Container | |
| from matplotlib.patches import Patch | |