# 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/ndvhipq
「Go 工具箱」推薦一個非常簡單的深拷貝工具:deepcopy**
大家好,我是漁夫子。本號新推出「go 工具箱」系列,意在給大家分享使用 go 語言編寫的、實用的、好玩的工具。今天給大家推薦的工具是 deepcopy,一個可以對指針、接口、切片、結構體、Map 都能進行深拷貝的工具。在 Go 中需要對一個變量進行拷貝時分淺拷貝和深拷貝。淺拷貝就是拷貝後就是無論改變新值還是原值都對對另一個產生影響,比如切片。而深拷貝則是將目標值完全拷貝一份,消除這種影響。實現原理 ⌘ Read more