# 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/32wypwq
以可視化方式解釋 Go 併發 - 通道**
在併發編程中,許多編程語言採用共享內存 / 狀態模型。然而,Go 通過實現 通信順序進程 (CSP) 區別於衆多語言。在 CSP 中,一個程序由並行的進程組成,這些進程不共享狀態,而是使用通道進行通信和同步它們的操作。因此,對於有意採用 Go 的開發人員來說,理解通道的工作原理變得至關重要。在本文中,我將使用 Gopher 運行他們的虛構咖啡館的可愛比喻來闡述通道,因爲我堅信人類更容易通過視覺學習 ⌘ Read more