# 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/mhkrlqq
Go 學設計模式 -- 原型模式的考查點和使用推薦**
前言--如果一個類的有非常多的屬性,層級還很深。每次構造起來,不管是直接構造還是用建造者模式,都要對太多屬性進行復制,那麼有沒有一種好的方式讓我們創建太的時候使用體驗更好一點呢? 今天的文章裏就給大家介紹一種設計模式,來解決這個問題。這篇內容要說的是創造型設計模式裏的原型模式,如果寫過點 JS 代碼的話,大家可能聽說過原型鏈這麼個東西,原型模式在 JavaScript 實現裏確實廣泛應用,它那個面 ⌘ Read more