# 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/extavqq
Go 語言 new 和 make 關鍵字的區別**
本篇文章來介紹一道非常常見的面試題,到底有多常見呢?可能很多面試的開場白就是由此開始的。那就是 new 和 make 這兩個內置函數的區別。其實這個問題本身並不複雜,簡單來說就是,new 只分配內存,而 make 只能用於 slice、map 和 chan 的初始化,下面我們就來詳細介紹一下。new---new 是一個內置函數,它會分配一段內存,並返回指向該內存的指針。其函數簽名如下:源碼// T ⌘ Read more