# 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/ii6m7gq
「Go 工具箱」推薦一個實現進度條功能的工具:uiprogress**
大家好,我是漁夫子。本號新推出「go 工具箱」系列,意在給大家分享使用 go 語言編寫的、實用的、好玩的工具。今天給大家推薦的是在終端(terminal)下能夠顯示進度條的工具:uiprogress。先看下使用該包的效果圖:相信大家在 linux 或 mac 終端上都下載過東西,然後會出現下載的進度條。今天我們就給大家分析下實現原理並演示其效果。安裝$ go get -v github.com/g ⌘ Read more