# 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/q2yw3oa
手把手教你用 Go 語言打造一款簡易 TCP 端口掃描器**
前言--Hey, 大家好呀, 我是碼農, 星期八。這次呢, 咱們來實現一個簡單的 TCP 端口掃描器!也來體驗一下黑客的風采!TCP 掃描本質--------我們在使用 TCP 進行連接時, 需要知道對方機器的ip:port正常握手連接成功的話, 流程如下。連接失敗 有正常, 就有失敗, 如果被連接方關閉的話, 流程如下。如果有防火牆 還有一種可能是, 端口開放, 但是防火牆攔截, 流程如下。 ⌘ Read more