# 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/ngwitgq
Go 開發常用操作技巧 -- 字符串**
Go 語言字符串的字節使用的是 UTF-8 編碼,是一種變長的編碼方式。使用 1~4 個字節表示一個符號,根據不同的符號而變化字節長度。含中文字符串截取字符串的長度 我們可以使用 len()函數來獲取字符串的長度,英文爲 1 個字節長度,中文爲 3 個字節長度。可以使用 變量[n]的方式來獲取第 n+1 個字節,返回的是對應的 Unicode 值。其中 n 的範圍是 [0,len(n)-1] ⌘ Read more~