# 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/rmsxaya
用 Rust 和 OpenCV 打造 ASCII 圖片**
使用 Rust 和 OpenCV 的動態組合,將任何舊圖片變成一個炙手可熱的 ASCII 藝術圖片。想象文字像像素一樣跳舞,在純文本的基礎上捕捉圖像的本質。OpenCV 下載地址:https://opencv.org/releases/創建一個 Rust 項目:cargo new img-to-ascii在 Cargo.toml 文件中,加入以下依賴項:[dependencies]opencv = ⌘ Read more