# 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/zjwdi7q
Go 學習筆記 - 協程和 IO 多路複用**
1、什麼是協程?進程的虛擬地址空間劃分爲用戶空間和內核空間 線程是進程中的執行體, 擁有一個執行入口, 以及從虛擬地址空間中分配的棧 (包括用戶棧和內核棧) 操作系統會記錄線程控制信息, 線程在獲得時間片就可以被執行, CPU 的指令指針和棧指針就會記錄和執行線程相關的信息 當線程創建了很多個執行體, 並且也給這些執行體指定入口和分配棧內存, 就可以按需調度這些執行體 線程 ⌘ Read more