# 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/fzcerva
深究 Go CPU profiler
在 profiling 方面,Go 是獨一無二的。在 runtime 裏面它包含強大的,有自主意識的 profilers。其他編程語言像 Ruby,Python,或者 Node.js,包含了 profilers 或者一些 APIs 接口用來寫 profiler。但與 Go 提供的開箱即用的服務相比,它們的範圍還是有限的。如果你想學習更多關於 Go 提供的可觀測性工具,我強烈建議 Felix Gei ⌘ Read more