# 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/52z6xtq
內存是怎樣一步步被分配出來的?**
大家好,我是小風哥,今天簡單聊聊內存分配。 我們申請一塊內存時計算機內部發生了什麼?看下這句代碼:這裏有兩部分,一個是 malloc,再一個是你寫的代碼。malloc 實際上屬於標準庫,標準庫裏有什麼呢?數學相關的函數,sin、cos、絕對值、數冪函數等;字符相關函數,判斷大小寫等;字符串操作函數、字符串拷貝、拼接比較等;當然還有內存管理函數,就是這裏提到的 malloc/free,當然還有很多 ⌘ Read more