# 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/gsz4aja
Zig 中的類型對齊**
在 Zig 中,每種類型都有一個對齊方式,當從內存加載或向內存存儲該類型的值時,內存地址必須能被這個數平均整除。可以使用 @alignOf 查找任何類型的對齊方式。比如 @alignOf(u32) 會返回 4。對齊取決於 CPU 架構,但始終是 2 的冪次,且小於 1 << 29。在 Zig 中,指針類型有一個對齊值。如果該值等於底層類型的對齊方式,則可以從類型中省略:const std = @i ⌘ Read more