# 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/pwqulra
在 WASM-WASI 上運行 Rust 的 6 個基礎常識**
在受限的環境中運行 Rust 會帶來挑戰,代碼可能無法訪問完整的操作系統,如 Linux、Windows 或 macOS。可能對文件、網絡、時間、隨機數甚至內存的訪問有限(或沒有)。我們將探索變通方法和解決方案。這篇文章主要關注在 “WASM-WASI”(一種類似容器的環境)上運行 Rust 代碼。作爲在瀏覽器或嵌入式系統中運行 Rust 的第一步,它是有價值的。將代碼運行在 WASM-WASI ⌘ Read more