# 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/rgvkcva
golang 面試總結**
前言前段時間找工作搜索 golang 面試題時,發現都是比較零散或是基礎的題目,覆蓋面較小。而自己也在邊面試時邊總結了一些知識點,爲了方便後續回顧,特此整理了一下。相比較於其他語言, Go 有什麼優勢或者特點?Go 允許跨平臺編譯,編譯出來的是二進制的可執行文件,直接部署在對應系統上即可運行。 Go 在語言層次上天生支持高併發,通過 goroutine 和 channel 實現。channe ⌘ Read more