# 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/hoevxbq
如何在 Go 語言中實現 Unix 風格的進程管道?**
今天看到包雲崗老師的一條微博:這個一小時就在 Unix 中實現了管道的系統調用的出處來自於《Unix 傳奇》一書,這本書是我讀過的最好的一本關於 Unix 歷史的書籍,裏面介紹了很多大神的光輝事蹟,Ken Thompson 是 Unix 的創始人之一,他還是 Go 語言的三巨頭之一。那麼,在 Go 語言中,如何實現進程的管道呢?在 Go 語言中,你可以使用exec包來啓動一個進程。主要的函數是Co ⌘ Read more