# 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 1
# self = https://watcher.sour.is/conv/wjja7mq
Zig defer 慣用法**
原文地址:Zig defer Patterns[1]裏面講述了 defer 除了做資源回收外,其他的一些慣用法,裏面有幾個有趣的點。第一點是這個:errdefer comptime unreachable文中稱這個是 Zig 的巔峯用法😅, errdefer unreachable 還比較好理解,即在執行出錯時,執行 unreachable ,那加上 comptime 呢?其實這是阻止 Zig ⌘ Read more