# 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/jwt2lka
看懂 GDB 調試核心:Ptrace 工作原理解析**
在軟件開發的世界裏,調試是確保程序質量和穩定性的關鍵環節。當我們面對複雜的代碼邏輯和難以捉摸的程序錯誤時,一個強大的調試工具就如同黑暗中的明燈,爲我們指引方向。而 GDB(GNU Debugger)無疑是衆多開發者手中的得力助手,其背後的 Ptrace 技術則是支撐 GDB 實現強大調試功能的核心祕密。本文不是介紹 GDB 的使用方式,而是大概介紹 GDB 的實現原理,當然 GDB 是一個龐大而複 ⌘ Read more