This documents the changes made while installing OpenSUSE LEAP 15.3 on the Framework Laptop (1st edition).
During the guided install, there are some minor changes that will make things smoother later.
#!/usr/bin/env bash | |
# | |
#set -x | |
####################################### | |
declare -A morse | |
morse[0]='- - - - -' | |
morse[1]='. - - - -' | |
morse[2]='. . - - -' | |
morse[3]='. . . - -' | |
morse[4]='. . . . -' |
Create a template service file at /etc/systemd/system/[email protected]
. The template parameter will correspond to the name
of target host:
[Unit]
Description=Setup a secure tunnel to %I
After=network.target
#!/usr/bin/env python | |
# Haversine formula example in Python | |
# Author: Wayne Dyck | |
import math | |
def distance(origin, destination): | |
lat1, lon1 = origin | |
lat2, lon2 = destination |