mastodon.online is one of the many independent Mastodon servers you can use to participate in the fediverse.
A newer server operated by the Mastodon gGmbH non-profit

Server stats:

10K
active users

#Uckermark

2 posts2 participants1 post today
Falko<p><strong><a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/weeklyreview/" target="_blank">#weeklyreview</a> 17/2025</strong></p><p>Easter brunch with the family in the <a href="https://www.doellnsee.de" rel="nofollow noopener" target="_blank">Hotel Döllnsee</a>. Always a good place to go. But way too much food 😉 Could hardly move after the brunch. </p><p>Still we went watching the new lambs of a befriended shepherd in the afternoon. </p><p>Dad in law took care of our beehives. Out of two only one hive survived. But we’ll create a new hive by splitting the one left.</p><p><strong>Docker container debugging</strong></p><p>Every once in a while I have issues with docker containers running wild. It’s not entirely trivial to figure out to which container a certain process belongs when you have multiple containers running on the same host. Due to an<a href="https://github.com/louislam/uptime-kuma/issues/3788" rel="nofollow noopener" target="_blank"> open bug in Uptime-Kuma</a> I had to dig a little deeper and wrote myself a shell script to show the process tree of each running container:</p><pre><code>#!/bin/bash# iterate over all running containersfor container_id in `docker ps --format "{{.ID}}"`; do # Find the containers main PID CONTAINER_PID=`docker inspect --format "{{.State.Pid}}" ${container_id}` # Find the containers name CONTAINER_NAME=`docker inspect --format "{{.Name}}" ${container_id}` # Print container name and pstree echo "$CONTAINER_NAME" pstree -as ${CONTAINER_PID}done</code></pre><p></p><p></p><p>The output looks something like this:</p><p></p><p></p><pre><code>/cryptpad-cryptpad-1systemd └─containerd-shim -namespace moby -id dfb89938eb040038d51a03c016ca04d769eaf0829c00e10c0abe8cf4e6ec0d67 -address /run/containerd/containerd.sock └─npm start ├─sh -c node server.js │ └─node server.js │ ├─node ./lib/http-worker.js │ │ └─10*[{node}] │ ├─node ./lib/http-worker.js │ │ └─10*[{node}] │ ├─node lib/workers/db-worker │ │ └─10*[{node}] │ ├─node lib/workers/db-worker │ │ └─10*[{node}] │ └─10*[{node}] └─10*[{npm start}]/asciinema-asciinema-1systemd └─containerd-shim -namespace moby -id 4af82a250865da13c45431423d042cb6d79d6daaead8536c2f60d6e38a7ee640 -address /run/containerd/containerd.sock └─tini -- /opt/app/bin/server ├─beam.smp -- -root /opt/app -bindir /opt/app/erts-13.1.4/bin -progname erl -- -home /root -- -noshell -s elixir start_cli -mode embedded-setcook │ ├─erl_child_setup 1048576 │ │ ├─cpu_sup │ │ ├─inet_gethost 4 │ │ │ └─inet_gethost 4 │ │ ├─memsup │ │ └─sh -s disksup │ └─19*[{beam.smp}] └─epmd -daemon/traefiksystemd └─containerd-shim -namespace moby -id 100922f0440f49a306caa163a025c0a948d60ca37d2adfd80b090abd4b34a3ab -address /run/containerd/containerd.sock └─traefik traefik --accesslog=true --api=true --api.dashboard=true --api.insecure=false --certificatesresolvers.myresolver.acme.tlschallenge=true... └─12*[{traefik}]</code></pre><p></p><p></p><p>This should help identifying the process and the container it belongs to. Now finding the respective <code>docker-compose.yml</code> on your disk is a different story 😉</p><p></p><p></p><p><strong>Pop-Up Dinner </strong></p><p></p><p></p><p>On Thursday evening we went to a pop-up dinner at <a href="https://www.fechtner-delikatessen.de" rel="nofollow noopener" target="_blank">Fechtner Deli</a>. Delicious italian-indonesian-indian fusion kitchen. All veggie and very delicious. I can tell, because I had the left-overs from my friends as the portions were rather big. </p><p></p><p></p><p></p><p></p><p><strong>Asparagus</strong></p><p></p><p>As a German it’s customary to celebrate asparagus this time of the year. Large quantities will be consumed in the next few weeks. We did our part siding it with grilled salmon and self-made Sauce Hollandaise. </p><p></p><p></p><p><strong>Gardening</strong></p><p></p><p>Finally cut the hedge on the weekend. Quite exhausting due to the unusual movement of holding the electric hedge cutter overhead… </p><p></p><p>Also prepared the raised beet for the new season. We still wait for one or two more weeks to put our tomatoes outside as the nights are still too cold. It was below 0º C on the weekend again.</p><p></p><p></p><p></p><p></p><p></p><p><a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/docker/" target="_blank">#docker</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/en_en/" target="_blank">#enEN</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/gardening/" target="_blank">#gardening</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/scripting/" target="_blank">#scripting</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/shell/" target="_blank">#Shell</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/uckermark/" target="_blank">#Uckermark</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/weekly/" target="_blank">#weekly</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/weeklyreview/" target="_blank">#weeklyreview</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/wochenrueckblick/" target="_blank">#wochenrueckblick</a></p>
Dirk Wagner :linuxmint:<p>Da wurde das Foto aufgenommen, mitten in der <a href="https://norden.social/tags/Uckermark" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Uckermark</span></a>.</p><p><a href="https://www.kirchlein-im-gruenen.de/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="">kirchlein-im-gruenen.de/</span><span class="invisible"></span></a></p>
maxheadroomkeeping the bees <a href="https://pxl.mxhdr.net/discover/tags/Uckermark?src=hash" class="u-url hashtag" rel="nofollow noopener" target="_blank">#Uckermark</a> <a href="https://pxl.mxhdr.net/discover/tags/beekeep?src=hash" class="u-url hashtag" rel="nofollow noopener" target="_blank">#beekeep</a>
maxheadroomIt’s nice when it rains in the <a href="https://pxl.mxhdr.net/discover/tags/Uckermark?src=hash" class="u-url hashtag" rel="nofollow noopener" target="_blank">#Uckermark</a>
Uckermark MacGyver :nonazi:<p><a href="https://hub.uckermark.social/tags/Uckermark" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Uckermark</span></a> dunkel, grau und regnerisch. Die Pflanzen finden es super weil wir seit Wochen keinen Regen hatten. Jetzt gibt es hier wieder so viele tolle Grüntöne an den Bäumen und Büschen zu sehen.</p>
Falko<p><strong><a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/weeklyreview/" target="_blank">#weeklyreview</a> 15/2025</strong></p><p><strong>burger crafting</strong></p><p>On Monday I spontaneously did some burgers as I had the bun’s left over from the weekend. Invited kiddo over and got some bacon, almost burned the buns and finally assembled the damn thing. The bacon makes the difference 😀 </p><p><strong>Backup</strong></p><p>Was looking into restic backup with rclone to nextcloud. Restic is a really fifty command line utility to do encrypted backups. Either to local directories or attached volumes or to remote destinations. <a href="https://restic.readthedocs.io/en/stable/" rel="nofollow noopener" target="_blank">Restic supports a whole bunch of remotes out of the box</a>. </p><p>It can be extended to further destinations by using “<a href="https://rclone.org/" rel="nofollow noopener" target="_blank">rclone</a>” … another command line utility that tries to provide an abstraction of remote filesystems.</p><p>My goal was to use a NextCloud file storage as restic destination. You can theoretically just the NextCloud desktop client and backup to the local folder that is synced to the NextCloud server. But this way you have to have the storage space for the original AND the backup available locally. I wanted to use NextCloud as a remote storage without syncing to the local files.</p><p>So I chose a folder on the NextCloud server which I have excluded from syncing to my local machine (you can do this in the settings of your NextCloud client). Created an rclone configuration for <a href="https://rclone.org/webdav/#nextcloud" rel="nofollow noopener" target="_blank">NextCloud following the documentation</a>. And then just backup to the rclone destination:</p><p><code>restic -r rclone:nxtcld:restic-backups/work-macbook backup ./Downloads/Instagram-Backup</code></p><p>Why all this hassle? Because Hetzner is offering <a href="https://www.hetzner.com/de/storage/storage-share/" rel="nofollow noopener" target="_blank">StorageShares</a> based on NextCloud at a pretty good price point. Beside using it as mere document sharing space, one can also use it as a backup destination.</p><p><strong>macOS Update issues</strong></p><p>Im still <a href="https://discussions.apple.com/thread/256029580?sortBy=rank" rel="nofollow noopener" target="_blank">struggling to update</a> my personal macOS sitting on an external disk to the latest version of 15.4. Apparently Apple has an issue in that version with this particular update type as many others report the same problem. Updating macOS sitting on an external disk seems to fail. Some users claim success , but it’s unclear what they did differently. I’ve tried a whole bunch of attempts already that include turning off FileVault (as the issue seems to relate to encryption) and also installing from a USB stick. No luck so far 🙁</p><p><strong>Heating repair</strong></p><p>Our floor heating was broken since last year. It didn’t fully turn off in one room. Trying to find a company to repair this wasn’t easy. Most companies I contacted didn’t reply at all or never came back to me after a first attempt. So I had to pull the vitamin b card and call my cousin who runs a very successful plumbing company in the south of Berlin. They were sweet and nice, kept all the appointments and called back when promised. And not because their boss is my cousin. So eventually their guy was there this week to fix the probably broken actor motor of one of the valves. let’s see how long this fixes the issue. </p><p><strong>US Colleagues visit</strong></p><p>This week we also had two colleagues from the US over. First time in several years that work related travel in the “lower ranks” was approved. Been in a workshop with some AWS folks for two days. That was intense but also good to spend focused time with the whole team on a topic. </p><p>And of course there were the obligatory team dinners.</p><p><strong>Dinner again</strong></p><p>It almost became a tradition to have dinner over at my friends place. This week it was deliciously roasted chicken on the menu. Also some other substances were involved that I didn’t felt the effect of yet 😉</p><p>Kiddo requested pasta with salmon and tomato cream sauce as she recently had in a restaurant. So we gave that recipe a try and kiddo approved. Super simple to make actually. We might see this more often now.</p><p><strong>Spring finally</strong></p><p>It’s getting warmer outside and finally the trees and bushes started to push leaves and blossoms. So I had to do my share of taking and posting pictures of blossoming trees and bushes. Here you go.</p><p>Back in the countryside I enjoyed coffee outside on the terrace with my glorious golden mug. </p><p>You can see our tomato and chilli seedlings in the background. They eagerly wait to get outside. But we need to be sure the nights are free of frost for sure. We but planted a few herbs and vegetables on the refurbished raised beets on the weekend and also started the well pump. </p><p>That pump started immediately to pump water without any fiddling. This also seems to reflect the high level of ground water this year. Although the surface soil is super dry as it hasn’t rained in quite a while substantially. But the trenches in the fields and in the forest are actually filled with water which I haven’t noticed in years in our area. </p><p><strong>Knitting</strong></p><p>Kiddo found an old blanket he had started several years ago but didn’t finish. So he picket it up and is running through quite some wool now. </p><p><strong>New Hardware</strong></p><p>It was about time to replace the old 2012 MacBook Air of my wife. With all this taxation kerfuffle going on, it might be a good time to get something new out. Also the current generation of MacBook Air M4 has just arrived and got really good reviews. </p><p><a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/backup/" target="_blank">#backup</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/en_en/" target="_blank">#enEN</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/food/" target="_blank">#food</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/gardening/" target="_blank">#gardening</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/knitting/" target="_blank">#knitting</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/mac/" target="_blank">#mac</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/macbook/" target="_blank">#MacBook</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/macos/" target="_blank">#macOS</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/uckermark/" target="_blank">#Uckermark</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/weekly/" target="_blank">#weekly</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/weeklyreview/" target="_blank">#weeklyreview</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://falko.zurell.de/tag/wochenrueckblick/" target="_blank">#wochenrueckblick</a></p>
maxheadroomIt was almost summer feeling today. We swam to the middle of the lake where a new buoy was deployed <a href="https://pxl.mxhdr.net/discover/tags/Uckermark?src=hash" class="u-url hashtag" rel="nofollow noopener" target="_blank">#Uckermark</a> <a href="https://pxl.mxhdr.net/discover/tags/coldswim?src=hash" class="u-url hashtag" rel="nofollow noopener" target="_blank">#coldswim</a>
Mac King :mastodon:<p>Start und Ziel des 12. Uckermärker Wandertages ist der Lychener Markt. <br>Umgeben von Seen bietet die Flößerstadt attraktive Wanderrouten. <br>Drei davon können am 4. Mai getestet werden.</p><p><a href="https://www.nordkurier.de/regional/uckermark/beim-wander-trip-in-lychen-koennen-sich-ausfluegler-erste-stempel-verdienen-3471607" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">nordkurier.de/regional/uckerma</span><span class="invisible">rk/beim-wander-trip-in-lychen-koennen-sich-ausfluegler-erste-stempel-verdienen-3471607</span></a></p><p><a href="https://toot.berlin/tags/InfoToot" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>InfoToot</span></a> <a href="https://toot.berlin/tags/Uckermark" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Uckermark</span></a></p>
maxheadroomreplacing old crumbling raised beets with a new one. Should last another 5-6 years. <a href="https://pxl.mxhdr.net/discover/tags/uckermark?src=hash" class="u-url hashtag" rel="nofollow noopener" target="_blank">#uckermark</a> <a href="https://pxl.mxhdr.net/discover/tags/gardening?src=hash" class="u-url hashtag" rel="nofollow noopener" target="_blank">#gardening</a> <a href="https://pxl.mxhdr.net/discover/tags/woodworking?src=hash" class="u-url hashtag" rel="nofollow noopener" target="_blank">#woodworking</a>
maxheadroomLizard (Lacerta agilis) enjoying the sun. I feel you little lizard. <a href="https://pxl.mxhdr.net/discover/tags/uckermark?src=hash" class="u-url hashtag" rel="nofollow noopener" target="_blank">#uckermark</a>
Stefan<p>Polarluft macht <a href="https://social.tchncs.de/tags/Radtour" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Radtour</span></a> - und zwar heute von Nord nach Süd: von <a href="https://social.tchncs.de/tags/Prenzlau" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Prenzlau</span></a> ging es durch die hügelige Moränenlandschaft der schönen <a href="https://social.tchncs.de/tags/Uckermark" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Uckermark</span></a> vorbei an etlichen Seen nach Angermünde. Und die klare, kalte Luft sorgte für Sonne und Aussichten satt. </p><p>Ein Highlight war die Marienkirche in Prenzlau, ansonsten wurde die Stadt im zweiten Weltkrieg zerstört. Aber die Gegend ist richtig schön.</p>
alleycat🏳️‍🌈<p>Auffällig war heute die starke Polizeipräsenz. Offenbar wollte heute jemand keine schlechte Presse...</p><p><a href="https://troet.cafe/tags/noafd" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>noafd</span></a> <a href="https://troet.cafe/tags/antifa" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>antifa</span></a> <a href="https://troet.cafe/tags/antifaschismus" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>antifaschismus</span></a> <a href="https://troet.cafe/tags/uckermark" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>uckermark</span></a> <a href="https://troet.cafe/tags/templin" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>templin</span></a></p>
alleycat🏳️‍🌈<p>Ein Wahlkampfstand der rechtsextremistischen <a href="https://troet.cafe/tags/noafd" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>noafd</span></a> zur Bürgermeisterwahl in <a href="https://troet.cafe/tags/Templin" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Templin</span></a> <br>Vor einem Monat gab es hier bei einer Wahlkampfveranstaltung des Neonazis Hannes Gnauck einen rechtsextremen Angriff auf Gegendemonstranten. Dieser war heute wieder mit dabei. Dem Kandidaten Christian Bork werden gute Chancen zugesprochen. </p><p><a href="https://troet.cafe/tags/antifa" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>antifa</span></a> <a href="https://troet.cafe/tags/antifascism" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>antifascism</span></a> <a href="https://troet.cafe/tags/uckermark" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>uckermark</span></a></p>
esther.wolfram<p>Hallo ich bin neu hier und möchte mich mit anderen Künster:innen vernetzen. Ich blogge : <a href="https://bestelaune.de/auf-der-suche-nach-meiner-bildsprache" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">bestelaune.de/auf-der-suche-na</span><span class="invisible">ch-meiner-bildsprache</span></a> und lade kreative Menschen zum Malen in Prenzlau ein. <a href="https://mastodon.social/tags/malmitmir" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>malmitmir</span></a> <a href="https://mastodon.social/tags/bestelaune" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>bestelaune</span></a> <a href="https://mastodon.social/tags/uckermark" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>uckermark</span></a> <a href="https://mastodon.social/tags/bahhofspioniere_prenzlau" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>bahhofspioniere_prenzlau</span></a> <a href="https://mastodon.social/tags/art" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>art</span></a> <a href="https://mastodon.social/tags/artfoodtravelandstyle" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>artfoodtravelandstyle</span></a> <a href="https://mastodon.social/tags/digitalArt" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>digitalArt</span></a> <a href="https://mastodon.social/tags/K%C3%BCnstlerin" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Künstlerin</span></a></p>
The Secret Life Of Plants🌱<p>Achtung! <a href="https://digitalcourage.social/tags/Tierqu%C3%A4lerei" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Tierquälerei</span></a>! <br><a href="https://digitalcourage.social/tags/Aninova" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Aninova</span></a> neue Aufdeckung. </p><p>All das passiert für <a href="https://digitalcourage.social/tags/Milch" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Milch</span></a>, <a href="https://digitalcourage.social/tags/K%C3%A4se" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Käse</span></a> und andere Produkte auf Milchbasis. Der Betrieb steht in der <a href="https://digitalcourage.social/tags/Uckermark" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Uckermark</span></a> und beliefert eine <a href="https://digitalcourage.social/tags/Molkerei" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Molkerei</span></a>, die wiederum an große Supermarktketten liefert (<a href="https://digitalcourage.social/tags/REWE" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>REWE</span></a>, <a href="https://digitalcourage.social/tags/LIDL" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LIDL</span></a>, <a href="https://digitalcourage.social/tags/Kaufland" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Kaufland</span></a>).</p><p>Besonders erkrankte <a href="https://digitalcourage.social/tags/K%C3%BChe" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Kühe</span></a> werden hier geschlagen, getreten, angeschrien -offenbar sollen sie "funktionieren".</p><p>Dabei geht es hier um einen "<a href="https://digitalcourage.social/tags/Tierwohl" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Tierwohl</span></a>" Stall - mit Haltungsform 3 "Frischluft" oder auch "Außenklima". Weidezugang ist dabei jedoch keine Pflicht und so können die <a href="https://digitalcourage.social/tags/Tiere" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Tiere</span></a> auch hier nicht auf die <a href="https://digitalcourage.social/tags/Weide" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Weide</span></a>.</p><p>Es tut weh, das zu sehen. Bitte supporte die Aufdeckung, indem Du das Video dennoch weiter gibst. <br>Für die Tiere</p><p><a href="https://digitalcourage.social/tags/Undercover" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Undercover</span></a> <a href="https://digitalcourage.social/tags/Milch" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Milch</span></a> <a href="https://digitalcourage.social/tags/K%C3%A4se" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Käse</span></a> <a href="https://digitalcourage.social/tags/Tierrechte" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Tierrechte</span></a> <a href="https://digitalcourage.social/tags/Protein" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Protein</span></a> <a href="https://digitalcourage.social/tags/K%C3%A4lber" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Kälber</span></a> <a href="https://digitalcourage.social/tags/Tierrechte" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Tierrechte</span></a> <a href="https://digitalcourage.social/tags/keineinzelfall" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>keineinzelfall</span></a> <a href="https://digitalcourage.social/tags/Verantwortung" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Verantwortung</span></a> <a href="https://digitalcourage.social/tags/Rinder" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Rinder</span></a> <a href="https://digitalcourage.social/tags/Landwirtschaft" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Landwirtschaft</span></a></p>
Sascha 😈 ⁂ (Fediverse)<p><strong><strong>rbb: Uckermark - Verdacht auf Tierquälerei in großer Milchvieh-Anlage in Brandenburg</strong></strong></p><p><br>Schwere Vorwürfe gegen einen der größten Milchvieh-Höfe in Brandenburg: Nach Videoaufnahmen besteht der Verdacht der Tierquälerei. Das zuständige Veterinäramt will Strafanzeige stellen... (<a href="https://www.rbb24.de/panorama/beitrag/2025/04/milchvieh-hof-kuehe-verdacht-tierquaelerei-brandenburg-uckermark.html" rel="nofollow noopener" target="_blank">weiter</a>)</p><p><strong>Info:</strong> Einfach nur krank wie manche Menschen mit anderen Lebewesen umgehen. In dem Video das im Beitrag enthalten ist, sieht man einen Teil davon, deshalb ist es ganz sicher nicht für alle geeignet.</p><p><a href="https://fedinaut.de/search?tag=Tierqu%C3%A4lerei" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Tierquälerei</span></a> <a href="https://fedinaut.de/search?tag=Brandenburg" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Brandenburg</span></a> <a href="https://fedinaut.de/search?tag=Uckermark" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Uckermark</span></a> <a href="https://fedinaut.de/search?tag=Mensch" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Mensch</span></a> <a href="https://fedinaut.de/search?tag=rbb" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rbb</span></a> <a href="https://fedinaut.de/search?tag=2025-04-02" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>2025-04-02</span></a></p>
Uckermark MacGyver :nonazi:<p>***EIL*** </p><p>Es hat heute in der <a href="https://hub.uckermark.social/tags/Uckermark" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Uckermark</span></a> ca. 30 min geregnet</p>
Uckermark MacGyver :nonazi:<p>Die Kids von unserem Freund haben am Wochenende im Wald geschlafen. 2 Nächte. Verrückte Kinder ;) Die haben 2 vs. Wild gemacht. Sehr sehr professionell aus was die sich da gebastelt hatten. <a href="https://hub.uckermark.social/tags/Uckermark" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Uckermark</span></a></p>
berlin_radler<p><span class="h-card" translate="no"><a href="https://berlin.social/@berlinuxer" class="u-url mention" rel="nofollow noopener" target="_blank">@<span>berlinuxer</span></a></span> Wenn ich mir n Pferd anschaffen will, muß ich mich vorher um einen Stall kümmern und nicht einen der anliegenden Straßenbäume oder Laternen dafür benutzen wollen. Dasselbe gilt für <a href="https://berlin.social/tags/Stehblech" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Stehblech</span></a>.😡 </p><p>Das größte Problem dieses <a href="https://berlin.social/tags/Stehzeugbesitzys" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Stehzeugbesitzys</span></a> ist allerdings die <a href="https://berlin.social/tags/Datsche" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Datsche</span></a> in der <a href="https://berlin.social/tags/Uckermark" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Uckermark</span></a>. Ohne die könnte alles andere auch ohne eigene Blechkiste &amp; insg billiger mit dem ÖPNV &amp; Taxi erledigt werden. </p><p>Was auch ginge mit Auto inne Uckermark ziehen! 😉😳 😱 Aber nee, Hauptstadtwohnung...</p>
Uckermark MacGyver :nonazi:<p>-7°C in der <a href="https://hub.uckermark.social/tags/Uckermark" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Uckermark</span></a> 🥶</p>