Erstellen des Verzeichnisses .ssh
Berechtigungen setzen: chmod 700 .ssh
Datei authorized_keys
: Die Datei enthält die PUBLIC Keys der Schlüssel, die sich anmelden dürfen.
import requests | |
import json | |
state = "BY" | |
year = "2024" | |
holidayUrl = f"https://feiertage-api.de/api/?jahr={year}&nur_land={state}" | |
headers = {"Content-type": "application/json"} | |
session = requests.Session() |
# allow reload of this file with PRE r | |
bind r source-file ~/.tmux.conf \; display "Reloaded." | |
# switch prefix to control-a, unmap b, allow double-a to go through | |
#set -g prefix C-a | |
#unbind C-b | |
#bind C-a send-prefix | |
# -r repeat time (Default 500 millis) | |
set -g repeat-time 2000 |