# 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/jlm22gq
一文徹底理解 Go 語言棧內存 - 堆內存**
計算機爲什麼需要內存?計算機是運行自動化程序的載體,程序 (或稱之爲進程) 由可執行代碼被執行後產生。那麼計算機在運行程序的過程中爲什麼需要「內存」呢?爲了輕鬆理解這個問題,我們先來簡單看看:代碼的本質 可執行代碼被執行後,程序的運行過程 代碼的本質-----簡單來看代碼主要包含兩部分:指令部分:中央處理器 CPU 可執行的指令 數據部分:常量等 代碼包含了指令,代碼被轉化 ⌘ Read more