Sometimes, you may want to subscribe to a calendar but would like to filter out irrelevant events and improve their display. This tool offers a simple solution.
This page requires JavaScript to function properly.
https://filter.calendar.taurit.pl/filter?calendarUrl=https%3A%2F%2Fcalendar.taurit.pl%2Fassets%2FDemo-2016-01-01.ics
You can use it for free. I created this tool for myself and I don't mind sharing it. I reserve the right to introduce breaking changes (although I didn't for few years) or shut down the service at any time.
Calendars contain private data, and the service that acts like a proxy can technically process this data in any way, including malicious scenarios. If you don't want to entrust some 3rd party service with the sensitive stuff, it's fully understandable.
While this web application does not do anything else than it promises, you don't have to trust it and you can verify all it does. The source code is published on project's GitHub page. If you have Visual Studio 2022 Community Edition or newer, you can build a project yourself with just a few clicks. If you like to tinker, you can host your own trusted instance of this code in AWS.
Google Calendar's implementation seems to have a restriction on the URL's length. See this StackOverflow answer for details.
If you cannot import your calendar, you might try shortening the URL.
When I encounter this problem, I normally write and deploy a simple Azure Function which redirects to a real (long) URL, but itself has an acceptably short URL.
using System.Net; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Primitives; public static async Task<IActionResult> Run(HttpRequest req, ILogger log) { // example. Change URL to point to your calendar. return new RedirectResult("https://filter.calendar.taurit.pl/filter?calendarUrl=https%3A%2F%2Foutlook.office365.com%2Fsomelonglink.ics&st=filterdetails", true); }
I encourage you to share any feedback, because it shall help me decide if this proof-of-concept is worth turning into a small product with more features. If I don't get any feedback, it will just stay what it is, as it fulfills my needs.
You can share your feedback by: