# 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/s36jdna
Golang 字符的 Unicode 與 UTF-8
【導讀】遇到編碼問題怎麼辦?瞭解一下 unicode 和 utf-8 編碼臨危不亂!大多數的我們,真正認識到有字符編碼這回事,一般都是因爲遇到了亂碼,因爲我國常用的編碼是 GBK 以及 GB2312:用兩個 Byte 來表示所有的漢字,這樣,我們一共可以表示 2^16 = 65536 個字符,一旦我們的 GBK 以及 GB2312 編碼遇到了其他編碼,比如日本,韓國的編碼,就會變成亂碼,當然,這時 ⌘ Read more=