# 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/savtwlq
如何設計一個排行榜?**
前言--大家好,我是田螺。最近有位星球粉絲問:田螺哥,如何設計一個排行榜?日常開發中,我們經常需要涉及設計排行榜的需求,如禮物排行榜、微信運動排行、王者榮耀段位排行榜等等。今天我帶大家聊聊,排行榜如何設計。數據庫的 order by-------------很多小夥伴,一提到排行榜,就想到數據庫的order by。其實這個思路是沒有錯的,我們假設用order by來實現一個簡單的微信運動步數排行榜 ⌘ Read more