# 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/7lqqq7a
[譯]Go 語言常用文件操作彙總**
Go 官方提供的文件操作標準庫分散在os、ioutil等多個包中,裏面有非常多的方法涵蓋了文件操作的所有場景,不過因爲我平時開發過程中需要直接操作文件的場景其實並不多,在加上 Go 標準庫的文檔太難搜索,每次遇到要使用文件函數時都是直接 Google 查對應的函數。偶然查到國外一個人在 2015 年寫的博客,他用常用的文件函數彙總了 30 個文件操作場景,包括四大類:基本操作、讀寫操作、文件壓縮、 ⌘ Read more