<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>hagen-bauer.de</title>
    <description>Dies ist ein privater Blog von Hagen Bauer- berufstätiger Vater, Ehemann, Naturliebhaber, Läufer, Camper, technikverliebt.
</description>
    <link>https://www.hagen-bauer.de/</link>
    <atom:link href="https://www.hagen-bauer.de/atom.xml" rel="self" type="application/rss+xml"/>
    <pubDate>Fri, 05 Jun 2026 09:30:45 +0200</pubDate>
    <lastBuildDate>Fri, 05 Jun 2026 09:30:45 +0200</lastBuildDate>
    <generator>Jekyll v4.4.1</generator>
    
      <item>
        <title>Kantenschutz für Wohnwagenfenster</title>
        <description>&lt;p&gt;Bei unserem Eriba Touring sind die Fenster recht scharfkantig.&lt;/p&gt;

&lt;p&gt;Und wenn sich Mensch hier von unten mit dem Kopf daran stößt dann kann das mit reduziertem Haarbestand schon zu hässlichen Wunden am Kopf führen. Wenn man zum Beispiel das “Küchenfenster” offen hat und davor den Kocher aufgebaut hat.&lt;/p&gt;

&lt;p&gt;Ich hoffe das mit dem Kantenschutz am Fenster nur noch Beulen entstehen&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/images/2026/202606-Kantenschutz_fr_Wohnwagenfenster.jpg&quot; alt=&quot;Kantenschutz am Wohnwagenfenster&quot; class=&quot;resp-img&quot; /&gt;&lt;/p&gt;
</description>
        <pubDate>Fri, 05 Jun 2026 09:28:55 +0200</pubDate>
        <link>https://www.hagen-bauer.de/2026/06/Kantenschutz_fr_Wohnwagenfenster.html</link>
        <guid isPermaLink="true">https://www.hagen-bauer.de/2026/06/Kantenschutz_fr_Wohnwagenfenster.html</guid>
        
        <category>Troll</category>
        
        <category>Eriba</category>
        
        
      </item>
    
      <item>
        <title>Owntracks Data on a static page</title>
        <description>&lt;p&gt;I am using &lt;a href=&quot;https://owntracks.org&quot;&gt;owntracks&lt;/a&gt; for a very long time now but never realy used the function to &lt;a href=&quot;https://owntracks.org/booklet/guide/clients/#recorder&quot;&gt;record&lt;/a&gt; tracks.&lt;/p&gt;

&lt;p&gt;I now wanted to be able to display a trip on a static web pages without any connection to the owntracks recorder (ot-recorder is only running in my vpn). I already used &lt;a href=&quot;https://leafletjs.com/&quot;&gt;leafletjs&lt;/a&gt; to display GPX tracks from trecking tours so this was  may natural goto library.&lt;/p&gt;

&lt;p&gt;The only question was how to get the data in a form that I could consume from a html page. It turns out this was the easiest part thanks to the small utility ‘ocat’ that comes with owntracks recorder.&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt; ocat --user hbauer --device myphone --from &quot;2026-05-16T07:00&quot; --to &quot;2026-06-01T07:00&quot; --format linestring &amp;gt; balkan2026.geojson
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;I have chosen linestring intstead of points since this a trip of 4k km has a lot of points.&lt;/p&gt;

&lt;p&gt;I also wanted to add some point markers on the map so I created a list of points.&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;[ {
&quot;name&quot;: &quot;Übernachtungsplatz Oliver kocht&quot;,
&quot;lat&quot;: 46.71605485035968,
&quot;lon&quot;: 15.676161253455058,
&quot;text&quot;: &quot;&amp;lt;a href=&apos;https://www.hagen-bauer.de/2026/05/bernachtungsplatz_in_sterreich.html&apos; target=&apos;_blank&apos;&amp;gt; Blogbeitrag &amp;lt;/a&amp;gt;&quot;
}, {
&quot;name&quot;: &quot;Plitvizer Seen&quot;,
&quot;lat&quot;: 44.883382013941976,
&quot;lon&quot;: 15.621955470025389,
&quot;text&quot;: &quot;&amp;lt;a href=&apos;https://www.hagen-bauer.de/2026/05/Die_Plitvicer_Seen.html&apos; target=&apos;_blank&apos;&amp;gt; Blogbeitrag &amp;lt;/a&amp;gt;&quot;
} ]
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;This is a very simple html page to get started. Since I am using Jekyll to generate my site my final layout was different but you may get the idea. The html pages must be in the same directory with the 2 data files.&lt;/p&gt;

&lt;p&gt;My final result looks like &lt;a href=&quot;/karten/balkan-2026.html&quot;&gt;this&lt;/a&gt;&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang=&quot;de&quot;&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset=&quot;utf-8&quot;&amp;gt;
    &amp;lt;title&amp;gt;OwnTracks Route&amp;lt;/title&amp;gt;
    &amp;lt;link rel=&quot;stylesheet&quot; href=&quot;https://unpkg.com/leaflet@1.9.4/dist/leaflet.css&quot;&amp;gt;
    &amp;lt;style&amp;gt;
        html, body { margin: 0; height: 100%; }
        #map { width: 80%; height: 80%; }
    &amp;lt;/style&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;div id=&quot;map&quot;&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;script src=&quot;https://unpkg.com/leaflet@1.9.4/dist/leaflet.js&quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;
const map = L.map(&apos;map&apos;);
L.tileLayer(&apos;https://tile.openstreetmap.org/{z}/{x}/{y}.png&apos;, {
    attribution: &apos;&amp;amp;copy; OpenStreetMap-Mitwirkende&apos;
}).addTo(map);
fetch(&apos;balkan-2026-markers.json&apos;)
  .then(r =&amp;gt; r.json())
  .then(markers =&amp;gt; {
    markers.forEach(m =&amp;gt; {
      L.marker([m.lat, m.lon])
        .addTo(map)
        .bindPopup(`&amp;lt;b&amp;gt;${m.name}&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;${m.text}`);
    });
  });
fetch(&apos;balkan-2026-track.geojson&apos;)
    .then(response =&amp;gt; response.json())
    .then(data =&amp;gt; {
        const route = L.geoJSON(data, {
            style: {
                color: &apos;#ff0000&apos;,
                weight: 4
            }
        }).addTo(map);
        map.fitBounds(route.getBounds());
    })
    .catch(error =&amp;gt; {
        console.error(&apos;Fehler beim Laden von balkan.geojson:&apos;, error);
    });
&amp;lt;/script&amp;gt; &amp;lt;/body&amp;gt; &amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
</description>
        <pubDate>Tue, 02 Jun 2026 00:00:00 +0200</pubDate>
        <link>https://www.hagen-bauer.de/2026/06/owntracks-data-on-leaflet.html</link>
        <guid isPermaLink="true">https://www.hagen-bauer.de/2026/06/owntracks-data-on-leaflet.html</guid>
        
        <category>owntracks</category>
        
        <category>mqtt</category>
        
        
      </item>
    
      <item>
        <title>Balkan Tour 2026 Übersichtskarte</title>
        <description>&lt;p&gt;&lt;a href=&quot;/karten/balkan-2026.html&quot;&gt;Hier&lt;/a&gt; eine Übersichtskarte der Fahrt.&lt;/p&gt;
</description>
        <pubDate>Sat, 30 May 2026 21:10:55 +0200</pubDate>
        <link>https://www.hagen-bauer.de/2026/05/balkantour-karte.html</link>
        <guid isPermaLink="true">https://www.hagen-bauer.de/2026/05/balkantour-karte.html</guid>
        
        <category>balkan2026</category>
        
        <category>Deutschland</category>
        
        <category>schweiz</category>
        
        <category>kroatien</category>
        
        
      </item>
    
      <item>
        <title>Noch eine Schleife an den Bodensee</title>
        <description>&lt;p&gt;Wir hatten die Heimatadresse nach dem Besuch am Rheinfall schon im Navi als meine Liebste meinte das sie ja auch immer mal zu Insel Meinau wollte.&lt;/p&gt;

&lt;p&gt;Und schwupps, jetzt sind wir am Bodensee.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/images/2026/202605-Noch_eine_Schleife_an_den_Bodensee-2.jpg&quot; alt=&quot;&quot; class=&quot;resp-img&quot; /&gt; &lt;br /&gt;
&lt;img src=&quot;/images/2026/202605-Noch_eine_Schleife_an_den_Bodensee.jpg&quot; alt=&quot;&quot; class=&quot;resp-img&quot; /&gt; &lt;br /&gt;&lt;/p&gt;
</description>
        <pubDate>Sat, 30 May 2026 21:10:55 +0200</pubDate>
        <link>https://www.hagen-bauer.de/2026/05/Noch_eine_Schleife_an_den_Bodensee.html</link>
        <guid isPermaLink="true">https://www.hagen-bauer.de/2026/05/Noch_eine_Schleife_an_den_Bodensee.html</guid>
        
        <category>balkan2026</category>
        
        <category>Deutschland</category>
        
        <category>schweiz</category>
        
        
      </item>
    
      <item>
        <title>Lugano und Bellinzona</title>
        <description>&lt;p&gt;In Anbetracht der Immobilität meiner liebsten haben wir uns für die Schweiz „Landschaft gucken“ und „Berge rauffahren“ als Aktivitäten vorgenommen. Etwas durch die Stadt schlendern geht auch schon wieder.&lt;/p&gt;

&lt;p&gt;Heute sind wir dafür in Lugano mit einer Standseilbahn auf den Berg gefahren und haben uns in Bellinzona die Burgen angeschaut.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/images/2026/202605-Lugano_und_Bellinzona.jpg&quot; alt=&quot;&quot; class=&quot;resp-img&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;/images/2026/202605-Lugano_und_Bellinzona-2.jpg&quot; alt=&quot;&quot; class=&quot;resp-img&quot; /&gt;&lt;/p&gt;
</description>
        <pubDate>Thu, 28 May 2026 21:07:19 +0200</pubDate>
        <link>https://www.hagen-bauer.de/2026/05/Lugano_und_Bellinzona.html</link>
        <guid isPermaLink="true">https://www.hagen-bauer.de/2026/05/Lugano_und_Bellinzona.html</guid>
        
        <category>balkan2026</category>
        
        <category>Schweiz</category>
        
        
      </item>
    
      <item>
        <title>An alle Mailserverbetreiber</title>
        <description>&lt;p&gt;Wenn Ihr einen eigenen Mailserver betreibt und Eurem Spamserver sagt alle Mails mit „Kredit“ im Subjekt abzuweisen dann erinnert euch daran wenn ihr im Ausland seit und mit der Bank einen Mailaustausch zur Kreditkarte habt.&lt;/p&gt;

&lt;p&gt;(Gesendet aus der Schweiz mit dem Blick auf den Luganer See nach 40 Minuten Maildebugging)&lt;/p&gt;
</description>
        <pubDate>Thu, 28 May 2026 19:16:51 +0200</pubDate>
        <link>https://www.hagen-bauer.de/2026/05/An_alle_Mailserverbetreiber.html</link>
        <guid isPermaLink="true">https://www.hagen-bauer.de/2026/05/An_alle_Mailserverbetreiber.html</guid>
        
        <category>admin</category>
        
        <category>mail</category>
        
        
      </item>
    
      <item>
        <title>Pläne ändern sich ungewollt</title>
        <description>&lt;p&gt;Vorgestern in Dubrovnik habe ich noch einen Baum gesehen der an einer Kirchenwand wächst. Und ich dachte mir:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;oh ein schönes Sinnbild immer das Beste aus einer Situation zu machen.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Am Abend hat sich meine Beste bei einem Spaziergang über den Campingplatz den Fuß verstaucht. Damit ist natürlich die Hauptaktivität Wandern und Städtetouren für den geplanten Verlauf in Montenegro und Bosnien nicht mehr möglich.&lt;/p&gt;

&lt;p&gt;Eigentlich hatten wir vor ca 1 Woche durch Montenegro und dann noch 1 Woche durch Bosnien zu reisen.&lt;/p&gt;

&lt;p&gt;Dieser Urlaubsplan war also Makulatur.&lt;/p&gt;

&lt;p&gt;Wir haben uns dann auf den Weg Richtung Deutschland gemacht und uns auf einen Platz nahe Venedig den wir von früher kennen gestellt. Der Fuß heilt recht gut aber „umfangreiche“ Wanderungen sind noch lange nicht möglich.&lt;/p&gt;

&lt;p&gt;Also ziehen wir einen Plan vor, den wir schon länger auf der Liste haben und schuckeln durch die Schweiz nach Hause.&lt;/p&gt;

&lt;p&gt;Der Reiseplan für Montenegro wird dann hoffentlich in der nahen Zukunft noch mal aus der Schublade gezogen.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/images/2026/202605-Plne_ndern_sich_ungewollt.jpg&quot; alt=&quot;&quot; class=&quot;resp-img&quot; /&gt;&lt;/p&gt;
</description>
        <pubDate>Tue, 26 May 2026 21:06:53 +0200</pubDate>
        <link>https://www.hagen-bauer.de/2026/05/Plne_ndern_sich_ungewollt.html</link>
        <guid isPermaLink="true">https://www.hagen-bauer.de/2026/05/Plne_ndern_sich_ungewollt.html</guid>
        
        <category>balkan2026</category>
        
        <category>Schweiz</category>
        
        
      </item>
    
      <item>
        <title>Dubrovnik - eine tolle Altstadt</title>
        <description>&lt;p&gt;Wir haben einen sehr frühen Bus in die Altstadt genommen und das hat sich gelohnt. Wir konnten unter den ersten auf die Stdtmauer und den sehr schönen Rundgang fast alleine genießen. Auch die Stadt selbst war noch relativ leer und man konnte ohne großes Gedrängel durch die schönen Gassen schlendern.  Das hat sich dann im laufe des Tages geändert denn dann wurde es deutlich voller.&lt;/p&gt;

&lt;p&gt;Wir haben dann noch eine sehr unterhaltsame Führung von &lt;a href=&quot;https://www.guruwalk.com/de/walks/26221-gefuhrte-tour-mit-einem-einheimischen-durch-dubrovnik-perlederadria&quot;&gt;Marco&lt;/a&gt; mitgemacht die wir auch weiter empfehlen würden. Und ich muss unbedingt mal herausfinden was dieses Game of Thrones ist. &lt;a href=&quot;https://www.guruwalk.com/de/walks/26221-gefuhrte-tour-mit-einem-einheimischen-durch-dubrovnik-perlederadria&quot;&gt; &lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/images/2026/202605-Dubrovnik__eine_tolle_Altstadt-2.jpg&quot; alt=&quot;&quot; class=&quot;resp-img&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;/images/2026/202605-Dubrovnik__eine_tolle_Altstadt-1.jpg&quot; alt=&quot;&quot; class=&quot;resp-img&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;/images/2026/202605-Dubrovnik__eine_tolle_Altstadt.jpg&quot; alt=&quot;&quot; class=&quot;resp-img&quot; /&gt;&lt;/p&gt;
</description>
        <pubDate>Sun, 24 May 2026 20:11:58 +0200</pubDate>
        <link>https://www.hagen-bauer.de/2026/05/Dubrovnik__eine_tolle_Altstadt.html</link>
        <guid isPermaLink="true">https://www.hagen-bauer.de/2026/05/Dubrovnik__eine_tolle_Altstadt.html</guid>
        
        <category>balkan2026</category>
        
        <category>kroatien</category>
        
        
      </item>
    
      <item>
        <title>Things from the past</title>
        <description>&lt;p&gt;My kids will never be able to appreciate the Euro as some elderly people will.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/images/2026/202605-Things_from_the_past.jpg&quot; alt=&quot;&quot; class=&quot;resp-img&quot; /&gt;&lt;/p&gt;
</description>
        <pubDate>Sun, 24 May 2026 19:31:08 +0200</pubDate>
        <link>https://www.hagen-bauer.de/2026/05/Things_from_the_past.html</link>
        <guid isPermaLink="true">https://www.hagen-bauer.de/2026/05/Things_from_the_past.html</guid>
        
        <category>Euro</category>
        
        
      </item>
    
      <item>
        <title>Eine Megapowerbank für das Auto</title>
        <description>&lt;p&gt;Vor Jahren habe ich mir mal für einen VW Bus eine Starthilfebatterie gekauft. Kann man auch als normale Powerbank nehmen. Liegt seit dem von mir unbenutzt im Kofferraum und hat schon diversen Menschen Starthilfe gegeben.&lt;/p&gt;

&lt;p&gt;Heute morgen wieder. Der polnische Camper wirklich glücklich.&lt;/p&gt;

&lt;p&gt;Vielleicht eine Anregung für den einen oder anderen Camper.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/images/2026/202605-Eine_Megapowerbank_fr_das_Auto.jpg&quot; alt=&quot;&quot; class=&quot;resp-img&quot; /&gt;&lt;/p&gt;
</description>
        <pubDate>Sat, 23 May 2026 21:21:53 +0200</pubDate>
        <link>https://www.hagen-bauer.de/2026/05/Eine_Megapowerbank_fr_das_Auto.html</link>
        <guid isPermaLink="true">https://www.hagen-bauer.de/2026/05/Eine_Megapowerbank_fr_das_Auto.html</guid>
        
        <category>Ausrüstung</category>
        
        <category>Camping</category>
        
        
      </item>
    
  </channel>
</rss>
