# 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/cx7hcwa
Go 程序打成 rpm 包,也太簡單了**
環境準備-------首先是 rpmbuild 的相關依賴,無論是什麼語言寫的程序,只要是打包成 rpm 包,就都需要這些yum install -y gcc make rpm-build redhat-rpm-configrpmbuild 的使用,需要你寫不少的配置,非常繁瑣,有研究過的人自然知道其中的淚。但大多數情況下,一個簡單的 rpm 包可能就只是執行一個二進制文件而已,完全沒有去花費大量 ⌘ Read more