# 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/bp53kxq
必擼系列!Go 另外幾個黑魔法技巧彙總**
而最近一段時間,筆者重新梳理了一下 go 知識點,並深入地看看了它的源碼,在實踐中又有了新的沉澱,於是寫下這篇文章和大家分享一下。一、魔法:最小化運行時 (minimal runtime)我們知道,go 有一層很重的運行時 (runtime),包括內存管理、goroutine 調度等重要組件;這些組件極大地方便了應用程序的開發和迭代,但也帶來了一些問題,比如:Go 程序自動接管了內存,並自帶 GC ⌘ Read more