# 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/ikmodhq
【多線程】synchonized 實現過程**
synchronized 關鍵字是 Java 中用於實現線程同步的一種機制,旨在確保多個線程在執行同步代碼塊時的原子性和可見性。synchronized 可以用於方法或者代碼塊上,以確保同一時刻只有一個線程可以執行被同步的代碼。synchronized 的實現過程1. 鎖的獲取和釋放• 方法級的同步:當一個方法被 synchronized 修飾時,它鎖定的是調用該方法的對象實例(如果是 stati ⌘ Read more