# 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/tdiba7q
Go 處理大數組:使用 for range 還是 for 循環?**
我們知道,Go 的語法比較簡潔。它並不提供類似 C 支持的 while、do...while 等循環控制語法,而僅保留了一種語句,即 for 循環。for i := 0; i < n; i++ {    ... ...}但是,經典的三段式循環語句,需要獲取迭代對象的長度 n。鑑於此,爲了更方便 Go 開發者對複合數據類型進行迭代,例如 array、slice、channel、map,Go 提供了 ⌘ Read more
=