# 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/psltwkq
Golang 搭配 makefile 真香!**
這篇文章打算跟大家聊聊 Makefiles,作爲一個後端開發者,熟練掌握 Makefiles 咖啡可以多喝幾口。書歸正傳golang 內置了很多 go commands 可以幫助我們完成 go 每個階段的開發工作,但是很多時候我們需要分享我們的代碼給其他人,初次看到我們代碼工程的人可能並不知道怎麼讓它跑起來。當然你也可以通過README.md或者其他方式來告知讀者。但對於那些只想快速構建程序的人來 ⌘ Read more