# 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/el6ibrq
Go 語言中常見 100 問題 - 創建通用工具包**
創建 util 包不是一種好的做法本文將討論 Go 語言中一種常見的不好的實踐:創建 utils、common 和 base 等共享包。首先分析這種做法存在的問題,然後討論如何改進。下面是一個受 Go 官方博客啓發構造的例子,實現一個集合數據結構。在 Go 語言中完成該功能的慣用方法是通過 map[K]struct{} 類型來處理,K 是 map 中允許的任何類型作爲鍵,而值是 struct{} ⌘ Read more