<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Black screen on HMDI output, content on remote browser]]></title><description><![CDATA[<p dir="auto">I have recently updated and rebuilt my MM installation.<br />
I can browse to my MM via a remote web browser and things display fine, however on the HDMI output of the PI itself I just have a black screen.</p>
<p dir="auto">In the logs I see,</p>
<pre><code>[1502:0115/164948.881957:ERROR:viz_main_impl.cc(186)] Exiting GPU process due to errors during initialization
[1538:0115/164949.052412:ERROR:gpu_memory_buffer_support_x11.cc(44)] dri3 extension not supported.
[1507:0115/164949.107262:ERROR:command_buffer_proxy_impl.cc(128)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
</code></pre>
<p dir="auto">I wonder if anyone might be able to point me in the right direction.</p>
]]></description><link>https://forum.magicmirror.builders/topic/17550/black-screen-on-hmdi-output-content-on-remote-browser</link><generator>RSS for Node</generator><lastBuildDate>Thu, 14 May 2026 23:04:13 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/17550.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 15 Jan 2023 16:52:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Sun, 22 Jan 2023 09:04:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mikebishop" aria-label="Profile: MikeBishop">@<bdi>MikeBishop</bdi></a> I’m running MMM-Calendar3 and the default modules only.</p>
]]></description><link>https://forum.magicmirror.builders/post/107470</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107470</guid><dc:creator><![CDATA[chris_d]]></dc:creator><pubDate>Sun, 22 Jan 2023 09:04:35 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Sat, 21 Jan 2023 20:12:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mikebishop" aria-label="Profile: MikeBishop">@<bdi>MikeBishop</bdi></a> great work</p>
<p dir="auto">can you post your findings  to issue</p>
<p dir="auto"><a href="https://github.com/MichMich/MagicMirror/issues/2487" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/MichMich/MagicMirror/issues/2487</a></p>
<p dir="auto">I reopened it</p>
]]></description><link>https://forum.magicmirror.builders/post/107460</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107460</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 21 Jan 2023 20:12:02 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Sat, 21 Jan 2023 20:02:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<p dir="auto">Okay, I think I have a clean repro of the issue in <a href="https://github.com/MikeBishop/MMM-asyncdeath" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/MikeBishop/MMM-asyncdeath</a> – the synchronous start function produces this in the logs and loads normally:</p>
<pre><code>[21.01.2023 14:55.02.692] [LOG]   Synchronous start-up -- all is well
[21.01.2023 14:55.02.693] [LOG]   Sockets connected &amp; modules started ...
[21.01.2023 14:55.03.235] [LOG]   Launching application.
</code></pre>
<p dir="auto">The async start function produces this in the logs and fails:</p>
<pre><code>[21.01.2023 14:52.54.143] [LOG]   About to break by using await
[21.01.2023 14:52.54.884] [LOG]   Launching application.
[21.01.2023 14:52.56.512] [LOG]   Sockets connected &amp; modules started ...
</code></pre>
<p dir="auto">Note the reversed order of “Launching application” and “modules started”.  Seems feasible this could also happen with a synchronous module startup that takes a long time, but I haven’t tested that.</p>
]]></description><link>https://forum.magicmirror.builders/post/107459</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107459</guid><dc:creator><![CDATA[MikeBishop]]></dc:creator><pubDate>Sat, 21 Jan 2023 20:02:06 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Sat, 21 Jan 2023 19:41:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<p dir="auto">That’s actually how I installed this instance to begin with.  However, I’ve narrowed my instance of the problem down.</p>
<p dir="auto">The node_helper for the module I wrote, MMM-Powerwall, has an async <code>start()</code> function.  In previous MM versions, the startup code didn’t wait on async start functions to finish, and my init finished not long after MM started.  This version includes the fix to wait for async modules to finish starting.  I’ve confirmed that my <code>start()</code> function is running to the end, and MM does write</p>
<pre><code>[21.01.2023 14:30.25.915] [LOG]   Sockets connected &amp; modules started ...
</code></pre>
<p dir="auto">…to the log, but apparently something about waiting on the module breaks the electron browser.  If I hack the module to look synchronous, like so:</p>
<pre><code>start: /*async*/ function () {
		this.asyncStart()
	},	

asyncStart: async function () {
</code></pre>
<p dir="auto">…everything starts right up.  Something about the timing or threading of waiting for modules to complete is making the electron launch fail, I think.</p>
<p dir="auto">My next step will be to make a module that does nothing but has an async node_helper and see if I can repro the issue with that.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/chris_d" aria-label="Profile: chris_d">@<bdi>chris_d</bdi></a>, any chance that you’re also using a module with an async start function?</p>
]]></description><link>https://forum.magicmirror.builders/post/107458</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107458</guid><dc:creator><![CDATA[MikeBishop]]></dc:creator><pubDate>Sat, 21 Jan 2023 19:41:06 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Fri, 20 Jan 2023 20:45:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mikebishop" aria-label="Profile: MikeBishop">@<bdi>MikeBishop</bdi></a> can u reflash bullseye and use my install script?<br />
<a href="https://github.com/sdetweil/MagicMirror_scripts" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/sdetweil/MagicMirror_scripts</a></p>
]]></description><link>https://forum.magicmirror.builders/post/107448</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107448</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 20 Jan 2023 20:45:38 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Fri, 20 Jan 2023 19:52:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<p dir="auto">Bullseye, looks like.  Whatever’s in the newest RPi OS release, anyway.</p>
<p dir="auto">For the moment, I’ve swapped back to the other SD card that’s working.  System’s been a little flaky the last few days, figured I’d try a fresh install on a new card in case that’s starting to go; hit this issue on the new one.  When I have a few minutes to pull the Pi from the mirror and bring it back to my desk, I’ll give <code>npm start dev</code> a try on the newer one.</p>
]]></description><link>https://forum.magicmirror.builders/post/107447</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107447</guid><dc:creator><![CDATA[MikeBishop]]></dc:creator><pubDate>Fri, 20 Jan 2023 19:52:37 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Fri, 20 Jan 2023 11:52:04 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/chris_d" aria-label="Profile: chris_d">@<bdi>chris_d</bdi></a> try npm start dev to open dev window on startup</p>
<p dir="auto">also can u try the npm start on the pi desktop, not over ssh?</p>
]]></description><link>https://forum.magicmirror.builders/post/107443</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107443</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 20 Jan 2023 11:52:04 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Fri, 20 Jan 2023 11:37:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mikebishop" aria-label="Profile: MikeBishop">@<bdi>MikeBishop</bdi></a> are you also running on buster?</p>
]]></description><link>https://forum.magicmirror.builders/post/107442</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107442</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 20 Jan 2023 11:37:37 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Fri, 20 Jan 2023 04:59:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<p dir="auto">I’m having what appears to be the same problem – HDMI is black (but apparently happy from the log output), while browser access is fine.  I can’t get the dev tools to come up in Electron; perhaps unsurprisingly, the browser dev tools don’t show any errors that weren’t there on my old instance.</p>
]]></description><link>https://forum.magicmirror.builders/post/107435</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107435</guid><dc:creator><![CDATA[MikeBishop]]></dc:creator><pubDate>Fri, 20 Jan 2023 04:59:33 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Thu, 19 Jan 2023 22:21:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/chris_d" aria-label="Profile: chris_d">@<bdi>chris_d</bdi></a> on the black screen  press ctrl-shift-i to open the developers window, then select the console tab and scroll up for any errors usually red text</p>
]]></description><link>https://forum.magicmirror.builders/post/107434</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107434</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 19 Jan 2023 22:21:23 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Thu, 19 Jan 2023 22:08:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> said in <a href="/post/107431">Black screen on HMDI output, content on remote browser</a>:</p>
<blockquote>
<p dir="auto">export ELECTRON_DISABLE_GPU=1</p>
</blockquote>
<p dir="auto">No error now, but still a black screen</p>
]]></description><link>https://forum.magicmirror.builders/post/107432</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107432</guid><dc:creator><![CDATA[chris_d]]></dc:creator><pubDate>Thu, 19 Jan 2023 22:08:07 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Thu, 19 Jan 2023 22:02:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/chris_d" aria-label="Profile: chris_d">@<bdi>chris_d</bdi></a>  in from to the npm start line do</p>
<pre><code>export ELECTRON_DISABLE_GPU=1
</code></pre>
<p dir="auto">and rerun…</p>
]]></description><link>https://forum.magicmirror.builders/post/107431</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107431</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 19 Jan 2023 22:02:46 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Thu, 19 Jan 2023 21:35:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> said in <a href="/post/107429">Black screen on HMDI output, content on remote browser</a>:</p>
<blockquote>
<p dir="auto">pm2 stop all<br />
cd ~/MagicMirror<br />
npm start &gt;somefile.txt 2&gt;&amp;1</p>
</blockquote>
<p dir="auto">Errors are:<br />
[2883:0119/213451.321388:ERROR:viz_main_impl.cc(186)] Exiting GPU process due to errors during initialization<br />
[2916:0119/213451.509005:ERROR:gpu_memory_buffer_support_x11.cc(44)] dri3 extension not supported.</p>
]]></description><link>https://forum.magicmirror.builders/post/107430</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107430</guid><dc:creator><![CDATA[chris_d]]></dc:creator><pubDate>Thu, 19 Jan 2023 21:35:38 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Thu, 19 Jan 2023 21:02:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/chris_d" aria-label="Profile: chris_d">@<bdi>chris_d</bdi></a> interesting. I ssh into my mirror systems all the time and never have trouble.</p>
<p dir="auto">do</p>
<pre><code>pm2 stop all
cd ~/MagicMirror
npm start &gt;somefile.txt 2&gt;&amp;1
</code></pre>
<p dir="auto">wait til the black screen<br />
ctrl-c in the ssh terminal</p>
<p dir="auto">then nano somefile.txt, scroll down<br />
see if there are any errors reported…</p>
<p dir="auto">the package.json will set DISPLAY if not set</p>
]]></description><link>https://forum.magicmirror.builders/post/107429</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107429</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 19 Jan 2023 21:02:25 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Thu, 19 Jan 2023 19:46:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> said in <a href="/post/107426">Black screen on HMDI output, content on remote browser</a>:</p>
<blockquote>
<p dir="auto">lsb_release -a</p>
</blockquote>
<p dir="auto">Distributor ID:	Raspbian<br />
Description:	Raspbian GNU/Linux 10 (buster)<br />
Release:	10<br />
Codename:	buster</p>
<p dir="auto">I am using ssh to remote into the pi<br />
The following thread seems similar, but does not offer a solution<br />
<a href="https://forum.magicmirror.builders/topic/17211/having-trouble-with-launch-perhaps-display-value?page=1">https://forum.magicmirror.builders/topic/17211/having-trouble-with-launch-perhaps-display-value?page=1</a></p>
]]></description><link>https://forum.magicmirror.builders/post/107427</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107427</guid><dc:creator><![CDATA[chris_d]]></dc:creator><pubDate>Thu, 19 Jan 2023 19:46:06 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Thu, 19 Jan 2023 19:42:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/chris_d" aria-label="Profile: chris_d">@<bdi>chris_d</bdi></a></p>
<p dir="auto">which pi os?</p>
<p dir="auto">lsb_release -a</p>
<p dir="auto">how did u open that terminal window?</p>
]]></description><link>https://forum.magicmirror.builders/post/107426</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107426</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 19 Jan 2023 19:42:59 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Thu, 19 Jan 2023 19:39:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> I am running the full desktop. yes.<br />
This used to work but following a Magic Mirror and pi system update it no longer does.<br />
I can see the desktop on boot up, but when pm2 runs the mirror then I get the blank screen.</p>
]]></description><link>https://forum.magicmirror.builders/post/107425</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107425</guid><dc:creator><![CDATA[chris_d]]></dc:creator><pubDate>Thu, 19 Jan 2023 19:39:27 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Thu, 19 Jan 2023 18:46:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/chris_d" aria-label="Profile: chris_d">@<bdi>chris_d</bdi></a> you are running the full desktop os, right? text/cli mode doesn’t work, unless u want to run server only and view from somewhere else.</p>
]]></description><link>https://forum.magicmirror.builders/post/107424</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107424</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 19 Jan 2023 18:46:18 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Thu, 19 Jan 2023 18:41:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a><br />
The platform failed to initialize.Missing X server or $DISPLAY</p>
]]></description><link>https://forum.magicmirror.builders/post/107422</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107422</guid><dc:creator><![CDATA[chris_d]]></dc:creator><pubDate>Thu, 19 Jan 2023 18:41:50 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Thu, 19 Jan 2023 18:12:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/chris_d" aria-label="Profile: chris_d">@<bdi>chris_d</bdi></a> sorry  typo in my instructions, a dot instead of a slash… see and try again</p>
]]></description><link>https://forum.magicmirror.builders/post/107420</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107420</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 19 Jan 2023 18:12:49 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Thu, 19 Jan 2023 07:18:56 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto">does electron  window come up?</p>
</blockquote>
<p dir="auto">No. I get ./node_modules/.bin.electron: No such file or directory</p>
]]></description><link>https://forum.magicmirror.builders/post/107418</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107418</guid><dc:creator><![CDATA[chris_d]]></dc:creator><pubDate>Thu, 19 Jan 2023 07:18:56 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Thu, 19 Jan 2023 18:12:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/chris_d" aria-label="Profile: chris_d">@<bdi>chris_d</bdi></a> yes, so you would ad the export before the</p>
<p dir="auto">DISPLAY… npm start line…</p>
<p dir="auto">so, lets try something else</p>
<p dir="auto">stop magicmirror</p>
<p dir="auto">then</p>
<pre><code>cd ~/MagicMirror
./node_modules/.bin/electron
</code></pre>
<p dir="auto">does electron  window come up?</p>
]]></description><link>https://forum.magicmirror.builders/post/107318</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107318</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 19 Jan 2023 18:12:12 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Sun, 15 Jan 2023 21:15:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> That didn’t seem to work. It did eliminate any errors on startup, but the screen remainis blank.<br />
the command to start in <a href="http://mm.sh" target="_blank" rel="noopener noreferrer nofollow ugc">mm.sh</a> is</p>
<pre><code>DISPLAY=:0 npm start
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/107317</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107317</guid><dc:creator><![CDATA[chris_d]]></dc:creator><pubDate>Sun, 15 Jan 2023 21:15:57 GMT</pubDate></item><item><title><![CDATA[Reply to Black screen on HMDI output, content on remote browser on Sun, 15 Jan 2023 16:55:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/chris_d" aria-label="Profile: chris_d">@<bdi>chris_d</bdi></a> maybe turn off GPU useage</p>
<p dir="auto">in the place where u start MM do</p>
<pre><code>export ELECTRN_DISABLE_GPU=1
</code></pre>
<p dir="auto">before the npm start  line</p>
<p dir="auto">if using pm2, that is ~/MagicMirror/installers/mm.sh</p>
<p dir="auto">to test , if using pm2, then</p>
<pre><code>pm2 stop all 
cd ~/MagicMirror 
export ELECTRN_DISABLE_GPU=1
npm start 
</code></pre>
<p dir="auto">if it works, update the <a href="http://mm.sh" target="_blank" rel="noopener noreferrer nofollow ugc">mm.sh</a><br />
and then pm2 start all</p>
]]></description><link>https://forum.magicmirror.builders/post/107308</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107308</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 15 Jan 2023 16:55:17 GMT</pubDate></item></channel></rss>