# 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/ywudoqa
基於 Rust 構建支持原生零知識證明生成的虛擬機**
在本文中,我們將使用 Rust 構建一個加密虛擬機(VM),靈感來源於 TinyRAM 模型,並採用精簡的指令集以保持簡潔和高效。這個虛擬機能夠在執行計算的同時,原生生成零知識證明(ZKP)。對於從事加密系統或探索安全可驗證處理的人員來說,這是一個實用的工具。讓我們開始吧!架構--該項目分爲以下幾個模塊:核心虛擬機 (vm.rs)實現虛擬機的執行,包括指令集和狀態捕獲。 優雅地處理運行時錯誤 ⌘ Read more