<?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[Issue on sending Widget on init]]></title><description><![CDATA[<p dir="auto">Hi everyone,</p>
<p dir="auto">I'm currently working on a project using an ESP32-S3 to send data and commands to the GUI-O app over Bluetooth Low Energy (BLE). My code creates a series of widgets in the app, but I'm facing an issue where only a maximum of 29 widgets are successfully displayed in the GUI-O interface. Any additional widgets beyond 29 are missing.</p>
<p dir="auto">I've set up the widgets using commands like sendMsg() that are sent to the app over BLE. It seems that not all widgets are properly received by the app, even though all the commands are being executed in the code. I suspect it might be due to BLE packet size limitations or possibly some commands being sent too quickly for the app to handle.</p>
<p dir="auto">Here are some key points:</p>
<p dir="auto">The commands are sent from an ESP32-S3 using BLE.<br />
I'm sending a long list of widget creation commands, but only 29 widgets get displayed.<br />
It looks like some of the messages are getting truncated or lost, as additional widgets beyond the 29th don't appear in the GUI-O app.<br />
The BLE message size limit may be around 512 bytes, and I’m trying to figure out the best way to fragment these commands to ensure all widgets are properly created.<br />
I've already tried adding delays between the commands (e.g., delay(50)), but the issue persists. I’m wondering if there's a better way to manage this, such as breaking up the message to fit within BLE packet limits, or another approach to guarantee that all widgets are properly rendered.</p>
<p dir="auto">Any advice on how to ensure all BLE messages are successfully received by the GUI-O app and all widgets are displayed would be greatly appreciated!</p>
<p dir="auto">Thanks in advance for your help!</p>
]]></description><link>https://forum.gui-o.com/topic/231/issue-on-sending-widget-on-init</link><generator>RSS for Node</generator><lastBuildDate>Sun, 10 May 2026 23:51:02 GMT</lastBuildDate><atom:link href="https://forum.gui-o.com/topic/231.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 11 Nov 2024 17:54:45 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Issue on sending Widget on init on Mon, 25 Nov 2024 18:46:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.gui-o.com/uid/1005">@mathieu</a> Hi!</p>
<p dir="auto">I have sent the initialization code to your e-mail (I have included your full commands there, but not here on the forum).</p>
<p dir="auto">Basically, the commands are sent in a non-blocking fashion one-by one:</p>
<pre><code>#include &lt;BLEDevice.h&gt;
#include &lt;BLEServer.h&gt;
#include &lt;BLEUtils.h&gt;
#include &lt;BLE2902.h&gt;

#include &lt;pgmspace.h&gt;

const char* const commands[] PROGMEM = {   
    "|LB UID:lb0 X:20 Y:10\r\n",
    ...
    ...
    ...
};

const size_t numCommands = sizeof(commands) / sizeof(commands[0]);

namespace uuid {
  static const char *SERVICE_UUID = "6E400001-B5A3-F393-E0A9-E50E24DCCA9E";
  static const char *RX_CHARACTERISTIC_UUID = "6E400002-B5A3-F393-E0A9-E50E24DCCA9E";
  static const char *TX_CHARACTERISTIC_UUID = "6E400003-B5A3-F393-E0A9-E50E24DCCA9E";
} // namespace uuid

// forward declare parser for incoming messages
void parseGuioMsg(const String &amp;msg);

// setup done flag
bool setupDone = false;

// init active flag
bool initActive = false;
// send command period in msec
static const unsigned long sendCommandPeriod = 50;

// custom handling of server callbacks
class CustomBLEServerCallbacks: public BLEServerCallbacks {
    void onConnect(BLEServer* pServer) {
      Serial.println("Connected!");
    };
    void onDisconnect(BLEServer* pServer) {
      Serial.println("Disconnected!");

      // fix provided by BM
      // restart advertising after disconnect, otherwise GUI-O cannot re-connect
      if(setupDone) {
        // restart advertising on disconnect
        delay(500);
        pServer-&gt;startAdvertising(); 
      }
    }
};

// custom handling of characteristic callbacks
class CustomBLECharacteristicCallbacks: public BLECharacteristicCallbacks {
  void onWrite(BLECharacteristic *pCharacteristic) {
    std::string msg = pCharacteristic-&gt;getValue();
    
    // parse message string
    parseGuioMsg(String(msg.c_str()));
  }      
};

// global ptr
BLECharacteristic *pTxCharacteristic;

void setup() {
  // debug output
  Serial.begin(115200);

  // create device
  BLEDevice::init("BasicBLE_NUS");
  // create server and register callback
  BLEServer *pServer = BLEDevice::createServer();
  pServer-&gt;setCallbacks(new CustomBLEServerCallbacks());
  // create service
  BLEService *pService = pServer-&gt;createService(uuid::SERVICE_UUID);

  // crate Tx characteristic and add descriptor
  pTxCharacteristic = pService-&gt;createCharacteristic(uuid::TX_CHARACTERISTIC_UUID, BLECharacteristic::PROPERTY_NOTIFY);
  pTxCharacteristic-&gt;addDescriptor(new BLE2902());
  
  // crate Rx characteristic and register callback
  BLECharacteristic *pRxCharacteristic = pService-&gt;createCharacteristic(uuid::RX_CHARACTERISTIC_UUID, BLECharacteristic::PROPERTY_WRITE | BLECharacteristic::PROPERTY_WRITE_NR);
  pRxCharacteristic-&gt;setCallbacks(new CustomBLECharacteristicCallbacks());

  // start the service and start advertising
  pService-&gt;start();
  pServer-&gt;getAdvertising()-&gt;start();

  // setup done flag
  setupDone = true;
}

void loop() {
    static size_t currentCommandIndex = 0;
    static unsigned long lastCommandTime = 0;

    if (initActive) {
      if (currentCommandIndex &lt; numCommands) {
        if (millis() - lastCommandTime &gt; sendCommandPeriod) {
            lastCommandTime = millis();

            // retrieve and send the command
            char commandBuffer[256];
            strcpy_P(commandBuffer, (char*)pgm_read_ptr(&amp;commands[currentCommandIndex]));
            sendMsg(commandBuffer);

            Serial.print("Sending: ");
            Serial.println(commandBuffer);
            
            currentCommandIndex++;
        }
      }
      else {
        initActive = false;
        // hide loading screen
        sendMsg("@hls\r\n");
      }
    }  
}

/***************************/
/* IMPLEMENT YOUR GUI HERE */
/***************************/
void sendMsg(const String &amp;msg) {
  pTxCharacteristic-&gt;setValue(std::string(msg.c_str()));
  pTxCharacteristic-&gt;notify();
  delay(50);
}

void parseGuioMsg(const String &amp;msg) {
  if(msg.startsWith("@init")) {
    Serial.println("GUI-O app is requesting INITIALIZATION!");

    // clear screen and set background
    sendMsg("@cls\r\n");
    sendMsg("@guis BGC:#FFFFFF\r\n");
    sendMsg("|SORI UID:sori2 HID:sori ORI:2 SEN:0\r\n");

    // wait for orientation change (alternatively catch GUI-O screen orientation change event...)
    delay(500); 

    // show loading screen
    sendMsg("@sls\r\n");
    
    initActive = true;
  }    
}
</code></pre>
<p dir="auto">Can you please test it and see if it works for you?</p>
<p dir="auto">You can try extending <strong>sendCommandPeriod</strong> if you have any issues... Also you can comment out the <strong>@sls</strong> and <strong>@hls</strong> commands to see exactly what is going on...</p>
<p dir="auto">Best regards,<br />
Kl3m3n</p>
]]></description><link>https://forum.gui-o.com/post/946</link><guid isPermaLink="true">https://forum.gui-o.com/post/946</guid><dc:creator><![CDATA[kl3m3n]]></dc:creator><pubDate>Mon, 25 Nov 2024 18:46:25 GMT</pubDate></item><item><title><![CDATA[Reply to Issue on sending Widget on init on Sat, 16 Nov 2024 13:50:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.gui-o.com/uid/4">@kl3m3n</a> sure but unfortunatly I'm using an esp32-S3 on my custom hardware</p>
<p dir="auto"><a href="https://esp32.com/viewtopic.php?t=32664" rel="nofollow ugc">https://esp32.com/viewtopic.php?t=32664</a></p>
<p dir="auto">Best regards</p>
]]></description><link>https://forum.gui-o.com/post/939</link><guid isPermaLink="true">https://forum.gui-o.com/post/939</guid><dc:creator><![CDATA[mathieu]]></dc:creator><pubDate>Sat, 16 Nov 2024 13:50:07 GMT</pubDate></item><item><title><![CDATA[Reply to Issue on sending Widget on init on Sat, 16 Nov 2024 11:08:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.gui-o.com/uid/1005">@mathieu</a> Hi.</p>
<p dir="auto">I will take a look at your initalization and see how the issue can be mitigated. I will get back to you.</p>
<p dir="auto">Some Esp32 variants support classic bluetooth also. Here is the GUI-O example:<br />
<a href="https://www.gui-o.com/examples/gui-o-and-boards/esp32#h.91so3s2tov2e" rel="nofollow ugc">https://www.gui-o.com/examples/gui-o-and-boards/esp32#h.91so3s2tov2e</a></p>
<p dir="auto">Best regards,<br />
Kl3m3n</p>
]]></description><link>https://forum.gui-o.com/post/938</link><guid isPermaLink="true">https://forum.gui-o.com/post/938</guid><dc:creator><![CDATA[kl3m3n]]></dc:creator><pubDate>Sat, 16 Nov 2024 11:08:58 GMT</pubDate></item><item><title><![CDATA[Reply to Issue on sending Widget on init on Sat, 16 Nov 2024 05:29:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.gui-o.com/uid/4">@kl3m3n</a> said in <a href="/post/936">Issue on sending Widget on init</a>:</p>
<blockquote>
<p dir="auto"><a href="mailto:info.guio.app@gmail.com" rel="nofollow ugc">info.guio.app@gmail.com</a>.</p>
</blockquote>
<p dir="auto">I will send you the code for my esp32 .</p>
<p dir="auto">via network it's works perfectly with the software for windows.<br />
unfortunatly via esp32 I have only BLE.</p>
]]></description><link>https://forum.gui-o.com/post/937</link><guid isPermaLink="true">https://forum.gui-o.com/post/937</guid><dc:creator><![CDATA[mathieu]]></dc:creator><pubDate>Sat, 16 Nov 2024 05:29:03 GMT</pubDate></item><item><title><![CDATA[Reply to Issue on sending Widget on init on Fri, 15 Nov 2024 20:00:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.gui-o.com/uid/1005">@mathieu</a> Hi!</p>
<p dir="auto">Is it possible for you to send me the initialization commands, so I can reproduce your issue and try to solve it? You can send them to <strong><a href="mailto:info.guio.app@gmail.com" rel="nofollow ugc">info.guio.app@gmail.com</a></strong>.</p>
<p dir="auto">Did you consider using legacy Bluetooth (not BLE, but Classic), which is more suited for such large payloads?</p>
<p dir="auto">Best regards,<br />
Kl3m3n</p>
]]></description><link>https://forum.gui-o.com/post/936</link><guid isPermaLink="true">https://forum.gui-o.com/post/936</guid><dc:creator><![CDATA[kl3m3n]]></dc:creator><pubDate>Fri, 15 Nov 2024 20:00:33 GMT</pubDate></item><item><title><![CDATA[Reply to Issue on sending Widget on init on Fri, 15 Nov 2024 13:26:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.gui-o.com/uid/4">@kl3m3n</a> by adding 200 of delay looks good. But no very efficien I didn't find an acknoledge mecanism in the api .</p>
<p dir="auto">And with this time out I receive message "No response from remote device"</p>
<p dir="auto">I'm not an software expert I'm hardware designer and frankly speaking I don't know exactly the behaviour if I change the connection settings.</p>
<pre><code>void sendMsg(const String &amp;msg) {
  // Set value and notify the client
  Serial.println("Envoi du message : " + msg);
  pCharacteristic-&gt;setValue(msg.c_str());
  pCharacteristic-&gt;notify();
  delay(DELAYSENDMSG);
}
//with delay at 200 


</code></pre>
<p dir="auto">if I put delay each 3 instruction the issue is the same</p>
]]></description><link>https://forum.gui-o.com/post/935</link><guid isPermaLink="true">https://forum.gui-o.com/post/935</guid><dc:creator><![CDATA[mathieu]]></dc:creator><pubDate>Fri, 15 Nov 2024 13:26:10 GMT</pubDate></item><item><title><![CDATA[Reply to Issue on sending Widget on init on Fri, 15 Nov 2024 10:32:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.gui-o.com/uid/1005">@mathieu</a> Hi!</p>
<p dir="auto">I can see only 29 widgets in the log, which means GUI-O did not receive commands for other widgets.<br />
I am guessing that there is a problem with message loss (too much data in a short interval) due to limited buffer space of the BLE stack.</p>
<p dir="auto">But, as you've said - adding a "short" delay did not help. Can you try adding a larger delay just for testing? You can add it after every 3rd command for example.</p>
<p dir="auto">You could also try updating the connection parameters (decrease connection interval) after the connection is established (using pServer-&gt;updateConnParams method):<br />
<a href="https://github.com/espressif/arduino-esp32/blob/master/libraries/BLE/src/BLEServer.h#L78" rel="nofollow ugc">https://github.com/espressif/arduino-esp32/blob/master/libraries/BLE/src/BLEServer.h#L78</a></p>
<p dir="auto">Also you can try more structured approach by sending a "chunk" of data (e.g., 100 bytes - without breaking the individual commands) and then waiting for a short time before sending the next chunk.</p>
<p dir="auto">Best regards,<br />
Kl3m3n</p>
]]></description><link>https://forum.gui-o.com/post/934</link><guid isPermaLink="true">https://forum.gui-o.com/post/934</guid><dc:creator><![CDATA[kl3m3n]]></dc:creator><pubDate>Fri, 15 Nov 2024 10:32:10 GMT</pubDate></item><item><title><![CDATA[Reply to Issue on sending Widget on init on Thu, 14 Nov 2024 22:18:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.gui-o.com/uid/4">@kl3m3n</a></p>
<p dir="auto">[2024-11-14T23:17:08.818] @cls<br />
[2024-11-14T23:17:08.819] @guis BGC:#FFFFFF<br />
[2024-11-14T23:17:08.819] |SORI UID:sori1 HID:sori ORI:2 SEN:0<br />
[2024-11-14T23:17:08.821] |IM UID:im0 X:10 Y:12 W:12 H:20 IP:"<a href="https://xxxxxxxxxxxxxx" rel="nofollow ugc">https://xxxxxxxxxxxxxx</a>"<br />
[2024-11-14T23:17:08.836] |LB UID:lb0 X:20 Y:10 FGC:#CE9D15 SHC:#83000000 FSZ:5 FFA:"font11" TXT:"Environnemental Sensor" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.838] |BSL UID:bsl1 X:40 Y:146 ROT:90 LEN:80<br />
[2024-11-14T23:17:08.838] |LB UID:lb1 X:30 Y:17 FSZ:4 TXT:"Sound / Lux"<br />
[2024-11-14T23:17:08.839] |LB UID:lb2 X:75 Y:17 FSZ:4 TXT:"Air quality"<br />
[2024-11-14T23:17:08.840] |LB UID:SENSORLUX1 X:10 Y:25 FSZ:4 TXT:"SENSORLUX1 : " ALP:1 LALP:1<br />
[2024-11-14T23:17:08.841] |LB UID:SENSORLUX2 X:10 Y:35 FSZ:4 TXT:"SENSORLUX2" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.842] |LB UID:VEML6030_lux X:10 Y:45 FSZ:4 TXT:"VEML6030_lux" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.842] |LB UID:Mic1 X:10 Y:55 FSZ:4 TXT:"Mic 1" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.843] |LB UID:Mic2 X:10 Y:65 FSZ:4 TXT:"Mic 2" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.844] |LB UID:BME680_IAQ X:41 Y:25 FSZ:4 TXT:"IAQ" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.845] |LB UID:BME680_IAQ_accuracy X:75 Y:25 FSZ:4 TXT:"IAQ_accuracy" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.846] |LB UID:BME680_Temperature X:41 Y:35 FSZ:4 TXT:"Temperature" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.847] |LB UID:BME680_Pressure X:75 Y:35 FSZ:4 TXT:"Pressure" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.847] |LB UID:BME680_Humidity X:41 Y:45 FSZ:4 TXT:"Humidity" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.848] |LB UID:BME680_Gas_resistance X:75 Y:45 FSZ:4 TXT:"Gaz resist" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.853] |LB UID:BME680_Stabilization X:41 Y:55 FSZ:4 TXT:"Stabilization" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.853] |LB UID:BME680_Run_in_status X:75 Y:55 FSZ:4 TXT:"Run_in" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.854] |LB UID:BME680_Compensated_temperature X:41 Y:65 FSZ:4 TXT:"Comp. temp." ALP:1 LALP:1<br />
[2024-11-14T23:17:08.865] |LB UID:BME680_Compensated_humidity X:75 Y:65 FSZ:4 TXT:"Comp. humidity" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.897] |LB UID:BME680_Static_IAQ X:41 Y:75 FSZ:4 TXT:"Static_IAQ" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.898] |LB UID:BME680_CO2_Equivalent X:75 Y:75 FSZ:4 TXT:"CO2 Equ." ALP:1 LALP:1<br />
[2024-11-14T23:17:08.899] |LB UID:BME680_bVOC_equivalent X:41 Y:85 FSZ:4 TXT:"bVOC equ" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.904] |LB UID:BME680_Gas_percentage X:75 Y:85 FSZ:4 TXT:"Gaz %" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.905] |LB UID:BME680_Compensated_gas X:41 Y:95 FSZ:4 TXT:"Comp. gas" ALP:1 LALP:1<br />
[2024-11-14T23:17:08.906] |BSL UID:bsl0 X:18 Y:13 LEN:100<br />
[2024-11-14T23:17:08.906] |BSL UID:bsl2 X:0 Y:20 LEN:100<br />
[2024-11-14T23:17:08.907] |BSL UID:bsl3 X:0 Y:30 LEN:100<br />
[2024-11-14T23:17:08.908] |BSL UID:bsl4 X:0 Y:40 LEN:100<br />
[2024-11-14T23:17:10.303] @lb0   TXT:"Environnemental Sensor 00:00:00:00:00:00  __"<br />
[2024-11-14T23:17:10.305] @SENSORLUX1  TXT:"SENSORLUX1 : 0"<br />
[2024-11-14T23:17:10.305] @SENSORLUX2  TXT:"SENSORLUX2 : 0"<br />
[2024-11-14T23:17:10.305] @VEML6030_lux  TXT:"VEML6030_lux : 27.65"<br />
[2024-11-14T23:17:10.306] @Mic1  TXT:"Mic1 : 0"<br />
[2024-11-14T23:17:10.306] @Mic2  TXT:"Mic2 : 0"<br />
[2024-11-14T23:17:10.306] @BME680_IAQ   TXT:"IAQ : 50.00"<br />
[2024-11-14T23:17:10.306] @BME680_IAQ_accuracy   TXT:"IAQ_accuracy : 0.00"<br />
[2024-11-14T23:17:10.306] @BME680_Temperature   TXT:"Temperature : 22.34<em>C"<br />
[2024-11-14T23:17:10.306] @BME680_Pressure   TXT:"Pressure : 10.14hPa"<br />
[2024-11-14T23:17:10.306] @BME680_Humidity   TXT:"Humidity : 44.44%"<br />
[2024-11-14T23:17:10.358] @BME680_Gas_resistance   TXT:"Gas_resis : 73.58KOhms"<br />
[2024-11-14T23:17:10.447] @BME680_Stabilization   TXT:"Stabilization : 1.00"<br />
[2024-11-14T23:17:10.535] @BME680_Run_in_status   TXT:"Run_in : 0.00"<br />
[2024-11-14T23:17:10.622] @BME680_Compensated_temperature   TXT:"Comp. temp. : 21.88</em>C"<br />
[2024-11-14T23:17:10.758] @BME680_Compensated_humidity   TXT:"Comp. hum : 45.72"<br />
[2024-11-14T23:17:10.845] @BME680_Static_IAQ   TXT:"Static_IAQ : 50.00"<br />
[2024-11-14T23:17:10.933] @BME680_CO2_Equivalent   TXT:"CO2_Equ. : 500.00ppm"<br />
[2024-11-14T23:17:11.021] @BME680_bVOC_equivalent   TXT:"bVOC_equ. : 0.50ppm"<br />
[2024-11-14T23:17:11.157] @BME680_Gas_percentage   TXT:"Gas perc : 0.00%"<br />
[2024-11-14T23:17:11.247] @BME680_Compensated_gas   TXT:"Comp. gas : 4.83"<br />
[2024-11-14T23:17:11.836] @lb0   TXT:"Environnemental Sensor 00:00:00:00:00:00  __"<br />
[2024-11-14T23:17:11.967] @SENSORLUX1  TXT:"SENSORLUX1 : 0"</p>
]]></description><link>https://forum.gui-o.com/post/933</link><guid isPermaLink="true">https://forum.gui-o.com/post/933</guid><dc:creator><![CDATA[mathieu]]></dc:creator><pubDate>Thu, 14 Nov 2024 22:18:44 GMT</pubDate></item><item><title><![CDATA[Reply to Issue on sending Widget on init on Mon, 11 Nov 2024 23:01:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.gui-o.com/uid/1005">@mathieu</a> Hi!</p>
<p dir="auto">Can you try the following:</p>
<ol>
<li>Open GUI-O app and navigate to "Info" from the settings menu</li>
<li>Tap the app version info 10 times - this will enable developer mode</li>
<li>Scroll to the bottom, tap on "Developer mode" and enable "Log incoming messages".</li>
</ol>
<p dir="auto">Next, try sending the widget commands then exit the app and connect your device to a PC. Navigate to <strong>com.guio.app</strong> folder (Android - &gt; Data) and observe the contents of the incoming log. You can post the log here.</p>
<p dir="auto">Note that the log will be truncated / cleared next time you start GUI-O app.</p>
<p dir="auto">Best regards,<br />
Klemen</p>
]]></description><link>https://forum.gui-o.com/post/930</link><guid isPermaLink="true">https://forum.gui-o.com/post/930</guid><dc:creator><![CDATA[kl3m3n]]></dc:creator><pubDate>Mon, 11 Nov 2024 23:01:41 GMT</pubDate></item></channel></rss>