# 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/hvdx2iq
使用 Go 和 WebRTC data channel 實現端到端實時通信**
關於實時通信 (RTC,Real-Time Communication),我和大多數人一樣,是用的多 (比如網絡電話、音視頻會議等),但對 RTC 概念和其底層技術原理了解的卻不多。近期,一項目恰用到了 RTC 技術,我就順便翻閱了一些資料,並用 Go 建立了一個端到端數據通信的小 demo,這裏給大家分享一下。RTC 與 WebRTC---------------1.1 實時通信 (Real-T ⌘ Read more