# 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/eeai2ma
淺顯易懂 Linux 的啓動流程**
今天,一起探討操作系統的啓動流程。這個部分比較有意思。因爲在 BIOS 階段,計算機的行爲基本上被寫死了,程序員可以做的事情並不多;但是,一旦進入操作系統,程序員幾乎可以定製所有方面。所以,這個部分與程序員的關係更密切。我主要關心的是 Linux 操作系統,它是目前服務器端的主流操作系統。下面的內容針對的是 Debian 發行版,因爲我對其他發行版不夠熟悉。   1、加載內核    ------- ⌘ Read more