# 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/2qsxira
不懂 Makefile 的程序員還敢寫代碼嗎?**
哈嘍大家好,我是小康!上次我們聊了 GCC、G++ 和 GDB,搞清楚了這些工具在 C/C++ 開發中的用法。有了它們,你已經可以愉快地編譯、調試代碼了。但我問你,每次編譯項目是不是手動敲gcc 命令? 當項目文件一多,命令就像繞口令一樣——又長又複雜,還特別容易出錯。 別怕,今天我就帶你認識一個 “懶人神器”——Makefile。用 Makefile 的好處很簡單:代碼編譯自動化,輕鬆又高效; ⌘ Read more