# 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/ojxw3iq
【Go】彙編快速指南**
如果想要深入瞭解 Go 語言,Go 彙編是一個繞不過的環節。本文以 Go 官方文檔 A Quick Guide to Go's Assembler 爲基礎對 Go 彙編進行介紹。Go 彙編是在 Plan 9 彙編的基礎上進化出的新版本。如果需要進一步深入學習,還是建議閱讀 A Manual for the Plan 9 assembler 。關於 Go 的彙編,最重要的一點是它不是底層機器碼的直接 ⌘ Read more