This guide will take you through the steps to install and setup syncing of files between multiple computers running Zotero.
Table Of Contents:
REM This script runs a Docker container for the Cobot Unity Connector with necessary configurations to output to the host display. | |
REM Ensure that the Docker service is running before executing this script. | |
set DOCKER_COMMAND=export MESA_D3D12_DEFAULT_ADAPTER_NAME=NVIDIA;^ | |
docker run ^ | |
--network host ^ | |
--gpus all ^ | |
--env NVIDIA_VISIBLE_DEVICES=all ^ | |
--env NVIDIA_DRIVER_CAPABILITIES=all ^ | |
--device /dev/dxg ^ |
This guide will take you through the steps to install and setup syncing of files between multiple computers running Zotero.
Table Of Contents:
#!/usr/bin/env bash | |
sudo apt-get install barrier | |
BARRIER_SSL_PATH=~/.local/share/barrier/SSL/ | |
mkdir -p "${BARRIER_SSL_PATH}" | |
openssl req -x509 -nodes -days 365 -subj /CN=Barrier -newkey rsa:4096 -keyout ${BARRIER_SSL_PATH}/Barrier.pem -out ${BARRIER_SSL_PATH}/Barrier.pem |
""" Tool to add missing dot at the en of a docstring. """ | |
import logging | |
import subprocess | |
import argparse | |
# parse arguments | |
parser = argparse.ArgumentParser(description='Add missing dot at the end of a docstring.') | |
parser.add_argument('path', type=str, | |
help='path to the folder containing the files to be checked') | |
args = parser.parse_args() |
import argparse | |
import os | |
import subprocess | |
from xml.etree import ElementTree | |
def get_robot_names() -> list: | |
""" Get the names of the robots in the config folder """ | |
# Check names of folders inside /config |