# 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/dfjjveq
Go 反射應用與三大定律**
概述\\-\\- 在計算機學中,反射 (reflection) 是指計算機程序在運行時 (runtime) 可以訪問、檢測和修改它本身的狀態或行爲的一種能力。簡單來說,反射就是程序在運行的時候能夠觀察並且修改自己的行爲。常見場景----Go 中 反射 常見的使用場景有 元數據編程,確認接口實現機制。元數據編程通過 反射 獲取字段標籤,實現簡單的元數據編程,比如 ORM 框架中的 Model 屬性。pac ⌘ Read more