# 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/mlnlsja
把「Go 靜態分析」放進你的工具箱**
背景--提到靜態分析,大家第一反應可能是 Sonar、FindBugs 等靜態代碼檢查工具,它通過對源碼的分析,不實際運行代碼,檢查代碼是否符合編碼規範,發現源碼中潛在的漏洞。這當中主要通過靜態編譯相關技術,其實大家在日常的業務代碼開發過程中藉助 IDE,使用的代碼格式化、查找某方法的定義 / 調用等功能也是基於這套技術實現的。本文期望擴充靜態分析的定義,泛指所有通過靜態編譯相關技術實現的工具,不 ⌘ Read more