# 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/tld6yzq
Golang 二進制文件混淆保護**
【導讀】本文介紹了作者避免開發者信息泄露的思路。Go 實在是太棒了。一處編譯,處處運行,沒有依賴,毫無麻煩!不過麻煩的事情來了。我們寫一個程序,就是想在別人的電腦上運行的。然而,Go 語言的默認機制,會泄漏我們的一些信息,雖然不多,但也有點尷尬。本文結合網上的一些常用方法,總結出一套通用的簡單易行的保護措施。刪除調試符號默認情況下 go 編譯出的程序在運行出錯時會輸出自己在哪個線程哪個文件哪個函數 ⌘ Read more