# 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/xzzvvfa
Go 切片與技巧(附圖解)**
你好,我是太白,今天和你聊聊 Go 語言的切片(Slice)以及它的一些技巧。1 前言----切片是 Go 語言中最多被使用的數據結構之一。本文將介紹切片的創建、操作、表達式以及使用的技巧。2 數組----slice 類型是建立在 Go 的數組類型之上的抽象,因此要理解 slice,我們必須首先理解數組。先看一段代碼: var a [4]int // 數組類型: 定義指定長度和元素類型 a[0] ⌘ Read more