# 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/ou26qga
通過 Zig,學習 C-- 元編程**
儘管 Zig 社區宣稱 Zig 語言是一個更好的 C (better C),但是我個人在學習 Zig 語言時經常會 “觸類旁通”C++。在這裏列舉一些例子來說明我的一些體會,可能會有一些不正確的地方,歡迎批評指正。“元能力” vs “元類型”在我看來,C++ 的增強方式是希望賦予語言一種 “元能力”,能夠讓人重新發明新的類型,使得使用 C++ 的程序員使用自定義的類型,進行一種類似於 “領域內語言 ⌘ Read more