# 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/fkv4mjq
打造 Go 語言最快的排序算法**
前言--說到排序算法,很多同學會想起快速排序、堆排序、冒泡排序這些耳熟能詳的算法。瞭解得深一些的同學,也可能看過例如 Python 的 timsort 以及 C++ intro sort 之類的排序算法。但是我們也會有很多疑問,例如 Go 語言中使用的快速排序和我們書上學到的快速排序有什麼區別呢?如果我們自己寫一個快排,會比 Go 語言自帶的快嗎?排序算法方面業界最新的進展是什麼呢,有沒有一個算法 ⌘ Read more