# 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/kv2odqa
Go 標準庫依賴的那些 modules
對於程序員來說,編寫的代碼依賴標準庫是 “天經地義” 的事情。標準庫在程序員眼中就是高質量的代名詞,也是最值得信賴的非自己所寫的代碼,當然更是代碼包依賴關係鏈條上的最後一環,即所有直接或間接依賴的第三方 module 最終都會依賴標準庫。前兩天組內學習 rust[1] 的小夥伴說 rust 的標準庫還依賴第三方庫 (注:我對 rust 瞭解不深,尚未證實),這引發了我的一個疑問: Go 標準庫是否 ⌘ Read more