# 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/tqhmadq
Go 協程與併發機制(一)進程與線程**
【概念】      進程和線程都是操作系統所要管理的對象。      線程是操作系統能夠進行運算調度的最小單位。大部分情況下,它被包含在進程之中,作爲進程的實際運作單位。而進程是程序運行的實例。【圖示】Fig.1 進程內部結構        在多線程程序中,一個單獨進程會有少到幾個,多到上百個線程協同工作;每個線程擁有屬於他們自己的程序計數器(指向當前指令的內存),棧,以及 TLS(線程本地內存 ⌘ Read more