# 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/xxnsada
Golang 1-19 原子操作再度升級**
8 月 2 號,Go 1.19 終於發佈,這次的更新包含了對於泛型帶來的諸多問題修復,提升了泛型性能(據官方描述性能優化了 20%),以及內存模型與 C, C++, Java, Rust 的對齊,還有我們今天的主角:sync/atomic 的新類型。感興趣的同學可以看下官方的 release blog[1],release note[2] 以及 下載安裝 [3],體驗一下新版本帶來的特性。今天我們 ⌘ Read more