from aryan: most guides i found online weren't helpful for me, hope this helps tho :)
ssh root@<server-ip-address>
Optional but recommended:
sudo apt update && sudo apt upgrade -y
from notion.client import NotionClient | |
import datetime | |
import os | |
from slugify import slugify | |
import re | |
import requests | |
import time | |
import hashlib | |
import shutil | |
import sys |
# Filename: /etc/skel/.zshrc | |
# Purpose: config file for zsh (z shell) | |
# Authors: (c) grml-team (grml.org) | |
# Bug-Reports: see http://grml.org/bugs/ | |
# License: This file is licensed under the GPL v2 or any later version. | |
################################################################################ | |
# Nowadays, grml's zsh setup lives in only *one* zshrc file. | |
# That is the global one: /etc/zsh/zshrc (from grml-etc-core). | |
# It is best to leave *this* file untouched and do personal changes to | |
# your zsh setup via ${HOME}/.zshrc.local which is loaded at the end of |