# 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 4
# self = https://watcher.sour.is/conv/5gigegq
https://twtxt.readthedocs.io/en/latest/user/twtxtfile.html#format-specification fix date format on this twtxt file
Your timestamps look well-formed, but you seem to be posting in the future. It might be a local offset problem, see RFC 3339: Local Offsets.

I'm not sure how you're generating your feed, but the POSIX date utility can give you the current time as an RFC 3339 timestamp, so long as your computer has the correct time: date -u +%Y-%m-%dT%TZ. POSIX date isn't aware of the local offset, so that command gives you timestamps in UTC.

GNU date is aware of the local offset, and it has shorthand for these sorts of timestamps. date -Is will give you the local time with the proper offset.
Your timestamps look well-formed, but you seem to be posting in the future. It might be a local offset problem, see RFC 3339: Local Offsets.

I'm not sure how you're generating your feed, but the POSIX date utility can give you the current time as an RFC 3339 timestamp, so long as your computer has the correct time: date -u +%Y-%m-%dT%TZ. POSIX date isn't aware of the local offset, so that command gives you timestamps in UTC.

GNU date is aware of the local offset, and it has shorthand for RFC 3339 timestamps. date -Is will give you the local time with the proper offset.
Your timestamps look well-formed, but you seem to be posting in the future. It might be a local offset problem, see RFC 3339: Local Offsets.

I'm not sure how you're generating your feed, but the POSIX date utility can give you the current time as an RFC 3339 timestamp, so long as your computer has the correct time: date -u +%Y-%m-%dT%TZ. POSIX date isn't aware of the local offset, so it will give you timestamps in UTC.

GNU date is aware of the local offset, and it has shorthand for RFC 3339 timestamps. date -Is will give you the local time with the proper offset.