Johann Wolfgang von Goethe: Die Wahlverwandtschaften

meh. Die Prämisse war schon zu Goethe’s Zeit nicht belegbar, und obwohl der Author dies wusste, kritzelte er ein Werk, welches viel Raum zur Interpretation lässt. Die Geschichten innerhalb des Handlungsstranges sind (wohl absichtlich) zu kurz gefasst, um dem Publikum Denkanstösse zu geben… liest sich alles ein bisschen als fishing-for-fame-and-controversy.

Spannend am Werk ist eigentlich nur die sich wandelnde Interpretation ĂĽber die Jahrzehnte, und deren Versuche, es immer wieder im Kontext des Zeitgeistes als Meisterwerk zu feiern.

Oder ich versteh’s einfach nicht 🙂

Published
Categorized as books, ouch

Maurice Leblanc: Arsène Lupin – Belle Époque Verlag

Leider hatte ich mir noch zwei weitere Exemplare Arsène Lupin bestellt: Die Insel der dreiĂźig Särge und Der blaue Diamant. – Beide sind genau so schlecht ĂĽbersetzt wie https://www.musings.ch/2021/05/10/maurice-leblanc-die-dame-mit-den-gruenen-augen/.

Beispiel gefällig?

duh…

Belle Époque Verlag ist möglicherweise der schlechteste Verlag der Welt.

Ayn Rand: The Fountainhead

Probably the best book I’ve read so far.

The creator lives for his work. He needs no other men. His primary goal is within himself.

Howard Roark

This had been recommended to me several times, and while I tried to start a couple of times, I never made it past the first few pages. Then I picked it up (when I found it somewhere buried on my kindle) and without any knowledge of the author, the book,.. and no research done beforehand, read it. It’s amazing.

withings-sync on debian buster

Since Withings migrates to OAuth 2.0 by 2021-09, I felt it was time to update the flaky sync solution I had running so far.

Now running https://github.com/jaroslawhartman/withings-sync with debian’s virtualenv:

apt install virtualenv python3-virtualenv
virtualenv -p python3 withings-sync
source withings-sync/bin/activate
pip install withings-sync
export WITHINGS_USER=you
withings-sync

(get token, then set up a regular job to sync)

$ cat sync.sh
#!/bin/bash
source withings-sync/bin/activate
export WITHINGS_USER=you
export GARMIN_USERNAME=you-but-on-garmin
export GARMIN_PASSWORD=your-garmin-password
withings-sync
$ chmod 700 sync.sh
crontab -e
12 4 * * * cronic /home/you/sync.sh