This guide will take you through the steps to install and setup syncing of files between multiple computers running Zotero.
Table Of Contents:
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 |