# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 10
# self = https://watcher.sour.is/conv/nbt66eq
My dear friends, do you have any particular library recommendations for ical parsing in Go?
@lyse Yea ! But remind me in an hour or so 😆
@lyse Yea ! But remind me in an hour or so 😆
Ping, @prologic. :-)
@lyse I would firstly try: https://github.com/emersion/go-ical

I know this guy's work and it's pretty good. I got this from his other library that deals with CalDAV, CardDAV and WebDAV: https://github.com/emersion/go-webdav

I was (still am) planning on writing a CalDAV / CardDAV server using his libraries so I can do something interesting with an alternative Mail + Calendar solution.
@lyse I would firstly try: https://github.com/emersion/go-ical

I know this guy's work and it's pretty good. I got this from his other library that deals with CalDAV, CardDAV and WebDAV: https://github.com/emersion/go-webdav

I was (still am) planning on writing a CalDAV / CardDAV server using his libraries so I can do something interesting with an alternative Mail + Calendar solution.
Thank you, @prologic! Will give it a try later this evening.
@lyse You're welcome!
@lyse You're welcome!
Thanks for your recommendation, @prologic, I ended up going with it. Due to a parser panic I found a bug in one of my own iCalendar generators. The start date was announced as a DATE only, but in fact a complete timestamp including time and timezone was written instead (DTSTART;VALUE=DATE:20230106T000000Z rather than DTSTART;VALUE=DATE:20230106). This parser didn't like that. To my defense, the validator did not report anything and approved of my ical file, though.