# 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/6wcqgvq
內存管理中分頁和分段有什麼區別?**
分頁和分段是操作系統在內存管理中用於有效分配內存和管理進程的兩種基本技術。01 分頁(Paging)-------------分頁是一種無需連續分配物理內存的內存管理方案。進程的地址空間被劃分爲固定大小的塊,稱爲頁,而物理內存被劃分爲固定大小的塊,稱爲幀。關鍵概念頁:進程地址空間的固定大小塊。 幀:物理內存的固定大小塊。 頁表:用於將虛擬地址映射到物理地址的數據結構。頁表中的每個條目對 ⌘ Read more