Meine Mutter war in der Notaufnahme, 4 mal.
“Aktivierte Hüftarthrose” heißt es.
Beim letzten Mal wurde sie auf Station gebracht, nach 2 Tagen entlassen.
Sie bekam eine Spritze mit Kortison und nochwas.
Das half den Abend über, aber in der Nacht wurde es schlimmer wieder.
Heute wieder in die Klinik, in die Orthopädie.
20€ Taxi hin, 20€ Taxi zurück.
Geld flattert nur so raus. Essen 2 Portionen 22€, Brot 4,50€.
In der Orthopädie dann der selbe Arzt, der für ihre langgezogenen Mühen verantwortlich ist.
Er kann nicht sagen ist es LWS oder Arthrose.
Darum musste sie unbedingt Ambulant hin und her geschickt werden, und die Schmerzen bestehen weiterhin.
Jetzt sagt er es wäre beides. Er hat sie nichtmal untersucht.
Der eine Arzt meinte die Spritze war wegen der Hüftarthrose, dieser heute meinte die Spritze wäre wegen LWS.
Man sieht sie ist 90 Jahre und will sie loswerden.
Es gibt keine Hilfe.
Sie soll Schmerzmittel schlucken.
Hydromorphon. Das ist eine Art Morphium.
Das ist doch krank.
Sie soll eine Kurzzeitpflege in Anspruch nehmen.
Wir haben das Geld nicht.
Woher soll das jetzt kommen?
Das Haus in Kroatien leckt, lässt Wasser durch. Das Dach muss neu gemacht werden. Mindestens 4000€ kostet das. Wenn man es nicht tut wird das Haus ruiniert.
Jetzt 2000€ für Kurzzeitpflege oder Altersheim. Oder noch mehr.
Er will sie nicht operieren, wenn sie nicht gepflegt wird.
Mein Gott, dann kommt sie halt nach Hause und eine Pflegekraft kümmert sich um sie vorübergehend. Aber 1 von 2 Problemen, Starker Schmerz in der Hüfte ist vom Tisch.
Dann kann man sich immernoch um das andere Problem kümmern.
Alles was dieser Arzt macht ist ihr Leiden zu verlängern, unnötig.
Die Frau ist vor 4 Wochen noch täglich vor 7 aus dem Haus und ist in der Geschichte herumgeturnt.
Jetzt soll sie in ein Altersheim?
Der ist doch nicht mehr ganz kunsper
Useless Software: kanidm
Kanidm claims to be an identity management solution, only there isn’t much management going on.
Everything works via cli and it doesn’t have multiple realms.
While the inital setup is relatively easy, documentation needs a lot of improvement.
They use a self-baked LDAP database, which no one can tell if it’s reliable or not.
It has NO management UI.
You can’t even configure SMTP.
How to IRL and desktop stream to Twitch, Kick and Youtube at the same time
So you’d like to expand your audience and stream to Twitch, Kick and Youtube at the same time.
In this HowTo I’ll try to explain how that’s done.
I will include IRL streaming and desktop streaming.
IRL streaming has 1 additional middleware versus desktop streaming.
Continue reading “How to IRL and desktop stream to Twitch, Kick and Youtube at the same time”
gitea log configuration for fail2ban
Gitea since 1.21 has a different logging configuration format.
TL;DR If you want to configure fail2ban to ban those failed ssh login attempts,
use this log section in app.ini
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
[log] LEVEL = Info MODE = file ROOT_PATH = /var/lib/gitea/log/ logger.default.MODE = file logger.access.MODE = logger.xorm.MODE = logger.router.MODE = ENABLE_SSH_LOG = true [log.file] default.FILE_NAME = gitea.log LOG_ROTATE = true MAX_SIZE_SHIFT = 28 DAILY_ROTATE = true MAX_DAYS = 7 COMPRESS = true COMPRESSION_LEVEL = -1 |
Sadly you can’t turn off all logging except the SSH log. You have to wear your SSD.
The actual fail2ban configuration is described on their website under Administration / Fail2Ban Setup
Recompile VLC on Archlinux
For various reasons you’ll want to do that.
For me it was VLC locking up when watching IPTV from a DVB>IP hardware with v3.0.21.
And with v3.0.20 it would have extremely high CPU usage which went away when recompiling.
Only on Archlinux.
Something in their process is funky.
Anyhow let’s go.
First, enable optimizations for your CPU, in /etc/makepkg.conf
1 2 3 4 5 6 7 8 9 10 11 12 |
#-- Compiler and Linker Flags # -march (or -mcpu) builds exclusively for an architecture # -mtune optimizes for an architecture, but builds for whole processor family CPPFLAGS="-D_FORTIFY_SOURCE=2" CFLAGS="-march=native -mtune=native -O3 -pipe -fstack-protector-strong -fno-plt" CXXFLAGS="-march=native -mtune=native -O3 -pipe -fstack-protector-strong -fno-plt" LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now" #-- Make Flags: change this for DistCC/SMP systems MAKEFLAGS="-j32" # number of logical CPUs on your machine #-- Debugging flags DEBUG_CFLAGS="-g -fvar-tracking-assignments" DEBUG_CXXFLAGS="-g -fvar-tracking-assignments" |
clone the repo and build
1 2 3 4 5 |
git clone https://gitlab.archlinux.org/archlinux/packaging/packages/vlc.git cd vlc sudo pacman -Rdd ffmpeg lua52 makepkg -si sudo pacman -Sd ffmpeg lua52 |
uninstalling ffmpeg and lua52 is required, else there are build errors.
after building, reinstall them again
optionally, if you get missing keys,
1 |
yay -Bi . |