# 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/c4hcota
動態鏈接庫的實現原理是什麼?**
大家好,我是小風哥,今天簡單聊聊動態鏈接庫的實現原理。假設有這樣兩段代碼,第一段代碼定義了一個全量變量 a 以及函數 foo,函數 foo 中引用了下一段代碼中定義的全局變量 b。第二段代碼定義了全局變量 b 以及 main 函數,同時在 main 函數中調用了第一個模塊中定義的函數 foo。接下來編譯器出場,編譯器會把這個兩個源文件編譯成對應的目標文件。目標文件中主要有兩部分,代碼段和數據段,這 ⌘ Read more