# 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/jveopwq
一起用 Go 做一個小遊戲(上)**
引子--最近偶然看到一個 Go 語言庫,口號喊出 “一個超級簡單(dead simple)的 2D 遊戲引擎”,好奇點開了它的官網。官網上已經有很多可以在線體驗的小遊戲了(利用 WASM 技術)。例如曾經風靡一時的 2048:當然只要安裝了 Go,我們也鍵入下面的命令本地運行這個遊戲:$ go run -tags=example github.com/hajimehoshi/ebiten/v2/e ⌘ Read more