# 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/uwbvuzq
golang 使用 core dump 分析定位程序崩潰問題**
\\*一、前言core dump 是一個包含着意外終止的程序其內存快照的文件。這個文件可以被用來事後調試(debugging)以瞭解爲什麼會發生崩潰,同時瞭解其中涉及到的變量。通過 GOTRACEBACK,Go 提供了一個環境變量用於控制程序崩潰時生成的輸出信息。這個變量同樣可以強制生成 core dump,從而使調試成爲可能。1.1 GOTRACEBACKGOTRACEBACK 控制程序崩潰時輸出的 ⌘ Read more
*