# 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/6vzqnoa
Go timer Code Review
概述--Go 語言中的計時器常用於定期執行某個操作或者在指定時間內執行某個操作,主要通過標準庫的 time 包中的相關方法來實現,如 time.After(), time.Tick() 等。 相信讀者已經可以熟練掌握應用層面,本文主要分析計時器功能的內部代碼實現。K 叉堆----在正式分析源代碼之前,我們首先簡單瞭解下 K 叉堆 這種數據結構。 K 叉堆(k-ary heap)是一種基於二叉樹 ⌘ Read more