<?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[Trashday modules based on ICAL]]></title><description><![CDATA[<p dir="auto">I see enough trash day moduls based on excel documents etc.<br />
The garbage collector here uses ICAL<br />
Is there a module based on ICAL? Or does someone else have a good idea? or has made one?<br />
I could not find anything that is based on ICAL.</p>
<p dir="auto">Thanks!</p>
<p dir="auto">*Random link to garbage collector website ical *<br />
<a href="https://inzamelkalender.hvcgroep.nl/ical/0441200000002545" target="_blank" rel="noopener noreferrer nofollow ugc">https://inzamelkalender.hvcgroep.nl/ical/0441200000002545</a></p>
]]></description><link>https://forum.magicmirror.builders/topic/11642/trashday-modules-based-on-ical</link><generator>RSS for Node</generator><lastBuildDate>Wed, 16 Sep 2026 10:22:00 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/11642.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 20 Nov 2019 08:08:48 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Trashday modules based on ICAL on Wed, 20 Nov 2019 09:57:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/screwyoudriver" aria-label="Profile: Screwyoudriver">@<bdi>Screwyoudriver</bdi></a> OK makes sense. I thought about some module like this as well.</p>
<p dir="auto">BTW: Another workaround would be to fetch the notification that is distributed by calendar:</p>
<pre><code>	broadcastEvents: function () {
		var eventList = [];
		for (var url in this.calendarData) {
			var calendar = this.calendarData[url];
			for (var e in calendar) {
				var event = cloneObject(calendar[e]);
				event.symbol = this.symbolsForUrl(url);
				event.calendarName = this.calendarNameForUrl(url);
				event.color = this.colorForUrl(url);
				delete event.url;
				eventList.push(event);
			}
		}

		eventList.sort(function(a,b) {
			return a.startDate - b.startDate;
		});

		this.sendNotification("CALENDAR_EVENTS", eventList);

	}
</code></pre>
<p dir="auto">calendar could do the conversion work for the trash module, and the trash module could just fetch and filter the events for trash-related ones.</p>
]]></description><link>https://forum.magicmirror.builders/post/64816</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/64816</guid><dc:creator><![CDATA[lavolp3]]></dc:creator><pubDate>Wed, 20 Nov 2019 09:57:42 GMT</pubDate></item><item><title><![CDATA[Reply to Trashday modules based on ICAL on Wed, 20 Nov 2019 09:32:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/lavolp3" aria-label="Profile: lavolp3">@<bdi>lavolp3</bdi></a> That’s right, I already have that. I only want it in a separate module. Because that’s nicer.</p>
]]></description><link>https://forum.magicmirror.builders/post/64815</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/64815</guid><dc:creator><![CDATA[Screwyoudriver]]></dc:creator><pubDate>Wed, 20 Nov 2019 09:32:38 GMT</pubDate></item><item><title><![CDATA[Reply to Trashday modules based on ICAL on Wed, 20 Nov 2019 08:26:26 GMT]]></title><description><![CDATA[<p dir="auto">If you just want to show the day the trash is picked up you could as well include the ical into the calendar module…</p>
]]></description><link>https://forum.magicmirror.builders/post/64812</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/64812</guid><dc:creator><![CDATA[lavolp3]]></dc:creator><pubDate>Wed, 20 Nov 2019 08:26:26 GMT</pubDate></item></channel></rss>