# 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/fdjthqq
C---Go 調用約定的原理**
什麼是調用約定? 在計算機科學中,調用約定是一種定義子過程從調用處接受參數以及返回結果的方法的約定彙編調用約定------如下彙編代碼中,通過中斷 0x10 將 BP 指向的字符串輸出到顯示設備中,字符串長度儲存在 CX 中, CPU 處理中斷時會通過 CX、BP 等寄存器獲得調用參數,將字符串 Hello World 寫入顯存中,進而展示在屏幕上。hello: DB "Hello World" ⌘ Read more