# 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/wj3wusq
使用 go 語言開發 hive 導出工具**
1 前言----新版 hive 提供了 beeline 工具,可以執行 SQL 並導出數據,不過操作還是有點複雜的,團隊裏有些同學不會 Linux 的基本操作,所以我花了億點點時間寫了個交互式的命令行工具方便使用。2 效果----命令行工具,就是這麼樸實無華。3 探索過程------一開始是打算用 bash 腳本,結果發現根本不會寫,beeline 導出數據只能使用輸出重定向,shell 腳本里面 ⌘ Read more