# 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/d5i6m3a
深入理解 Go 語言 — 協程和調度**
在今天的編程世界中,協程已經成爲了構建併發程序的重要工具。協程提供了一種在單個線程中處理多個任務的強大機制。而在 Go 語言中,協程的概念被引入爲 “goroutine”,並作爲語言核心特性之一。在本文中,我們將深入探討 Go 語言中的協程及其調度機制。一、協程的概念協程並不是 Go 發明的概念,維基百科上記錄,協程術語 coroutine 最早出現在 1963 年發表的論文中,論文的作者爲美國計 ⌘ Read more