# 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/zwlfm5q
Go 字符串編碼?UTF-8?Unicode?看完就通!**
Go byte rune string-------------------string 類型在 golang 中以 utf-8 的編碼形式存在,而 string 的底層存儲結構,劃分到字節即 byte,劃分到字符即 rune。本文將會介紹字符編碼的一些基礎概念,詳細講述三者之間的關係,並提供部分字符串相關的操作實踐。一、基礎概念介紹 Unicode,UTF-8 之間的關係與編碼規則1、Unico ⌘ Read more