# 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/vpdr6ha
怎麼選擇 Go 文件讀取方案**
文件處理是一個常見的問題,同時 Go 又提供了非常多的文件讀取方法,容易讓人患選擇困難症。之前我們轉過一篇超全總結:Go 讀文件的 10 種方法的文章,列舉了 10 餘種讀取方式。本文作爲其擴展,以實際不同大小的文件爲例,來具體比較下它們的差異。 創建不同大小的文件---------首先,我們需要有比較對象。鑑於電腦磁盤空間有限,本文就比較 KB、MB、GB 三個級別的文件讀取差異。packag ⌘ Read more