# 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/j5nxkha
10 個令人驚歎的 Go 語言技巧,讓你的代碼更加優雅**
在開發生產項目的過程中,我注意到經常會發現自己在重複編寫代碼,使用某些技巧時沒有意識到,直到後來回顧工作時才意識到。爲了解決這個問題,我開發了一種解決方案,對我來說非常有幫助,我覺得對其他人也可能有用。以下是一些從我的實用程序庫中隨機挑選的有用且多功能的代碼片段,沒有特定的分類或特定於系統的技巧。1\\. 追蹤執行時間的技巧如果你想追蹤 Go 中函數的執行時間,有一個簡單高效的技巧可以用一行代碼實現, ⌘ Read more