# 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/ty5unbq
linux 操作系統:進程間通信方式總結**
一. 爲什麼需要進程間通信-----------------1). 數據傳輸一個進程需要將它的數據發送給另一個進程。2). 資源共享多個進程之間共享同樣的資源。3). 通知事件一個進程需要向另一個或一組進程發送消息,通知它們發生了某種事件。4). 進程控制有些進程希望完全控制另一個進程的執行 (如 Debug 進程),該控制進程希望能夠攔截另一個進程的所有操作,並能夠及時知道它的狀態改變。注:爲什 ⌘ Read more