Hirdy Well-known member Jan 26, 2017 #12 G'day Denny,
Although I don't personally have arthritis, I can empathise fully with you. My wife has had it in her hands since she was a teenager.
aalii | |
aarti | |
abaca | |
abaci | |
aback | |
abaft | |
abamp | |
abase | |
abash | |
abate |
aalii | |
abaca | |
abaci | |
aback | |
abaft | |
abase | |
abash | |
abate | |
abbey | |
abbot |
Now that I have a phone running GrapheneOS (GOS), here are some of the things that need doing.
import phone book
install/replace missing apps
jitsi (web app works)
#!/bin/bash | |
# A temporary script for a temporary problem. | |
# I have a bunch of github repositories that no longer work | |
# for git push because the original URL uses the deprecated | |
# username/password combo. This script repairs the remote | |
# origin so it uses ssh. | |
# B9 August 2021 |
#!/bin/bash -e | |
# Bogus disk speed tester by b9 2016-2021 | |
# Well, not exactly bogus, but overly simplistic. | |
TMPDIR=/tmp # where to write the file | |
COUNT=64 # number of blocks | |
BS=1 # blocksize (in *MEGA*bytes) | |
total=$((COUNT*BS)) | |
[ "$1" ] && TMPDIR="$1" # Usage: bogodisk [dir [count]] |
#!/usr/bin/python3 | |
# globals | |
name={} | |
hierarchy={} | |
vernacular={} | |
synonyms={} | |
def loaddb(): | |
"Load up databases into dictionaries: name, hierarchy, vernacular" |