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]='. . . . -' |
| #!/usr/bin/env python | |
| # Haversine formula example in Python | |
| # Author: Wayne Dyck | |
| import math | |
| def distance(origin, destination): | |
| lat1, lon1 = origin | |
| lat2, lon2 = destination |