Typisch.

WHAT THE ACTUAL F?
concurrent.future's ProcessPoolExecutor does not work from a venv,
at least on Windows. It fails with a lot of “invalid handle” and
“access denied” errors.
The reason is the usual one that explains everything that goes wrong
on Windows if multiple processes are involved: No fork(). Instead,
ProcessPoolExecutor creates a pipe to feed commands to a spawned
subprocess. To do that, it lets the subprocess inherit the pipe and
uses the command line to tell it about the handle.
Fatally, the venv python.exe in turn invokes the “parent” one, with
the same command line, and waits for it to exit to forward the exit
code, but without also letting it inherit the handle again (and how
should it know to do that?).
So the “base” Python, two layers down, gets a handle value on the command line, tries opening it, and finds nothing, or a handle to something unexpected, and dies.
Workaround? No idea. Get the main installation from the Registry,
overwrite sys.executable or whatever concurrent uses to find the
interpreter to run, then fake up a PYTHONPATH and cross ten packets
of fish fingers. Oh, and do not expect to use the interpreter you do
that in for much else afterwards, I suppose.
Update: Fixed!
I just dropped my tablet pen onto the keyboard, and somehow that resulted in an absolutely huge mouse pointer. Huh?
Resetting is simple; just switch to another pointer scheme and back.
What strange key combination did the pen hit to cause this? The list of accessibility shortcuts does not have an entry that fits.
If anyone out there knows the story behind
OaEnablePerUserTLibRegistration(),
would you mind sharing?
The Grauniad at work?

“He will now head to the South Sandwich trench […]. That trench, 8,428 metres below the surface, is unnamed […].”
It’s unnamed? I thought (and at least Wikipedia agrees) it was called the South Sandwich trench? And why does your own map say 8183 m and the article 8428 m?
Yes, well, YouTube, that’s not how classical music works. You can have the same piece played by different orchestras.

But you know that, of course, and do not care the first little bit.
I do, however, recommend everyone watch this concert.
Das Risiko dabei, Nachrichten von Praktikanten schreiben zu lassen: Manchmal kommt solcher Stuß dabei heraus.
https://www.tagesschau.de/ausland/farout-103.html
Highlights:
»Nie zuvor wurde ein Objekt gesehen, das so weit von der Erde entfernt liegt.«
OK, wenn man es ganz genau nimmt, stimmt das. In exakt derselben Entfernung wie der von »Farout« gibt es vermutlich noch kein bekanntes Objekt, erst recht nicht, weil sich die Entferung ja ständig verändert und deshalb nur ein Punkt immer genausoweit entfernt ist.
So ist der Satz aber natürlich nicht gemeint, und deshalb darf der Hinweis nicht fehlen, daß selbst in der »Artist’s Impression«, die den Artikel bebildert (und in der die Sonne viel zu groß dargestellt ist), schon mehrere Sterne im Hintergrund zu sehen sind. Die sind natürlich um einiges weiter weg.
»Zur Messung empfehlen die Wissenschaftler die Astronomische Einheit (AU).«
»Empfehlen« tun die garantiert gar nix, schon gar keine Einheiten. Und erst recht nicht die Einheit, die zur Angabe von Entfernungen innerhalb des Sonnensystems (und oberhalb von Mondumlaufbahnen) völlig üblich ist und keiner weiteren »Empfehlung« bedarf.
»Ein AU entspricht etwa 150 Millionen Kilometern […]«
Ich nehme an, das ist eine Tippfehler.
reg add HKCU\Software\Wacom\Analytics /v Analytics_On /t REG_SZ /d FALSE /f
Interessanterweise interessiert sich das Wacom Desktop Center beim Start sogar ausdrücklich dafür, ob procmon läuft. Sachen gibt’s …
Note to self:
When you cannot make installworld from NFS and have to use rsync
to get the src and obj trees to the target, do not try to --exclude '*.o'. installworld really likes crt1.o and will be exceedingly
unhappy if it is not there.
D’o!