# 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/zckcfpa
看完這篇文章,你就會知道 Go 中 Buffer 到底有什麼用**
作者: 金刀大菜牙 https://juejin.cn/post/7229193250903507004作爲一種常見的數據結構,緩衝區(Buffer)在計算機科學中有着廣泛的應用。Go 語言標準庫中提供了一個名爲 bytes.Buffer 的緩衝區類型,它可以方便地進行字符串操作、IO 操作、二進制數據處理等。本文將詳細介紹 Go 中 Buffer 的用法,從多個方面介紹其特性和應用場景 ⌘ Read more