# 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/w3xctha
Go 語言 SQL 解析之 goyacc 實戰**
【導讀】本文介紹了語法解析基本概念,結合 goyacc 實戰做了詳細介紹。一、Lex & Yacc 簡介---------------Lex & Yacc 是用來生成詞法分析器和語法分析器的工具,與 GNU 用戶所熟知 Flex&Bison 所對應(Flex 是由 Vern Paxon 實現的一個 Lex,Bison 則是 GNU 版本的 YACC)。除了編譯器領域,Lex & Yacc 對於 D ⌘ Read more