# 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/eeeb6oq
使用 Rayon 在 Rust 中構建一個線程競賽遊戲**
Rust 中的並行性允許同時執行多個操作,充分利用多核處理器的優勢。Rayon crate 是一個功能強大的數據並行庫,能夠以最少的樣板代碼並行運行任務。我們將構建一個遊戲,其中多個線程競相完成一個任務,用戶可以打賭哪個線程將首先完成。這個遊戲將幫助你瞭解如何在 Rust 中使用 Rayon 庫管理和利用線程。使用以下命令創建一個 Rust 新項目:cargo new threadracegame ⌘ Read more