# 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/7pfwcsq
Go 的併發沒有它,就像 iphone 沒有網絡一樣**
簡介    Golang 的併發屬性是該語言的一個大殺器,說到併發就不能不提Channel, 你可以把它看成一個管道,通過它併發核心單元就可以發送或者接收數據進行通訊。這篇文章來深入瞭解一下 channel。 channel 的設計是基於 CSP 模型的。CSP 是 Communicating Sequential Process 的簡稱,中文可以叫做通信順序進程,是一種併發編程模型,由 Ton ⌘ Read more