# 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/ptxt2wq
Go 內存分配:結構體中的優化技巧**
在使用 Golang 進行內存分配時,我們需要遵循一系列規則。在深入瞭解這些規則之前,我們需要先了解變量的對齊方式。Golang 的unsafe包中有一個函數Alignof,簽名如下:func Alignof(x ArbitraryType) uintptr對於任何類型爲v的變量x,AlignOf函數會返回該變量的對齊方式。我們將對齊方式記爲m。現在,Golang 確保m是滿足變量x的內存地址 % ⌘ Read more