# 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/pioktea
I'm also considering also removing <link rel=icon href=/favicon.ico type=image/x-icon> but @mckinley has something to say about it https://mckinley.cc/blog/20210824.html 😋
@adi At least you wouldn't clog your server logs with 404s because you actually have your icon at /favicon.ico
@adi At least you wouldn't clog your server logs with 404s because you actually have your icon at /favicon.ico
@adi @mckinley_tt If you just care about a clean log, you could configure your web server to just ignore this spams. In my nginx configs I use location = /favicon.ico { log_not_found off; access_log off; }. You could even send a custom response with an empty body to safe on traffic. No need for an actual file being present on the filesystem.