# 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/yyydbvq
Go 語言機制之棧與指針**
原文地址:https://www.ardanlabs.com/blog/2017/05/language-mechanics-on-stacks-and-pointers.html 原文作者:William Kennedy序言這個系列包含四篇文章,主要講解 Go 言語指針、棧、堆、逃逸分析和值 / 指針語義背後的機制和設計理念。這是系列第一篇文章,主要講解棧和指針。介紹我並不打算爲指針說 ⌘ Read more