
Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 235

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 274

Warning: Undefined array key "media" in /volume1/web/wiki/feed.php on line 385
<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://itclive.spdns.de/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>move IT Home Base</title>
        <description></description>
        <link>http://itclive.spdns.de/wiki/</link>
        <lastBuildDate>Mon, 06 Apr 2026 07:40:34 +0000</lastBuildDate>
        <generator>FeedCreator 1.8</generator>
        <image>
            <url>http://itclive.spdns.de/wiki/lib/tpl/peanutbutter2/images/favicon.ico</url>
            <title>move IT Home Base</title>
            <link>http://itclive.spdns.de/wiki/</link>
        </image>
        <item>
            <title>PeerTube - Menu Enhancer</title>
            <link>http://itclive.spdns.de/wiki/anleitungen/software/peertube/peertube_-_menu_enhancer?do=revisions&amp;rev=1659082704</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;peertube_-_menu_enhancer&quot;&gt;PeerTube - Menu Enhancer&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;pre class=&quot;code&quot;&gt;/** === LINKS ===
 * Simple add your links into the MENU_LINKS array following the example format
 * It will be added to the menu in the same order as you defined it
 */

/** === SEPARATOR ===
 * Like our example, use {name: &amp;quot;separator&amp;quot;} to add a separator to the menu
 */

/** === ICONS ===
 * You can use https://css.gg, icons are automatically imported if start with gg-*** (Ex: gg-game).
 * Else, you can use https://fontawesome.com/icons/ or any other custom icon library.
 * Just import the CSS manually.
 **/

// EDIT HERE
var MENU_LINKS = [
    {
        name: &amp;quot;Gaming&amp;quot;,
        url: &amp;quot;/videos/recently-added?languageOneOf=fr&amp;amp;categoryOneOf=7&amp;amp;c=true&amp;amp;s=2&amp;quot;,
        icon: &amp;quot;gg-games&amp;quot;,
    },
    {
        name: &amp;quot;Kid&amp;#039;s&amp;quot;,
        url: &amp;quot;/videos/recently-added?languageOneOf=fr&amp;amp;categoryOneOf=17&amp;amp;c=true&amp;amp;s=2&amp;quot;,
        icon: &amp;quot;gg-girl&amp;quot;,
    },
    { name: &amp;quot;separator&amp;quot; },
    {
        name: &amp;quot;Pewtix - Dicutez de l\&amp;#039;actualité&amp;quot;,
        url: &amp;quot;https://pewtix.com/&amp;quot;,
        target: &amp;quot;_blank&amp;quot;,
        icon: &amp;quot;gg-twitter&amp;quot;
    },
    {
        name: &amp;quot;Pixel - Partagez vos photos&amp;quot;,
        url: &amp;quot;https://pixel.orion-hub.fr/&amp;quot;,
        target: &amp;quot;_blank&amp;quot;,
        icon: &amp;quot;gg-instagram&amp;quot;
    },
    { name: &amp;quot;separator&amp;quot; },
    {
        name: &amp;quot;Liberapay - Faire un Don&amp;quot;,
        url: &amp;quot;https://liberapay.com/bthommy/&amp;quot;,
        target: &amp;quot;_blank&amp;quot;,
        icon: &amp;quot;gg-coffee&amp;quot;
    }
]

// END EDIT -- DO NOT TOUCH AFTER

/**
 * Wait for the DOM to be loaded
 * Then, init the custom menu
 */
window.addEventListener(&amp;quot;DOMContentLoaded&amp;quot;, (event) =&amp;gt; {
    const wait__menuCustomInterval = setInterval(() =&amp;gt; {
        let firstLink = document.querySelectorAll(
            &amp;#039;.menu-block a[href=&amp;quot;/videos/overview&amp;quot;]&amp;#039;
        );
        if (firstLink.length &amp;gt; 0) {
            clearInterval(wait__menuCustomInterval);
            initCustomMenu(firstLink[0]);
        }
    }, 500);
});

/**
 * Init the custom menu
 * @param {HTMLElement} firstLink The first link of the menu
 * @returns {void}
 */
function initCustomMenu(linkTemplate) {
    //Parent node which contains &amp;#039;Videos&amp;#039; title and the 3 links (&amp;#039;Découvrir&amp;#039;, &amp;#039;Tendances&amp;#039;, &amp;#039;Récemment ajoutées&amp;#039;)
    const menuContainer = linkTemplate.parentNode;
    // Define head element
    const head = document.head;

    // Define and ADD custom CSS
    const customCSS = `
        hr {
          background-color: #ccc !important;
        }
        
        a.menu-link i {
          margin-right: 16px;
        }
    `;
    const style = document.createElement(&amp;quot;style&amp;quot;);
    style.type = &amp;quot;text/css&amp;quot;;
    style.appendChild(document.createTextNode(customCSS));
    head.appendChild(style);

    // Define separator
    const separator = document.createElement(&amp;quot;hr&amp;quot;);
    separator.setAttribute(&amp;quot;width&amp;quot;, &amp;quot;80%&amp;quot;);
    separator.setAttribute(&amp;quot;color&amp;quot;, &amp;quot;white&amp;quot;);
    separator.setAttribute(&amp;quot;background-color&amp;quot;, &amp;quot;white&amp;quot;);
    separator.setAttribute(&amp;quot;height&amp;quot;, &amp;quot;1px&amp;quot;);
    separator.setAttribute(&amp;quot;visible&amp;quot;, &amp;quot;true&amp;quot;);

    //Adding links
    MENU_LINKS.forEach((link) =&amp;gt; {
        if (link.name === &amp;quot;separator&amp;quot;) {
            // Adding separator
            menuContainer.appendChild(separator.cloneNode());
        } else {
            // Adding link

            // Manage icon (automatically import if start with gg-*** from https://css.gg)
            let icon = &amp;quot;&amp;quot;;
            if (link.icon.startsWith(&amp;quot;gg-&amp;quot;)) {
                icon = `&amp;lt;i class=&amp;quot;${link.icon}&amp;quot;&amp;gt;&amp;lt;/i&amp;gt;`;
                const ggName = link.icon.replace(&amp;quot;gg-&amp;quot;, &amp;quot;&amp;quot;);

                // Inject css in the head
                const cssLink = document.createElement(&amp;quot;link&amp;quot;);
                cssLink.type = &amp;quot;text/css&amp;quot;;
                cssLink.rel = &amp;quot;stylesheet&amp;quot;;
                cssLink.href = `https://css.gg/${ggName}.css`;
                head.appendChild(cssLink);
            } else {
                icon = `&amp;lt;i class=&amp;quot;${link.icon}&amp;quot;&amp;gt;&amp;lt;/i&amp;gt;`;
            }

            // Create link
            const linkNode = linkTemplate.cloneNode();
            linkNode.setAttribute(&amp;quot;href&amp;quot;, link.url);
            linkNode.setAttribute(&amp;quot;routerLink&amp;quot;, link.url);
            linkNode.setAttribute(&amp;quot;target&amp;quot;, (link.target || &amp;quot;_self&amp;quot;));
            linkNode.innerHTML = icon + &amp;quot; &amp;quot; + link.name;

            // Add link to the menu
            menuContainer.appendChild(linkNode);
        }
    });
}&lt;/pre&gt;

&lt;/div&gt;
</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>anleitungen:software:peertube</category>
            <pubDate>Fri, 29 Jul 2022 10:18:24 +0000</pubDate>
        </item>
        <item>
            <title>Raspberry Pi</title>
            <link>http://itclive.spdns.de/wiki/anleitungen/raspberry?do=revisions&amp;rev=1632820966</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;raspberry_pi&quot;&gt;Raspberry Pi&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
&lt;img src=&quot;http://itclive.spdns.de/wiki/_media/anleitungen/raspberry-pi-4-computer.png?w=400&amp;amp;tok=589e7b&quot; class=&quot;medialeft&quot; align=&quot;left&quot; loading=&quot;lazy&quot; alt=&quot;&quot; width=&quot;400&quot; /&gt; Seit dem 24.12.2019 (Weihnachtsgeschenk) ist ein Raspberry Pi 4, Modell B bei uns im Einsatz. Aus diesem Grund gibt es hier eine Sammlung von Links, Hilfe, &lt;abbr title=&quot;Frequently Asked Questions&quot;&gt;FAQ&lt;/abbr&gt; usw.
&lt;/p&gt;

&lt;p&gt;
Ein Raspberry Pi ist ein sogenannter Einplatinen Micro-Computer in der Größe einer Scheckkarte. Alle zum Betrieb nötigen elektronischen Komponenten, bis auf das Netzteil, befinden sich auf einer einzigen Leiterplatte. Seinen Namen Raspberry (Himbeere) hat der Mini-Computer von der britischen Raspberry Pi Foundation, die ihn entwickelt hat.
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Raspberry Pi&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;raspberry_pi&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:1,&amp;quot;range&amp;quot;:&amp;quot;1-598&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit2&quot; id=&quot;links&quot;&gt;Links&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://de.wikipedia.org/wiki/Raspberry_Pi&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://de.wikipedia.org/wiki/Raspberry_Pi&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://de.wikipedia.org/wiki/Raspberry_Pi&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Links&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;links&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:2,&amp;quot;range&amp;quot;:&amp;quot;599-665&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit3&quot; id=&quot;raspberry_pi_foren&quot;&gt;Raspberry Pi Foren&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://forum-raspberrypi.de/forum/board/154-raspberry-pi-4&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://forum-raspberrypi.de/forum/board/154-raspberry-pi-4&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://forum-raspberrypi.de/forum/board/154-raspberry-pi-4&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Raspberry Pi Foren&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;raspberry_pi_foren&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:3,&amp;quot;range&amp;quot;:&amp;quot;666-762&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit4&quot; id=&quot;raspberry_pi_hilfe&quot;&gt;Raspberry Pi Hilfe&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Raspberry Pi Hilfe&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;raspberry_pi_hilfe&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:4,&amp;quot;range&amp;quot;:&amp;quot;763-794&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit5&quot; id=&quot;lueftermontage&quot;&gt;Lüftermontage&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://willy-tech.de/raspberry-pi-3-aktive-kuehlung&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://willy-tech.de/raspberry-pi-3-aktive-kuehlung&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://willy-tech.de/raspberry-pi-3-aktive-kuehlung&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;L\u00fcftermontage&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;lueftermontage&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:5,&amp;quot;range&amp;quot;:&amp;quot;795-878&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit6&quot; id=&quot;herunterfahren_und_ausschalten&quot;&gt;Herunterfahren und ausschalten&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.gieseke-buch.de/raspberrypi/richtig-ausschalten-neustarten&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.gieseke-buch.de/raspberrypi/richtig-ausschalten-neustarten&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.gieseke-buch.de/raspberrypi/richtig-ausschalten-neustarten&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Herunterfahren und ausschalten&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;herunterfahren_und_ausschalten&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:6,&amp;quot;range&amp;quot;:&amp;quot;879-996&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit7&quot; id=&quot;luefter_laeuft_nach_dem_herunterfahren_weiter&quot;&gt;Lüfter läuft nach dem Herunterfahren weiter&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://forum-raspberrypi.de/forum/thread/45459-trotz-shutdown-h-now-laeuft-ventilator-weiter&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://forum-raspberrypi.de/forum/thread/45459-trotz-shutdown-h-now-laeuft-ventilator-weiter&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://forum-raspberrypi.de/forum/thread/45459-trotz-shutdown-h-now-laeuft-ventilator-weiter&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;L\u00fcfter l\u00e4uft nach dem Herunterfahren weiter&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;luefter_laeuft_nach_dem_herunterfahren_weiter&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:7,&amp;quot;range&amp;quot;:&amp;quot;997-1152&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit8&quot; id=&quot;raspberry_pi_videos&quot;&gt;Raspberry Pi Videos&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Raspberry Pi Videos&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;raspberry_pi_videos&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:8,&amp;quot;range&amp;quot;:&amp;quot;1153-1185&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit9&quot; id=&quot;ersteinrichtung&quot;&gt;Ersteinrichtung&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.youtube.com/watch?v=wL4G4YsB_tU&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.youtube.com/watch?v=wL4G4YsB_tU&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=wL4G4YsB_tU&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.youtube.com/watch?v=Dev1qvhp0vM&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.youtube.com/watch?v=Dev1qvhp0vM&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=Dev1qvhp0vM&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.youtube.com/watch?v=8KWsoM4Vg1Q&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.youtube.com/watch?v=8KWsoM4Vg1Q&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=8KWsoM4Vg1Q&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.youtube.com/watch?v=aV6cQ226wak&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.youtube.com/watch?v=aV6cQ226wak&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=aV6cQ226wak&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.youtube.com/watch?v=ftnn62UJgyo&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.youtube.com/watch?v=ftnn62UJgyo&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=ftnn62UJgyo&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.youtube.com/watch?v=mrOUPnOyEX4&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.youtube.com/watch?v=mrOUPnOyEX4&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=mrOUPnOyEX4&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.youtube.com/watch?v=FioQCr9x38g&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.youtube.com/watch?v=FioQCr9x38g&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=FioQCr9x38g&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.youtube.com/watch?v=kQMqoaLHrBc&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.youtube.com/watch?v=kQMqoaLHrBc&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=kQMqoaLHrBc&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.jeffgeerling.com/blog/2019/raspberry-pi-4-needs-fan-heres-why-and-how-you-can-add-one&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.jeffgeerling.com/blog/2019/raspberry-pi-4-needs-fan-heres-why-and-how-you-can-add-one&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.jeffgeerling.com/blog/2019/raspberry-pi-4-needs-fan-heres-why-and-how-you-can-add-one&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.youtube.com/channel/UCScf3BTEmcQp5wM23vtfRpA&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.youtube.com/channel/UCScf3BTEmcQp5wM23vtfRpA&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.youtube.com/channel/UCScf3BTEmcQp5wM23vtfRpA&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Ersteinrichtung&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;ersteinrichtung&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:9,&amp;quot;range&amp;quot;:&amp;quot;1186-1760&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit10&quot; id=&quot;projekte&quot;&gt;Projekte&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.youtube.com/watch?v=bddgn69hq0c&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.youtube.com/watch?v=bddgn69hq0c&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=bddgn69hq0c&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.youtube.com/watch?v=eOyboGp733g&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.youtube.com/watch?v=eOyboGp733g&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=eOyboGp733g&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.youtube.com/watch?v=jM825MPBQrk&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.youtube.com/watch?v=jM825MPBQrk&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=jM825MPBQrk&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Projekte&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;projekte&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:10,&amp;quot;range&amp;quot;:&amp;quot;1761-1925&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit11&quot; id=&quot;interessantes&quot;&gt;Interessantes&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.youtube.com/watch?v=pLXd5YfGbrI&quot; class=&quot;urlextern&quot; target=&quot;_blank&quot; title=&quot;https://www.youtube.com/watch?v=pLXd5YfGbrI&quot; rel=&quot;ugc nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=pLXd5YfGbrI&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
&lt;div class=&quot;plugin_nspages&quot;&gt;&lt;p class=&quot;catpageheadline&quot;&gt;Unternamensraum:&lt;/p&gt;
&lt;p&gt;
Keine Unternamensräume.
&lt;/p&gt;
&lt;p class=&quot;catpageheadline&quot;&gt;Seiten in diesem Namensraum:&lt;/p&gt;
&lt;div class=&quot;catpagecol&quot; style=&quot;width: 33.333333333333%&quot; &gt;&lt;div class=&quot;catpagechars&quot;&gt;O&lt;/div&gt;
&lt;ul class=&quot;nspagesul&quot;&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://itclive.spdns.de/wiki/anleitungen/raspberry/openhab&quot; class=&quot;wikilink1&quot; title=&quot;anleitungen:raspberry:openhab&quot; data-wiki-id=&quot;anleitungen:raspberry:openhab&quot;&gt;OpenHAB&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;div class=&quot;catpagechars&quot;&gt;P&lt;/div&gt;
&lt;ul class=&quot;nspagesul&quot;&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://itclive.spdns.de/wiki/anleitungen/raspberry/pihole&quot; class=&quot;wikilink1&quot; title=&quot;anleitungen:raspberry:pihole&quot; data-wiki-id=&quot;anleitungen:raspberry:pihole&quot;&gt;Pi-hole&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;

&lt;div class=&quot;catpagecol&quot; style=&quot;width: 33.333333333333%&quot; &gt;&lt;div class=&quot;catpagechars continued&quot;&gt;P (Fortsetzung)&lt;/div&gt;
&lt;ul class=&quot;nspagesul&quot;&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://itclive.spdns.de/wiki/anleitungen/raspberry/piserver&quot; class=&quot;wikilink1&quot; title=&quot;anleitungen:raspberry:piserver&quot; data-wiki-id=&quot;anleitungen:raspberry:piserver&quot;&gt;PiServer&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;div class=&quot;catpagechars&quot;&gt;R&lt;/div&gt;
&lt;ul class=&quot;nspagesul&quot;&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://itclive.spdns.de/wiki/anleitungen/raspberry/raspion&quot; class=&quot;wikilink1&quot; title=&quot;anleitungen:raspberry:raspion&quot; data-wiki-id=&quot;anleitungen:raspberry:raspion&quot;&gt;Raspion&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;

&lt;div class=&quot;catpagecol&quot; style=&quot;width: 33.333333333333%&quot; &gt;&lt;div class=&quot;catpagechars continued&quot;&gt;R (Fortsetzung)&lt;/div&gt;
&lt;ul class=&quot;nspagesul&quot;&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt;&lt;a href=&quot;http://itclive.spdns.de/wiki/anleitungen/raspberry/retropi&quot; class=&quot;wikilink1&quot; title=&quot;anleitungen:raspberry:retropi&quot; data-wiki-id=&quot;anleitungen:raspberry:retropi&quot;&gt;RetroPi&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;
&lt;div class=&quot;catpageeofidx&quot;&gt;&lt;/div&gt;&lt;/div&gt;
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Interessantes&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;interessantes&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:11,&amp;quot;range&amp;quot;:&amp;quot;1926-&amp;quot;} --&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
        <category>anleitungen</category>
            <pubDate>Tue, 28 Sep 2021 11:22:46 +0000</pubDate>
        </item>
    </channel>
</rss>
