# 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/tdk6c2q
Go 語言類型轉換的陷阱**
01 介紹Go 語言作爲強類型語言,在使用 Golang 開發項目時,經常會遇到類型轉換的場景,整型之間可以直接轉換,字節切片和字符串之間也可以直接轉換。但是,如果整型和字符串之間做類型轉換,則需要使用 strconv 標準庫提供的函數。02 標準庫 strconv 類型轉換Go 語言標準庫 strconv[1] 提供了一些類型轉換的函數,比如在項目開發中使用比較多的整型和字符串之間的類型轉換。f ⌘ Read more