# 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/amgvzsq
手把手教你實現 Golang 跨平臺編譯**
前言--大家好,我是星期八,是一個每天都要在鏡子前給自己梳僅剩三根頭髮的三年碼農。上面的文章,我們已經搭建了 Go 語言環境,可以戳這裏:手把手帶你進行 Golang 環境配置,還實現了第一個 Go 程序,本次我們來安排一下如何實現跨平臺編譯。跨平臺編譯-----跨平臺編譯,也叫交叉編譯,我可以在 win 平臺上,編譯成 linux 平臺可執行的文件。這也是 Go 備受青睞的原因,像 java,p ⌘ Read more