# 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/qglhzfa
Go 語言實現的可讀性更高的併發神庫 conc
前言\\-\\- 哈嘍,大家好,我是 asong;前幾天逛 github 發現了一個有趣的併發庫 - conc,其目標是: 更難出現 goroutine 泄漏 處理 panic 更友好 併發代碼可讀性高 從簡介上看主要封裝功能如下: 對waitGroup進行封裝,避免了產生大量重複代碼,並且也封裝 recover,安全性更高 提供panics.Catcher封裝r ⌘ Read more