# 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/t7wuurq
實例解讀 boost 庫中優秀的網絡庫 asio
一、須知--------開發大型項目,肯定需要使用一些框架,這些框架可以由你自己親自手工實現,也可以直接引用第三方庫。1、自己實現框架優點:程序的所有細節都能非常清楚的掌握。缺點:工作量大、難度高。2、引用第三方庫優點:選擇一個穩定、靠譜的第三方框架,將很大程度降低工作量、提高開發效率,將精力重點放在業務邏輯。缺點:庫本身有功能和性能問題。因此,請儘量使用優秀的第三方庫,避免重複造輪子(自己造的輪 ⌘ Read more