# 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/ji42xna
Go 語言標準庫 bufio 詳解**
01 介紹Go 語言標準庫 bufio 是基於 Go 語言標準庫 io 實現的,查看源碼可以發現,實際上它是包裝了 io.Reader 接口和 io.Writer 接口,並且實現它們。bufio 顧名思義,就是在緩衝區讀寫數據,比直接讀寫文件或網絡中的數據,性能更好些。本文我們介紹 bufio 的相關內容,建議讀者朋友們最好是先了解一下 io 的相關內容。02 標準庫 bufio 的數據類型查看標 ⌘ Read more