# 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/joirpoa
如何使用 Delve 和 eBPF 更快地調試 Go 程序**
前言此文章將解釋如何使用 Delve[1] 跟蹤 Go 程序,以及 Delve 如何利用 eBPF 在後臺優化效率和速度。Delve 的目標是爲開發人員提供愉快且高效的 Go 調試體驗。因此,本文重點介紹了我們如何優化函數跟蹤子系統,以便您可以更快地檢查程序並找到根本原因分析。Delve 的跟蹤實現有兩個不同的後端,一個是基於 ptrace 的,另一個使用 eBPF。如果您不熟悉任何這些術語,請不 ⌘ Read more