Warum wird bei Bibi Blocksberg und Benjamin Blümchen die Schule und Lehrer in der Regel so schlecht dargestellt? Das ist der richtige Weg den Kindern Freude auf die Schule zu machen.
Mal abgesehen davon, dass sich „Digitales & KI“ anhört wie „los, los, die Newsletter brauchen immer zwei Wörter. Was passt zu Digitales?“ „Hm, KI. Da spricht doch gerade jeder drüber.“ Was kommt als nächstes? „Mobilität & Elektroautos“?
Der Tagesspiegel hat jetzt anscheinend Newsletter zum Thema „Klima & Energie“ und „Digitales & KI“ (hä?) Die AGB sind die einer Papierzeitung. Kündigsfrist: „6 Wochen zum Ende des Bezugsjahres“ Mal schauen was sie auf meine Mail zum Thema antworten
A Christmas movie evening I would enjoy:
- Home Alone
- Life of Brian
- Die Hard
“A family productivity system is just what you need to get organized.”
Who comes up with such sentences? Source: https://blog.doist.com/using-todoist-with-your-family-e94862dce94
Shin Lim released the morphing card trick he used in the AGT finale. It is $159 and you get apparently 1 single card. 😮 I hope it doesn’t break fast. www.shinlimmagic.com/shop/kada…
All-Access rockrolls me. I click on the „Wake up before you go go“-morning-playlist and the first song is this
Plesk: when the group psacln can write into your document root, it will put in there all “missing” template files when you change any settings of the domain. Oh and Plesk isn’t considering this as a bug because that group shouldn’t be able to write in there anyways m)
Wordpress 5.0, block editor and nginx
I updated yesterday to Wordpress 5.0 and wanted to test the new editor. Unfortunately it didn't work like the beta (Gutenberg)-version before. After opening a github-issue and more googling today, I found the solution. The culprit was nginx and that it doesn't work with the REST-API from Wordpress with the configuration as it was documented in the past. Thus I had to change it and Stack Overflow saved the day again.
Here is what I did:
Change:
location / {
try_files $uri $uri/ /index.php;
}
to
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
and add
location ~ ^/wp-json/ {
# if permalinks not enabled
rewrite ^/wp-json/(.*?)$ /?rest_route=/$1 last;
}
So now I have only to find a way that h-cards work with twenty nineteen…
Today’s horror sighting: PHP 5.2.17 in production use on public websites. Its EOL-date was ca. 8 years ago…