- Install tmate on the host machine
- Request an API key
- Follow instructions on the website to add API key information to
.tmate.conf
- Be sure to use a difficult session name as it is basically a plaintext password. - Setup system service if the tmate session is to be started automatically as system starts
This file contains 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 olefile | |
from zipfile import ZipFile | |
from glob import glob | |
# How many PDF documents have we saved | |
pdf_count = 0 | |
# Loop through all the .docx files in the current folder | |
for filename in glob("*.docx"): | |
try: |
This file contains 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 | |
net_interf=enp0s5 | |
vm_ip=192.168.7.172 | |
gateway_ip=192.168.7.1 | |
sudo ip address add ${vm_ip} dev ${net_interf} | |
sudo ip route add ${gateway_ip} dev ${net_interf} | |
sudo ip route add default via ${gateway_ip} dev ${net_interf} |
Download the script, then
chmod +x ros2_bag_play_exclude.sh
./ros2_bag_play_exclude.sh <ros2_bag_file> /topic_to_exclude /more_topics_to_exclude /wild_card_match*
This file contains 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 | |
# Ubuntu 18.04 | |
# This script prepares a fresh Ubuntu installation for general ROS development | |
# Define software switches | |
utilities_enable=true | |
ros_enable=true | |
husarnet_enable=true |