# 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/tbkevlq
Go 學習筆記 - String 底層實現原理**
1、字符集計算機裏 1bit 可以是 0 也可以是 1 8bit 組成 1byte, 全爲 0 時表示數字 0, 全爲 1 時表示數字 255 2byte 可以表示 65536 個數字, 更多字節數可以表示更大的數字範圍 字符如何表示呢? ASCII 字符集: 一共收錄了 128 個字符, 其擴展字符集也只有 256 個 (包括英文字母、阿拉伯數字、西文字、控制字符) ⌘ Read more