This guide is based on the official Archlinux [Installation Guide][1], [Beginners' Guide][2] and my personal experience.
| HDD | fs | size | mountpoint |
|---|---|---|---|
| /dev/sda1 | LUKS | MAX | - |
| /dev/sda1 | LVM | MAX | /dev/mapper/lvm |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
| #!/usr/bin/env python | |
| import sys | |
| import imaplib | |
| EMAIL_ACCOUNT_SUFFIX = "@mydomain.com" | |
| EMAIL_HOST = "mail.myhost.com" | |
| EMAIL_ACCOUNTS = { | |
| "name": "pass", |
I hereby claim:
To claim this, I am signing this object:
| # Basic config | |
| export EDITOR=vim | |
| # Msys2 config | |
| export MSYS=winsymlinks:nativestrict | |
| make_winpath() | |
| { | |
| P=$1 | |
| if [ "$IN_CYGWIN" = "true" ]; then |
| #!/usr/bin/env bash | |
| set -e | |
| FOLDER="$1" | |
| OUTPUT_FILE="${OUTPUT_FILE:-blocks_synced.csv}" | |
| check() { | |
| if [[ -z "${FOLDER}" ]]; then | |
| echo "ERROR: Specify aeternity node folder as first parameter"; | |
| exit 1 |
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| msg() { | |
| echo >&2 -e "${1-}" | |
| } | |
| usage() { | |
| msg |
| #!/usr/bin/env bash | |
| # exit on errors, undefined variables, ensure errors in pipes are not hidden | |
| set -Eeuo pipefail | |
| do_curl() { | |
| local endpoint="${1}" | |
| local start end timing | |
| start="$(date +%s%3N)" |
| #!/bin/bash | |
| # Make API request and extract the IP addresses from the "hoprd_api_endpoint" field | |
| ips=( $(curl --silent --request GET --url https://staging.discovery.rpch.tech/api/v1/node?status=READY | jq -r '.[].hoprd_api_endpoint | sub("http://"; "") | sub(":[0-9]*$"; "")') ) | |
| # Path to SSH private key for authentication | |
| private_key_path=".ssh/id_rsa" | |
| # Loop through the remote hosts and run the script on each one | |
| for ip in "${ips[@]}" |
| --- hoprd-http-api-v3-schema-2.0.8.json.new 2024-02-13 11:28:06.214324978 +0100 | |
| +++ hoprd-http-api-v3-schema-2.1.0.json.new 2024-02-13 11:43:56.434889079 +0100 | |
| @@ -1,3369 +1,3055 @@ | |
| { | |
| "openapi": "3.0.3", | |
| - "servers": [ | |
| - { | |
| - "url": "/api/v3" | |
| - } | |
| - ], |