<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Home | David Dewes</title><link>https://david-dewes.de/</link><atom:link href="https://david-dewes.de/index.xml" rel="self" type="application/rss+xml"/><description>Home</description><generator>HugoBlox Kit (https://hugoblox.com)</generator><language>en-us</language><lastBuildDate>Mon, 16 Mar 2026 00:00:00 +0000</lastBuildDate><image><url>https://david-dewes.de/media/icon_hu_da05098ef60dc2e7.png</url><title>Home</title><link>https://david-dewes.de/</link></image><item><title>My First Presentation</title><link>https://david-dewes.de/slides/example/</link><pubDate>Mon, 23 Mar 2026 00:00:00 +0000</pubDate><guid>https://david-dewes.de/slides/example/</guid><description>&lt;h1 id="my-first-presentation"&gt;My First Presentation&lt;/h1&gt;
&lt;h3 id="your-name--your-organization"&gt;Your Name · Your Organization&lt;/h3&gt;
&lt;hr&gt;
&lt;h2 id="overview"&gt;Overview&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;First point&lt;/li&gt;
&lt;li&gt;Second point&lt;/li&gt;
&lt;li&gt;Third point&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;section&gt;
&lt;p&gt;Horizontal Slide&lt;/p&gt;
&lt;/section&gt;
&lt;section&gt;
&lt;h2 id="slide-2"&gt;Slide 2&lt;/h2&gt;
$$
\nabla \times \vec{E} = -\frac{\partial \vec{B}}{\partial t}
$$&lt;/section&gt;
&lt;section&gt;
&lt;h2 id="slide-3"&gt;Slide 3&lt;/h2&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-python" data-lang="python"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;calculate_accuracy&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;y_true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;y_pred&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="n"&gt;correct&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;sum&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;pred&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="nb"&gt;zip&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;y_true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;y_pred&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;true&lt;/span&gt; &lt;span class="o"&gt;==&lt;/span&gt; &lt;span class="n"&gt;pred&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="n"&gt;correct&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="nb"&gt;len&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;y_true&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mi"&gt;100&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/section&gt;
&lt;hr&gt;
&lt;h2 id="math"&gt;Math!&lt;/h2&gt;
$$
\nabla \times \vec{E} = -\frac{\partial \vec{B}}{\partial t}
$$&lt;hr&gt;
&lt;h2 id="code"&gt;Code!&lt;/h2&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-python" data-lang="python"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;calculate_accuracy&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;y_true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;y_pred&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="n"&gt;correct&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;sum&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;pred&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="nb"&gt;zip&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;y_true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;y_pred&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;true&lt;/span&gt; &lt;span class="o"&gt;==&lt;/span&gt; &lt;span class="n"&gt;pred&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="n"&gt;correct&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="nb"&gt;len&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;y_true&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mi"&gt;100&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;hr&gt;
&lt;h2 id="dual-columns"&gt;Dual Columns!&lt;/h2&gt;
&lt;h3 id="comparison"&gt;Comparison&lt;/h3&gt;
&lt;div class="r-hstack"&gt;
&lt;div&gt;
&lt;h4 id="before"&gt;Before&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Slow: 2.5s&lt;/li&gt;
&lt;li&gt;Memory: 4GB&lt;/li&gt;
&lt;li&gt;Cost: $100/mo&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;h4 id="after"&gt;After&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Fast: 0.3s ✅&lt;/li&gt;
&lt;li&gt;Memory: 512MB ✅&lt;/li&gt;
&lt;li&gt;Cost: $15/mo ✅&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;hr&gt;
&lt;h2 id="conclusion"&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;Thank you for your attention!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Questions?&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>Cookies Policy</title><link>https://david-dewes.de/cookies/</link><pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate><guid>https://david-dewes.de/cookies/</guid><description>&lt;p&gt;&lt;strong&gt;Effective Date&lt;/strong&gt;: 20.03.2026&lt;/p&gt;
&lt;p&gt;This Cookies Policy explains what Cookies are and how I use them. You should read this policy so You can understand what type of cookies I use, or the information I collect using Cookies and how that information is used. This Cookies Policy has been created with the help of the &lt;a href="https://www.termsfeed.com/cookies-policy-generator/" target="_blank" rel="noopener"&gt;Cookies Policy Generator&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Cookies do not typically contain any information that personally identifies a user, but personal information that I store about You may be linked to the information stored in and obtained from Cookies. For further information on how I use, store and keep your personal data secure, see my Privacy Policy, if and when I make it available within the Website or on my website.&lt;/p&gt;
&lt;p&gt;I do not store sensitive personal information, such as mailing addresses, account passwords, etc. in the Cookies I use.&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id="interpretation-and-definitions"&gt;Interpretation and Definitions&lt;/h2&gt;
&lt;h3 id="interpretation"&gt;Interpretation&lt;/h3&gt;
&lt;p&gt;The words whose initial letters are capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural.&lt;/p&gt;
&lt;h3 id="definitions"&gt;Definitions&lt;/h3&gt;
&lt;p&gt;For the purposes of this Cookies Policy:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Company&lt;/strong&gt; (referred to as either &amp;ldquo;the Company&amp;rdquo;, &amp;ldquo;I&amp;rdquo;, &amp;ldquo;Me&amp;rdquo; or &amp;ldquo;My&amp;rdquo; in this Cookies Policy) refers to My Blog.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cookies&lt;/strong&gt; means small files that are placed on Your computer, mobile device or any other device by a website, containing details of your browsing history on that website among its many uses.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Local Storage&lt;/strong&gt; means a web storage mechanism that allows a website to store data persistently in Your browser with no expiration date. Unlike Cookies, data stored in Local Storage is never transferred to the server and remains on Your device until explicitly cleared by You or the Website.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Website&lt;/strong&gt; refers to My Blog, accessible from &lt;a href="https://david-dewes.de" target="_blank" rel="noopener"&gt;https://david-dewes.de&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;You&lt;/strong&gt; means the individual accessing or using the Website, or a company, or any legal entity on behalf of which such individual is accessing or using the Website, as applicable.&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h2 id="the-use-of-cookies"&gt;The Use of Cookies&lt;/h2&gt;
&lt;h3 id="type-of-cookies-i-use"&gt;Type of Cookies I Use&lt;/h3&gt;
&lt;p&gt;Cookies can be &amp;ldquo;Persistent&amp;rdquo; or &amp;ldquo;Session&amp;rdquo; Cookies. Persistent Cookies remain on your personal computer or mobile device when You go offline, while Session Cookies are deleted as soon as You close your web browser.&lt;/p&gt;
&lt;p&gt;Where required by law, I will request your consent before using Cookies that are not strictly necessary. Strictly necessary Cookies are used to provide the Website and cannot be switched off in my systems.&lt;/p&gt;
&lt;p&gt;I use (or could use in the future) both session and persistent Cookies for the purposes set out below:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Necessary / Essential Cookies&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Type: Session Cookies&lt;/li&gt;
&lt;li&gt;Administered by: Me&lt;/li&gt;
&lt;li&gt;Purpose: These Cookies are essential to provide You with services available through the Website and to enable You to use some of its features. They help to authenticate users and prevent fraudulent use of user accounts. Without these Cookies, the services that You have asked for cannot be provided, and I only use these Cookies to provide You with those services.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Functionality Cookies&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Type: Persistent Cookies&lt;/li&gt;
&lt;li&gt;Administered by: Me&lt;/li&gt;
&lt;li&gt;Purpose: These Cookies allow Me to remember choices You make when You use the Website, such as remembering your login details or language preference. The purpose of these Cookies is to provide You with a more personal experience and to avoid You having to re-enter your preferences every time You use the Website.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Additionally&lt;/strong&gt;, Your browser also makes use of Local Storage to remember Your personal preferences (i.e. site theme). As explained above, this data is stored locally and is never transferred to the server.&lt;/p&gt;
&lt;h3 id="your-choices-regarding-cookies"&gt;Your Choices Regarding Cookies&lt;/h3&gt;
&lt;p&gt;If You prefer to avoid the use of Cookies on the Website, first You must disable the use of Cookies in your browser and then delete the Cookies saved in your browser associated with the Website. You may use this option for preventing the use of Cookies at any time.&lt;/p&gt;
&lt;p&gt;If You do not accept My Cookies, You may experience some inconvenience in your use of the Website and some features may not function properly.&lt;/p&gt;
&lt;p&gt;If You&amp;rsquo;d like to delete Cookies or instruct your web browser to delete or refuse Cookies, please visit the help pages of your web browser.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;For the &lt;strong&gt;Chrome&lt;/strong&gt; web browser: &lt;a href="https://support.google.com/accounts/answer/32050" target="_blank" rel="noopener"&gt;https://support.google.com/accounts/answer/32050&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;For the &lt;strong&gt;Microsoft Edge&lt;/strong&gt; browser: &lt;a href="https://support.microsoft.com/microsoft-edge/delete-cookies-in-microsoft-edge-63947406-40ac-c3b8-57b9-2a946a29ae09" target="_blank" rel="noopener"&gt;https://support.microsoft.com/microsoft-edge/delete-cookies-in-microsoft-edge-63947406-40ac-c3b8-57b9-2a946a29ae09&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;For the &lt;strong&gt;Firefox&lt;/strong&gt; web browser: &lt;a href="https://support.mozilla.org/en-US/kb/delete-cookies-remove-info-websites-stored" target="_blank" rel="noopener"&gt;https://support.mozilla.org/en-US/kb/delete-cookies-remove-info-websites-stored&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;For the &lt;strong&gt;Safari&lt;/strong&gt; web browser: &lt;a href="https://support.apple.com/guide/safari/manage-cookies-and-website-data-sfri11471/mac" target="_blank" rel="noopener"&gt;https://support.apple.com/guide/safari/manage-cookies-and-website-data-sfri11471/mac&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For any other web browser, please visit your web browser&amp;rsquo;s official web pages.&lt;/p&gt;
&lt;h3 id="changes-to-this-cookies-policy"&gt;Changes to this Cookies Policy&lt;/h3&gt;
&lt;p&gt;I may update this Cookies Policy from time to time. The &amp;ldquo;Last updated&amp;rdquo; date at the top indicates when it was last revised.&lt;/p&gt;
&lt;h3 id="contact-me"&gt;Contact Me&lt;/h3&gt;
&lt;p&gt;If you have any questions about this Cookies Policy, You can contact me:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;By email: &lt;button onclick="(function(){var p1='hello',p2='david-dewes',p3='de',addr=p1+'@'+p2+'.'+p3;navigator.clipboard.writeText(addr).then(function(){var b=document.getElementById('copy-btn');b.innerHTML='&lt;svg xmlns=\'http:\/\/www.w3.org/2000/svg\' fill=\'none\' viewBox=\'0 0 24 24\' stroke-width=\'1.5\' stroke=\'currentColor\' style=\'width:20px;height:20px;flex-shrink:0;\'&gt;&lt;path stroke-linecap=\'round\' stroke-linejoin=\'round\' d=\'M4.5 12.75l6 6 9-13.5\'/&gt;&lt;/svg&gt;&lt;span style=\'white-space:nowrap;\'&gt;Copied!&lt;/span&gt;';setTimeout(function(){b.innerHTML=originalHTML},2000)});var originalHTML=document.getElementById('copy-btn').innerHTML})()" id="copy-btn" rel="noopener" style="text-decoration:none; display:inline-flex; flex-direction:row; align-items:center; gap:8px; white-space:nowrap; cursor:pointer;" class="px-4 py-2 text-sm font-medium text-gray-900 bg-white border border-gray-200 rounded-lg transition-colors hover:bg-gray-100 hover:text-gray-900 focus:z-10 focus:ring-4 focus:outline-none focus:ring-gray-200 focus:text-gray-900 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700 dark:focus:text-white dark:focus:ring-gray-700"&gt;
&lt;svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" style="width:20px; height:20px; flex-shrink:0;"&gt;&lt;path stroke-linecap="round" stroke-linejoin="round" d="M15.666 3.888A2.25 2.25 0 0 0 13.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0c.055.194.084.4.084.612v0a.75.75 0 0 1-.75.75H9a.75.75 0 0 1-.75-.75v0c0-.212.03-.418.084-.612m7.332 0c.646.049 1.288.11 1.927.184 1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 0 1-2.25 2.25H6.75A2.25 2.25 0 0 1 4.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48.208 48.208 0 0 1 1.927-.184" /&gt;&lt;/svg&gt;&lt;span style="white-space:nowrap;"&gt;Copy E-Mail&lt;/span&gt;
&lt;/button&gt;&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Privacy Policy</title><link>https://david-dewes.de/privacy/</link><pubDate>Tue, 17 Mar 2026 00:00:00 +0000</pubDate><guid>https://david-dewes.de/privacy/</guid><description>&lt;p&gt;&lt;strong&gt;Effective Date&lt;/strong&gt;: 17.03.2026&lt;/p&gt;
&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;I am committed to protecting the privacy of the visitors of my website. This privacy policy explains how I collect, use, share, and protect personal information in accordance with the General Data Protection Regulation (GDPR).&lt;/p&gt;
&lt;h2 id="data-controller-and-contact"&gt;Data Controller and Contact&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Data Controller&lt;/strong&gt;: David Dewes&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Address&lt;/strong&gt;: Meerwiesertalweg 4b, 66123 Saarbrücken&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Email&lt;/strong&gt;: &lt;button onclick="(function(){var p1='hello',p2='david-dewes',p3='de',addr=p1+'@'+p2+'.'+p3;navigator.clipboard.writeText(addr).then(function(){var b=document.getElementById('copy-btn');b.innerHTML='&lt;svg xmlns=\'http:\/\/www.w3.org/2000/svg\' fill=\'none\' viewBox=\'0 0 24 24\' stroke-width=\'1.5\' stroke=\'currentColor\' style=\'width:20px;height:20px;flex-shrink:0;\'&gt;&lt;path stroke-linecap=\'round\' stroke-linejoin=\'round\' d=\'M4.5 12.75l6 6 9-13.5\'/&gt;&lt;/svg&gt;&lt;span style=\'white-space:nowrap;\'&gt;Copied!&lt;/span&gt;';setTimeout(function(){b.innerHTML=originalHTML},2000)});var originalHTML=document.getElementById('copy-btn').innerHTML})()" id="copy-btn" rel="noopener" style="text-decoration:none; display:inline-flex; flex-direction:row; align-items:center; gap:8px; white-space:nowrap; cursor:pointer;" class="px-4 py-2 text-sm font-medium text-gray-900 bg-white border border-gray-200 rounded-lg transition-colors hover:bg-gray-100 hover:text-gray-900 focus:z-10 focus:ring-4 focus:outline-none focus:ring-gray-200 focus:text-gray-900 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700 dark:focus:text-white dark:focus:ring-gray-700"&gt;
&lt;svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" style="width:20px; height:20px; flex-shrink:0;"&gt;&lt;path stroke-linecap="round" stroke-linejoin="round" d="M15.666 3.888A2.25 2.25 0 0 0 13.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0c.055.194.084.4.084.612v0a.75.75 0 0 1-.75.75H9a.75.75 0 0 1-.75-.75v0c0-.212.03-.418.084-.612m7.332 0c.646.049 1.288.11 1.927.184 1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 0 1-2.25 2.25H6.75A2.25 2.25 0 0 1 4.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48.208 48.208 0 0 1 1.927-.184" /&gt;&lt;/svg&gt;&lt;span style="white-space:nowrap;"&gt;Copy E-Mail&lt;/span&gt;
&lt;/button&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="liability-for-and-review-of-content"&gt;Liability for and Review of Content&lt;/h2&gt;
&lt;p&gt;My own content is to be distinguished from cross-references, i.e. &lt;em&gt;links&lt;/em&gt;, to websites of other providers. These links only provide access for using third-party content in accordance with Section 7 of the German Digital Services Act (DDG). Prior to providing links to other websites, I review third-party content for potential civil or criminal liability. However, a continuous review of third-party content for changes is not possible and therefore I cannot accept any responsibility. For illegal, incorrect, or incomplete content, including any damage arising from the use or non-use of third-party information, liability rests solely with the provider of the website.&lt;/p&gt;
&lt;h2 id="access-data-"&gt;Access Data ​&lt;/h2&gt;
&lt;p&gt;When you visit the website, data regarding access to the website is stored in log files based on a legitimate interest (see Art. 6(1)(f) of the GDPR). The following data is logged:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Website visited&lt;/li&gt;
&lt;li&gt;Time of access&lt;/li&gt;
&lt;li&gt;Browser used&lt;/li&gt;
&lt;li&gt;Operating system used&lt;/li&gt;
&lt;li&gt;IP address used&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Unless a more specific retention period is stated in this privacy policy, I will retain your personal data until the purpose for which it was collected no longer applies. If you submit a valid request for deletion or revoke your consent to data processing, your data will be deleted unless I have other legally permissible grounds for storing your personal data (e.g., retention periods under tax or commercial law); in the latter case, the data will be deleted once these grounds no longer apply. If data must be retained for evidentiary purposes, it is exempt from deletion until the incident has been definitively resolved.&lt;/p&gt;
&lt;h2 id="handling-of-contact-information-"&gt;Handling of Contact Information ​&lt;/h2&gt;
&lt;p&gt;If you contact me using the contact options provided, your information will be stored so that it can be accessed to process and respond to your inquiry. This data will not be shared with third parties without your consent.&lt;/p&gt;
&lt;h2 id="user-rights-"&gt;User Rights ​&lt;/h2&gt;
&lt;p&gt;As a user, you have the right to request, free of charge, information about what personal data has been stored about you. You also have the right to have incorrect data corrected and to restrict the processing or erasure of your personal data. If applicable, you may also exercise your right to data portability. If you believe that your data has been processed unlawfully, you may file a complaint with the competent supervisory authority.&lt;/p&gt;
&lt;h2 id="right-to-object-"&gt;Right to Object ​&lt;/h2&gt;
&lt;p&gt;Users of this website may exercise their right to object and object to the processing of their personal data at any time. If you wish to request correction, blocking, deletion, or information regarding the personal data stored about you, or if you have questions regarding the collection, processing, or use of your personal data, or if you wish to revoke any consent you have given, please contact us at the email address provided above.&lt;/p&gt;</description></item><item><title>Imprint</title><link>https://david-dewes.de/imprint/</link><pubDate>Mon, 16 Mar 2026 00:00:00 +0000</pubDate><guid>https://david-dewes.de/imprint/</guid><description>&lt;h4 id="mandatory-information-pursuant-to-section-5-of-the-german-digital-services-act-ddg"&gt;Mandatory information pursuant to Section 5 of the German Digital Services Act (DDG)&lt;/h4&gt;
&lt;p&gt;David Dewes&lt;br&gt;
Meerwiesertalweg 4b&lt;br&gt;
66123 Saarbrücken&lt;/p&gt;
&lt;h4 id="contact"&gt;Contact&lt;/h4&gt;
&lt;button onclick="(function(){var p1='hello',p2='david-dewes',p3='de',addr=p1+'@'+p2+'.'+p3;navigator.clipboard.writeText(addr).then(function(){var b=document.getElementById('copy-btn');b.innerHTML='&lt;svg xmlns=\'http:\/\/www.w3.org/2000/svg\' fill=\'none\' viewBox=\'0 0 24 24\' stroke-width=\'1.5\' stroke=\'currentColor\' style=\'width:20px;height:20px;flex-shrink:0;\'&gt;&lt;path stroke-linecap=\'round\' stroke-linejoin=\'round\' d=\'M4.5 12.75l6 6 9-13.5\'/&gt;&lt;/svg&gt;&lt;span style=\'white-space:nowrap;\'&gt;Copied!&lt;/span&gt;';setTimeout(function(){b.innerHTML=originalHTML},2000)});var originalHTML=document.getElementById('copy-btn').innerHTML})()" id="copy-btn" rel="noopener" style="text-decoration:none; display:inline-flex; flex-direction:row; align-items:center; gap:8px; white-space:nowrap; cursor:pointer;" class="px-4 py-2 text-sm font-medium text-gray-900 bg-white border border-gray-200 rounded-lg transition-colors hover:bg-gray-100 hover:text-gray-900 focus:z-10 focus:ring-4 focus:outline-none focus:ring-gray-200 focus:text-gray-900 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-600 dark:hover:text-white dark:hover:bg-gray-700 dark:focus:text-white dark:focus:ring-gray-700"&gt;
&lt;svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" style="width:20px; height:20px; flex-shrink:0;"&gt;&lt;path stroke-linecap="round" stroke-linejoin="round" d="M15.666 3.888A2.25 2.25 0 0 0 13.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0c.055.194.084.4.084.612v0a.75.75 0 0 1-.75.75H9a.75.75 0 0 1-.75-.75v0c0-.212.03-.418.084-.612m7.332 0c.646.049 1.288.11 1.927.184 1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 0 1-2.25 2.25H6.75A2.25 2.25 0 0 1 4.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48.208 48.208 0 0 1 1.927-.184" /&gt;&lt;/svg&gt;&lt;span style="white-space:nowrap;"&gt;Copy E-Mail&lt;/span&gt;
&lt;/button&gt;</description></item></channel></rss>