# 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/idclnoq
爲什麼你不應該接受有 race 的 Go 代碼**
在任何語言的併發編程場景中,都有 race 問題,現代語言爲了解決 race 問題有兩種思路,一種是像 rust 那樣的通過所有權 + Sync/Send 限制用戶儘量無法寫出帶 race 的代碼;一種是像 Go 這樣,通過 race detector 在測試期間檢查數據競爭問題。Go 的 race detector 設計決定了其無法在線上環境開啓,而很多公司的項目上線前其實是沒有 race te ⌘ Read more