My Notes

Search

Search IconIcon to open search

Federation Network

Last updated Feb 28, 2023

Analyze Mastodons federation network.

Plan: Use the API to lookup admin accounts of other servers. If they can be reached, they do not block each other.

# Pipeline

# Data Source

# Data Filtering

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
db.instances.count_documents(
    {
        "search_result.type": {"$exists": False},
        "search_result.error": {"$regex": "param"},
        "dead": False,
        "up": True,
        "users": {"$gte": 1},
        "active_users": {"$gte": 1},
        "admin": {"$ne": None},
    }
)

# Problems