# 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/jcejprq
縮減 Golang 編譯後文件大小的三種方法**
測試機器:Mac OS 10.15 Golang 版本:1.15.2 爲什麼要縮減 Golang 編譯後的文件大小呢?不縮減可不可以呢。正常來說一般服務器硬盤資源相對來說都比較充足,但如果類似樹莓派上的一些設備上,硬盤資源相對來說就不是那麼充足,這時就需要我們斤斤計較文件大小了。首先,我們先對比一下兩段 Hello World 代碼package mainimport "fmtfunc ⌘ Read more