Note well: no guarantee for the following hardware contents.
You need a working USB keyboard and a USB memory together, presumably with a USB hub.
# Put this file at ~/.config/ghostty/config | |
theme = jj1bdx-night-owl | |
font-size = 15 | |
font-family = CommitMono | |
font-family = Noto Sans Mono CJK JP | |
# disable ligature | |
# (comment out the features to enable ligature) | |
font-feature = -calt |
#!/usr/bin/env python3 | |
from skyfield import api, almanac | |
load = api.Loader('~/.skyfield-data') | |
ts = load.timescale() | |
planets = load('de421.bsp') | |
pm95tp = api.Topos(latitude = '35.645 N', | |
longitude = '139.623 E', | |
elevation_m = 45.0) |
0000 0 80 0.0 1500. 0 JJ1BDX PM95 37 FST4 |
#!/opt/homebrew/bin/bash | |
# NOTE WELL: this script includes CONFIDENTIAL API KEY! | |
API='Your API Key' | |
# API password | |
PASS='App password' | |
CALL='Your callsign' | |
EMAIL='Your account email' | |
FILE=$1 | |
# | |
# You can add "-v -i" option to curl for debugging |
Source: https://www.technomancer.com/archives/789
# Do this as a root
# Install Ubuntu Server, after stopping unattended upgrades
systemctl disable unattended-upgrades
systemctl set-default multi-user.target
apt update && apt -y upgrade