<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>About me on Jakob Miksch</title>
    <link>https://jakobmiksch.eu/</link>
    <description>Recent content in About me on Jakob Miksch</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Sun, 28 Jul 2024 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://jakobmiksch.eu/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Random Geodata Generator</title>
      <link>https://jakobmiksch.eu/post/random_geodata/</link>
      <pubDate>Sun, 28 Jul 2024 00:00:00 +0000</pubDate>
      <guid>https://jakobmiksch.eu/post/random_geodata/</guid>
      <description>&lt;p&gt;For software development, I often need different geodata sets for testing. So far, I have created these with &lt;a href=&#34;https://geojson.io/&#34;&gt;geojson.io&lt;/a&gt; or &lt;a href=&#34;https://qgis.org/&#34;&gt;QGIS&lt;/a&gt; or downloaded data from &lt;a href=&#34;https://www.openstreetmap.org/&#34;&gt;OpenStreetMap&lt;/a&gt; or &lt;a href=&#34;https://www.naturalearthdata.com/&#34;&gt;Natural Earth&lt;/a&gt;. However, I had a use case where I needed data from specific regions. And ideally not only in WGS84, but also in the respective UTM projection for the region. Since there is no such tool to my knowledge, I wrote it myself. The code is available as open source on &lt;a href=&#34;https://github.com/JakobMiksch/random-geodata&#34;&gt;github.com/JakobMiksch/random-geodata&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Update an OSM database with osm2pgsql</title>
      <link>https://jakobmiksch.eu/post/osm2pgsql-replication-script/</link>
      <pubDate>Sat, 12 Nov 2022 00:00:00 +0000</pubDate>
      <guid>https://jakobmiksch.eu/post/osm2pgsql-replication-script/</guid>
      <description>&lt;p&gt;With &lt;a href=&#34;https://osm2pgsql.org/&#34;&gt;osm2pgsql&lt;/a&gt; it is possible to load data from OpenStreetMap into a PostGIS database. The data can then be processed and analyzed with the full power of spatial SQL. Programs like QGIS, GeoServer or MapServer can read that database and render it on a map. A very impressive feature of &lt;code&gt;osm2pgsql&lt;/code&gt; is to keep the database up-to-date with the latest changes from OpenStreetMap. This is done by the commandline tool &lt;code&gt;osm2pgsql-replication&lt;/code&gt; (see &lt;a href=&#34;https://osm2pgsql.org/doc/manual.html#updating-an-existing-database&#34;&gt;docs&lt;/a&gt;). It checks from which source your initial data comes from and downloads the respective changesets.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Extracting Points from Polygons using osm2pgsql and PostGIS</title>
      <link>https://jakobmiksch.eu/post/osm2pgsql-point-polygon/</link>
      <pubDate>Sat, 24 Sep 2022 00:00:00 +0000</pubDate>
      <guid>https://jakobmiksch.eu/post/osm2pgsql-point-polygon/</guid>
      <description>&lt;p&gt;A common use case for OpenStreetMap is extracting POIs (points of interest). This is easy for points that are modelled as nodes. However, some features of interest actually appear in the shape of polygons (and sometimes even lines). A typical example is a building (polygon) that is tagged as supermarket, but in our case we are only interested in a single point and not in the shape of the geometry.&lt;/p&gt;</description>
    </item>
    <item>
      <title>exa - An Alternative to ls</title>
      <link>https://jakobmiksch.eu/post/exa/</link>
      <pubDate>Fri, 03 Sep 2021 00:00:00 +0000</pubDate>
      <guid>https://jakobmiksch.eu/post/exa/</guid>
      <description>&lt;p&gt;I just discovered the commandline tool &lt;a href=&#34;https://the.exa.website/&#34;&gt;exa&lt;/a&gt;. It serves as a modern replacement for &lt;code&gt;ls&lt;/code&gt; and &lt;code&gt;tree&lt;/code&gt;. Additionally it shows little icons of the filetype in its output.&lt;/p&gt;&#xA;&lt;p&gt;To use it it you can simply download the binary from the &lt;a href=&#34;https://the.exa.website/#installation&#34;&gt;release page&lt;/a&gt; and add it to your &lt;code&gt;PATH&lt;/code&gt;.&lt;/p&gt;&#xA;&lt;p&gt;To make it work with my setup I had to add these aliases:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;alias ls&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;exa --icons --group-directories-first&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;alias la&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;ll -a&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;alias tree&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;exa --tree&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The standard font on my Debian/Ubuntu system does not show all icons. Therefore another font is needed. A font from &lt;a href=&#34;https://www.nerdfonts.com/font-downloads&#34;&gt;Nerd Fonts&lt;/a&gt; can be used. To download them is described in this &lt;a href=&#34;https://gist.github.com/matthewjberger/7dd7e079f282f8138a9dc3b045ebefa0&#34;&gt;gist&lt;/a&gt;:&lt;/p&gt;</description>
    </item>
    <item>
      <title>GeoSpatial Commandline Tools</title>
      <link>https://jakobmiksch.eu/post/geospatial_commandline/</link>
      <pubDate>Sun, 21 Feb 2021 00:00:00 +0000</pubDate>
      <guid>https://jakobmiksch.eu/post/geospatial_commandline/</guid>
      <description>&lt;p&gt;Based on the overwhelming response of the &lt;a href=&#34;https://twitter.com/JakobMiksch/status/1358012117924904960&#34;&gt;this tweet&lt;/a&gt;, I started a list of geospatial commandline tools.&lt;/p&gt;&#xA;&lt;figure&gt;&lt;img src=&#34;https://jakobmiksch.eu/img/geospatial_commandline/tweet.png&#34;&#xA;    alt=&#34;The screenshot of the tweet&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;p&gt;It can be found in this git repository: &lt;a href=&#34;https://github.com/JakobMiksch/geospatial-cli&#34;&gt;https://github.com/JakobMiksch/geospatial-cli&lt;/a&gt; Everyone is welcome to use it and contribute. It is CC0 licensed.&lt;/p&gt;</description>
    </item>
    <item>
      <title>GDAL/OGR - Automated Geodata Processing</title>
      <link>https://jakobmiksch.eu/post/gdal_ogr/</link>
      <pubDate>Fri, 20 Sep 2019 00:00:00 +0000</pubDate>
      <guid>https://jakobmiksch.eu/post/gdal_ogr/</guid>
      <description>&lt;p&gt;This blogpost gives in an introduction to &lt;a href=&#34;https://gdal.org/&#34;&gt;GDAL/OGR&lt;/a&gt; and explains how the various command line tools can be used.&lt;/p&gt;&#xA;&lt;figure&gt;&lt;img src=&#34;https://jakobmiksch.eu/img/gdal_ogr/gdal_icon.png&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;p&gt;GDAL/OGR is a library that can read many different &lt;a href=&#34;https://gdal.org/drivers/vector/index.html&#34;&gt;vector&lt;/a&gt; and &lt;a href=&#34;https://gdal.org/drivers/raster/index.html&#34;&gt;raster&lt;/a&gt; formats. It is written in C/C++ and is published under a &lt;a href=&#34;https://github.com/osgeo/gdal&#34;&gt;Open Source&lt;/a&gt; licence. It can also be accessed with other programming languages like Python or R. There are numerous programs for the command line which will be described in more detail in this blog post.&lt;/p&gt;</description>
    </item>
    <item>
      <title>The OpenStreetMap Ecosystem</title>
      <link>https://jakobmiksch.eu/post/openstreetmap_overview/</link>
      <pubDate>Fri, 26 Oct 2018 14:15:09 +0100</pubDate>
      <guid>https://jakobmiksch.eu/post/openstreetmap_overview/</guid>
      <description>&lt;p&gt;OpenStreetMap (OSM) is a project that aims to create a common database for geodata. The data can be displayed on a map, but that is by far not its only purpose. Within the past years an ecosystem of programs, services and tools has evolved around OSM. This blog post explains the basic concepts of OpenStreetMap and gives an overview how to view, edit, download and process the data.&lt;/p&gt;&#xA;&lt;p&gt;You can also watch this presentation which covers the same topic.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Route Planning with OpenStreetMap</title>
      <link>https://jakobmiksch.eu/post/openstreetmap_routing/</link>
      <pubDate>Mon, 22 Jan 2018 12:15:09 +0100</pubDate>
      <guid>https://jakobmiksch.eu/post/openstreetmap_routing/</guid>
      <description>&lt;p&gt;This blog post gives an overview of how to perform route planning :running: :bike: :car: with&#xA;&lt;a href=&#34;https://openstreetmap.org&#34;&gt;OpenStreetMap&lt;/a&gt; (OSM) data. In beginning, some basics about route planning will be explained. Afterwards, the routing engines &lt;a href=&#34;https://github.com/graphhopper/graphhopper&#34;&gt;GraphHopper&lt;/a&gt;, &lt;a href=&#34;http://pgrouting.org/&#34;&gt;pgRouting&lt;/a&gt; and the routing web service &lt;a href=&#34;https://openrouteservice.org/&#34;&gt;OpenRouteService&lt;/a&gt; will be described in more detail.&lt;/p&gt;&#xA;&lt;p&gt;OpenStreetMap is perfectly suited for route planning applications because the data quality of the street network is usually very satisfying. This has two reasons: Streets can easily be mapped from satellite imagery and GPS-tracks. Moreover, errors can be discovered quickly because they cause unrealistic routing results.&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://jakobmiksch.eu/links/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://jakobmiksch.eu/links/</guid>
      <description>&lt;h1 id=&#34;links&#34;&gt;Links&lt;/h1&gt;&#xA;&lt;p&gt;Useful ressources about geospatial development, programming in general and GIS:&lt;/p&gt;&#xA;&lt;h2 id=&#34;-videos&#34;&gt;🎥 Videos&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.youtube.com/watch?v=meUeOvxy-iE&#34;&gt;Artificial Intelligence in GIS&lt;/a&gt; by Tobin Bradley: &lt;br&gt;&#xA;short and entertaining introduction to AI with focus on GeoSpatial&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;-data&#34;&gt;📊 Data&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://visibleearth.nasa.gov/images/147190/explorer-base-map&#34;&gt;Explorer basemap&lt;/a&gt; &lt;br&gt;&#xA;Nicely designed GeoTIFF of the whole world without borders&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;-articles&#34;&gt;📄 Articles&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://medium.com/@Spatial_Impressionism/full-stack-geographer-9b1f3ccc2bcc&#34;&gt;Full Stack Geographer&lt;/a&gt; by Todd Barr: &lt;br&gt;&#xA;summary about skills a GIS-person should know nowadays&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://medium.com/@volayaf/skills-needed-to-become-a-gis-professional-3cc3a44fd635&#34;&gt;Skills needed to become a GIS Professional&lt;/a&gt; by Victor Olaya: &lt;br&gt;&#xA;similar as article before, but with different focus&lt;/p&gt;</description>
    </item>
    <item>
      <title></title>
      <link>https://jakobmiksch.eu/talks/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://jakobmiksch.eu/talks/</guid>
      <description>&lt;h1 id=&#34;talks&#34;&gt;Talks&lt;/h1&gt;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  &#xA;  &#xA;    &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;    &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;    &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;    &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;    &#xA;  &#xA;&#xA;  &#xA;  &#xA;&#xA;  &#xA;  &#xA;    &#xA;  &#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;&lt;h2&gt;2025&lt;/h2&gt;&#xA;&lt;ul style=&#34;list-style: none; padding: 0; margin: 0;&#34;&gt;&#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;Datenbankschema mit Mermaid visualisieren&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS-Konferenz, Münster&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2025/talk/H33WMC/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://pretalx.com/media/fossgis2025/submissions/H33WMC/resources/DB_Mermaid_Hs43siJ.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://media.ccc.de/v/fossgis2025-57633-datenbankschema-mit-mermaid-visualisieren&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;GDI per Knopfdruck: Automatisierung mit DevOps und Infrastruktur als Code &lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS-Konferenz, Münster&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2025/talk/M79NLD/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://pretalx.com/media/fossgis2025/submissions/M79NLD/resources/GDI_per_Knopfd_ACPX8Kl.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://media.ccc.de/v/fossgis2025-57638-gdi-per-knopfdruck-automatisierung-mit-devops-und-infrastruktur-als-code&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;&lt;/ul&gt;&#xA;&#xA;&#xA;&lt;h2&gt;2024&lt;/h2&gt;&#xA;&lt;ul style=&#34;list-style: none; padding: 0; margin: 0;&#34;&gt;&#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;          &#xA;          &lt;strong&gt;pg_featureserv - Publication of vector data with OGC API features&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSS4G Europe, Tartu&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://talks.osgeo.org/foss4g-europe-2024/talk/FMDZFK/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://talks.osgeo.org/media/foss4g-europe-2024/submissions/FMDZFK/resources/2024-06-03_pg_featureserv_gnXAP1N.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://av.tib.eu/media/68512&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;          &#xA;          &lt;strong&gt;OpenLayers and Vue&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSS4G Europe, Tartu&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://talks.osgeo.org/foss4g-europe-2024/talk/ZRAMQR/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://talks.osgeo.org/media/foss4g-europe-2024/submissions/ZRAMQR/resources/2024-06-05_openlayers_vue_QnRksCK.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://av.tib.eu/media/68507&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;          &#xA;          &lt;strong&gt;DuckDB with Geodata&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSS4G Europe, Tartu&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://talks.osgeo.org/foss4g-europe-2024/talk/KNBMGH/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://talks.osgeo.org/media/foss4g-europe-2024/submissions/KNBMGH/resources/2024-06-05_duck_db_mMHgRYO.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://av.tib.eu/media/68453&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;          &#xA;          &lt;strong&gt;Random Geodata Generator&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSS4G Europe, Tartu&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://talks.osgeo.org/foss4g-europe-2024/talk/WGQQNF/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://talks.osgeo.org/media/foss4g-europe-2024/submissions/WGQQNF/resources/2024-06-04_random_geodata_GoXJMdx.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://av.tib.eu/media/68528&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;          &#xA;          &lt;strong&gt;Geospatial Go&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSS4G Europe, Tartu&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://talks.osgeo.org/foss4g-europe-2024/talk/B77FJF/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://talks.osgeo.org/media/foss4g-europe-2024/submissions/B77FJF/resources/2024-06-04_geospatial_go_fPtAasr.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://av.tib.eu/media/68477&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;          &#xA;          &lt;strong&gt;QGIS Server in an enterprise environment&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSS4G Europe, Tartu&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://talks.osgeo.org/foss4g-europe-2024/talk/XN7BPG/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://talks.osgeo.org/media/foss4g-europe-2024/submissions/XN7BPG/resources/2024-06-03_qgis-server_pwRxWCt.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://av.tib.eu/media/68526&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;osm2pgsql - OSM Daten mit PostGIS verarbeiten&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS-Konferenz, Hamburg&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2024/talk/9QUB7F/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://pretalx.com/media/fossgis2024/submissions/9QUB7F/resources/osm2pgqsql_LXT0b53.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://media.ccc.de/v/fossgis2024-38344-osm2pgsql-osm-daten-mit-postgis-verarbeiten/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;QGIS Server - Einsatz im Unternehmen&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS-Konferenz, Hamburg&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2024/talk/HEED8U/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://pretalx.com/media/fossgis2024/submissions/HEED8U/resources/qgis_server_uqGgBIW.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://media.ccc.de/v/fossgis2024-38717-qgis-server-einsatz-im-unternehmen&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;Geodaten mit DuckDB verarbeiten&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS-Konferenz, Hamburg&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2024/talk/MQDUEW/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://pretalx.com/media/fossgis2024/submissions/MQDUEW/resources/duck_db_APrdDiJ.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://media.ccc.de/v/fossgis2024-39031-geodaten-mit-duckdb-verarbeiten&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;GIS mit Go&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS-Konferenz, Hamburg&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2024/talk/NUQXXH/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://pretalx.com/media/fossgis2024/submissions/NUQXXH/resources/geospatial_go_YJdvwjh.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://media.ccc.de/v/fossgis2024-38600-gis-mit-go&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;pg_featureserv - Veröffentlichung von Vektordaten mit OGC API Features&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS-Konferenz, Hamburg&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2024/talk/VKNTPT/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://pretalx.com/media/fossgis2024/submissions/VKNTPT/resources/pg_featureserv_ZYdutRH.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://media.ccc.de/v/fossgis2024-38343-pgfeatureserv-verffentlichung-von-vektordaten-mit-ogc-api-features&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;&lt;/ul&gt;&#xA;&#xA;&#xA;&lt;h2&gt;2022&lt;/h2&gt;&#xA;&lt;ul style=&#34;list-style: none; padding: 0; margin: 0;&#34;&gt;&#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;Web-APIs für geographische Anwendungen - Ein Überblick&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS-Konferenz, (remote)&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2022/talk/TQVEL3/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://meggsimum.github.io/fossgis2022/geo-api/#/start&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://media.ccc.de/v/fossgis2022-14040-web-apis-fr-geographische-anwendungen-ein-berblick&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;Webmaps einfach erstellen mit Wegue (OpenLayers und Vue.js)&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS-Konferenz, (remote)&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2022/talk/7CQQMY/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;          &#xA;          &#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;&lt;/ul&gt;&#xA;&#xA;&#xA;&lt;h2&gt;2021&lt;/h2&gt;&#xA;&lt;ul style=&#34;list-style: none; padding: 0; margin: 0;&#34;&gt;&#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;Webmaps effizient mit Wegue erstellen&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS-Konferenz, (remote)&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2021/talk/VV3TWT/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://pretalx.com/media/fossgis2021/submissions/VV3TWT/resources/wegue-demo_MHyYaQw.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://media.ccc.de/v/fossgis2021-8956-webmaps-effizient-mit-wegue-erstellen&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;GIS mit der Kommandozeile&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS, (remote)&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2021/talk/3EPZ3W/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://pretalx.com/media/fossgis2021/submissions/3EPZ3W/resources/gis-kommandozeile_yFVlGaW.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://media.ccc.de/v/fossgis2021-8940-gis-mit-der-kommandozeile&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;Wer hat an der Uhr gedreht? - Zeitbasierte Geodaten modellieren, abfragen und visualisieren&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS-Konferenz, (remote)&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2021/talk/YQYWVB/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://pretalx.com/media/fossgis2021/submissions/YQYWVB/resources/zeitbasierte-geodaten_nYUUk6e.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://media.ccc.de/v/fossgis2021-8914-wer-hat-an-der-uhr-gedreht-zeitbasierte-geodaten-modellieren-abfragen-und-visualisieren&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;          &#xA;          &lt;strong&gt;Web APIs for geospatial applications&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          lecture, University of Salzburg, (remote)&#xA;          &#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://jakobmiksch.eu/talks/geo_api&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;          &#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;&lt;/ul&gt;&#xA;&#xA;&#xA;&lt;h2&gt;2020&lt;/h2&gt;&#xA;&lt;ul style=&#34;list-style: none; padding: 0; margin: 0;&#34;&gt;&#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;Einführung zu GDAL/OGR: Geodaten mit der Kommandozeile verarbeiten&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS-Konferenz, Freiburg&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2020/talk/339AY9/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://jakobmiksch.eu/talks/gdal_ogr&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://media.ccc.de/v/fossgis2020-2853-einfhrung-zu-gdal-ogr-geodaten-mit-der-kommandozeile-verarbeiten&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;&lt;/ul&gt;&#xA;&#xA;&#xA;&lt;h2&gt;2019&lt;/h2&gt;&#xA;&lt;ul style=&#34;list-style: none; padding: 0; margin: 0;&#34;&gt;&#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;  &#xA;    &#xA;    &#xA;      &lt;li style=&#34;margin-bottom: 1.5em;&#34;&gt;&#xA;        &lt;div&gt;&#xA;           (&lt;i&gt;de&lt;/i&gt;) &#xA;          &lt;strong&gt;Malawi Atlas - eine SDI mit PostGIS, GeoServer und GeoExt&lt;/strong&gt;&#xA;        &lt;/div&gt;&#xA;        &lt;div&gt;&#xA;          FOSSGIS-Konferenz, Dresden&#xA;           &lt;a title=&#34;info&#34; href=&#34;https://pretalx.com/fossgis2019/talk/9AJUNL/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ⓘ&lt;/a&gt;&#xA;           &lt;a title=&#34;slides&#34; href=&#34;https://pretalx.com/media/fossgis2019/submissions/9AJUNL/resources/2019-03-12_Malawi-Atlas_FOSSGIS_Jakob-Miksch.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;📑&lt;/a&gt;&#xA;           &lt;a title=&#34;video&#34; href=&#34;https://media.ccc.de/v/fossgis2019-439-malawi-atlas-eine-sdi-mit-postgis-geoserver-und-geoext/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;🎬&lt;/a&gt;&#xA;        &lt;/div&gt;&#xA;      &lt;/li&gt;&#xA;    &#xA;  &#xA;&lt;/ul&gt;&#xA;&#xA;&#xA;&lt;style&gt;&#xA;  a:link {&#xA;    background: none;&#xA;  }&#xA;&lt;/style&gt;</description>
    </item>
    <item>
      <title>Imprint</title>
      <link>https://jakobmiksch.eu/imprint/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://jakobmiksch.eu/imprint/</guid>
      <description>&lt;p&gt;Jakob Miksch&lt;br&gt;&#xA;Schwalbenweg 43&lt;br&gt;&#xA;69123 Heidelberg &lt;br&gt;&#xA;E-Mail: &lt;!-- raw HTML omitted --&gt;&lt;a href=&#34;mailto:info@jakobmiksch.eu&#34;&gt;info@jakobmiksch.eu&lt;/a&gt;&lt;!-- raw HTML omitted --&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;angaben-gemäß--5-tmg&#34;&gt;Angaben gemäß § 5 TMG&lt;/h2&gt;&#xA;&lt;p&gt;Jakob Miksch&lt;br&gt;&#xA;Schwalbenweg 43&lt;br&gt;&#xA;69123 Heidelberg&lt;/p&gt;&#xA;&lt;h2 id=&#34;kontakt&#34;&gt;Kontakt&lt;/h2&gt;&#xA;&lt;p&gt;E-Mail: &lt;!-- raw HTML omitted --&gt;&lt;a href=&#34;mailto:info@jakobmiksch.eu&#34;&gt;info@jakobmiksch.eu&lt;/a&gt;&lt;!-- raw HTML omitted --&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;redaktionell-verantwortlich&#34;&gt;Redaktionell verantwortlich&lt;/h2&gt;&#xA;&lt;p&gt;Jakob Miksch&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;Quelle: &lt;a href=&#34;https://www.e-recht24.de/impressum-generator.html&#34;&gt;https://www.e-recht24.de/impressum-generator.html&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
