# 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/pgbpbta
golang tcp socket 那些事兒**
前言--前幾年剛學 golang 時聽過這麼個論調:golang 要制霸雲計算行業。具體是不是這樣筆者就不知道了。不過這也體現出 golang 在網絡編程這一塊的實力可見一斑。今天我們就探討下網絡編程中的 socket 編程的那些事兒。socket 入門概念socket,中文是套接字的意思。套接字又是幹什麼的?是負責進程間通信的。進程間通信有很多種,socket 在進程間通信中起到了什麼樣的作用呢 ⌘ Read more