Removed
This commit is contained in:
pare
f12c26cd8b
commit
d7e78f959c
S'han modificat 4 arxius amb 0 adicions i 9292 eliminacions
177
db-setup.py
177
db-setup.py
|
@ -1,177 +0,0 @@
|
||||||
import getpass
|
|
||||||
import os
|
|
||||||
import sys
|
|
||||||
from mastodon import Mastodon
|
|
||||||
from mastodon.Mastodon import MastodonMalformedEventError, MastodonNetworkError, MastodonReadTimeout, MastodonAPIError
|
|
||||||
import psycopg2
|
|
||||||
from psycopg2 import sql
|
|
||||||
from psycopg2.extensions import ISOLATION_LEVEL_AUTOCOMMIT
|
|
||||||
|
|
||||||
def get_parameter( parameter, file_path ):
|
|
||||||
# Check if secrets file exists
|
|
||||||
if not os.path.isfile(file_path):
|
|
||||||
print("File %s not found, asking."%file_path)
|
|
||||||
write_parameter( parameter, file_path )
|
|
||||||
#sys.exit(0)
|
|
||||||
|
|
||||||
# Find parameter in file
|
|
||||||
with open( file_path ) as f:
|
|
||||||
for line in f:
|
|
||||||
if line.startswith( parameter ):
|
|
||||||
return line.replace(parameter + ":", "").strip()
|
|
||||||
|
|
||||||
# Cannot find parameter, exit
|
|
||||||
print(file_path + " Missing parameter %s "%parameter)
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
def write_parameter( parameter, file_path ):
|
|
||||||
|
|
||||||
if not os.path.exists('config'):
|
|
||||||
os.makedirs('config')
|
|
||||||
print("Setting up fediverse parameters...")
|
|
||||||
print("\n")
|
|
||||||
fediverse_db = input("fediverse db name: ")
|
|
||||||
fediverse_db_user = input("fediverse db user: ")
|
|
||||||
mastodon_db = input("Mastodon db name: ")
|
|
||||||
mastodon_db_user = input("Mastodon db user: ")
|
|
||||||
|
|
||||||
with open(file_path, "w") as text_file:
|
|
||||||
|
|
||||||
print("fediverse_db: {}".format(fediverse_db), file=text_file)
|
|
||||||
print("fediverse_db_user: {}".format(fediverse_db_user), file=text_file)
|
|
||||||
print("mastodon_db: {}".format(mastodon_db), file=text_file)
|
|
||||||
print("mastodon_db_user: {}".format(mastodon_db_user), file=text_file)
|
|
||||||
|
|
||||||
def create_table(db, db_user, table, sql):
|
|
||||||
|
|
||||||
conn = None
|
|
||||||
|
|
||||||
try:
|
|
||||||
|
|
||||||
conn = psycopg2.connect(database = db, user = db_user, password = "", host = "/var/run/postgresql", port = "5432")
|
|
||||||
cur = conn.cursor()
|
|
||||||
|
|
||||||
print("Creating table.. "+table)
|
|
||||||
# Create the table in PostgreSQL database
|
|
||||||
cur.execute(sql)
|
|
||||||
|
|
||||||
conn.commit()
|
|
||||||
|
|
||||||
print("Table "+table+" created!")
|
|
||||||
print("\n")
|
|
||||||
|
|
||||||
except (Exception, psycopg2.DatabaseError) as error:
|
|
||||||
|
|
||||||
print(error)
|
|
||||||
|
|
||||||
finally:
|
|
||||||
|
|
||||||
if conn is not None:
|
|
||||||
|
|
||||||
conn.close()
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
# main
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
|
|
||||||
# Load configuration from config file
|
|
||||||
config_filepath = "config/db_config.txt"
|
|
||||||
fediverse_db = get_parameter("fediverse_db", config_filepath)
|
|
||||||
fediverse_db_user = get_parameter("fediverse_db_user", config_filepath)
|
|
||||||
mastodon_db = get_parameter("mastodon_db", config_filepath)
|
|
||||||
mastodon_db_user = get_parameter("mastodon_db_user", config_filepath)
|
|
||||||
|
|
||||||
############################################################
|
|
||||||
# create database
|
|
||||||
############################################################
|
|
||||||
|
|
||||||
conn = None
|
|
||||||
|
|
||||||
try:
|
|
||||||
|
|
||||||
conn = psycopg2.connect(dbname='postgres',
|
|
||||||
user=fediverse_db_user, host='',
|
|
||||||
password='')
|
|
||||||
|
|
||||||
conn.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT)
|
|
||||||
|
|
||||||
cur = conn.cursor()
|
|
||||||
|
|
||||||
print("Creating database " + fediverse_db + ". Please wait...")
|
|
||||||
|
|
||||||
cur.execute(sql.SQL("CREATE DATABASE {}").format(
|
|
||||||
sql.Identifier(fediverse_db))
|
|
||||||
)
|
|
||||||
print("Database " + fediverse_db + " created!")
|
|
||||||
|
|
||||||
except (Exception, psycopg2.DatabaseError) as error:
|
|
||||||
|
|
||||||
print(error)
|
|
||||||
|
|
||||||
finally:
|
|
||||||
|
|
||||||
if conn is not None:
|
|
||||||
|
|
||||||
conn.close()
|
|
||||||
|
|
||||||
#############################################################################################
|
|
||||||
|
|
||||||
try:
|
|
||||||
|
|
||||||
conn = None
|
|
||||||
conn = psycopg2.connect(database = fediverse_db, user = fediverse_db_user, password = "", host = "/var/run/postgresql", port = "5432")
|
|
||||||
|
|
||||||
except (Exception, psycopg2.DatabaseError) as error:
|
|
||||||
|
|
||||||
print(error)
|
|
||||||
# Load configuration from config file
|
|
||||||
os.remove("db_config.txt")
|
|
||||||
print("Exiting. Run db-setup again with right parameters")
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
if conn is not None:
|
|
||||||
|
|
||||||
print("\n")
|
|
||||||
print("fediverse parameters saved to db-config.txt!")
|
|
||||||
print("\n")
|
|
||||||
|
|
||||||
############################################################
|
|
||||||
# Create needed tables
|
|
||||||
############################################################
|
|
||||||
|
|
||||||
print("Creating table...")
|
|
||||||
|
|
||||||
########################################
|
|
||||||
|
|
||||||
db = fediverse_db
|
|
||||||
db_user = fediverse_db_user
|
|
||||||
table = "world"
|
|
||||||
sql = "create table "+table+" (server varchar(200) PRIMARY KEY, federated_with varchar(200), updated_at timestamptz, saved_at timestamptz, checked boolean)"
|
|
||||||
create_table(db, db_user, table, sql)
|
|
||||||
|
|
||||||
table = "fediverse"
|
|
||||||
sql = "create table "+table+" (server varchar(200) PRIMARY KEY, users INT, updated_at timestamptz, software varchar(50), alive boolean, users_api varchar(50), version varchar(100), first_checked_at timestamptz, last_checked_at timestamptz, downs int)"
|
|
||||||
create_table(db, db_user, table, sql)
|
|
||||||
|
|
||||||
table = "blocked"
|
|
||||||
sql = "create table "+table+" (server varchar(200) PRIMARY KEY, users INT, updated_at timestamptz, software varchar(50), alive boolean, users_api varchar(50), version varchar(100), first_checked_at timestamptz, last_checked_at timestamptz, downs int)"
|
|
||||||
create_table(db, db_user, table, sql)
|
|
||||||
|
|
||||||
table = "totals"
|
|
||||||
sql = "create table "+table+" (datetime timestamptz PRIMARY KEY, total_servers INT, total_users INT)"
|
|
||||||
create_table(db, db_user, table, sql)
|
|
||||||
|
|
||||||
table = "evo"
|
|
||||||
sql = "create table "+table+" (datetime timestamptz PRIMARY KEY, servers INT, users INT)"
|
|
||||||
create_table(db, db_user, table, sql)
|
|
||||||
|
|
||||||
table = "execution_time"
|
|
||||||
sql = "create table "+table+" (program varchar(20) PRIMARY KEY, start timestamptz, finish timestamptz)"
|
|
||||||
create_table(db, db_user, table, sql)
|
|
||||||
|
|
||||||
#####################################
|
|
||||||
|
|
||||||
print("Done!")
|
|
||||||
print("Now you can run setup.py!")
|
|
||||||
print("\n")
|
|
8674
mau.csv
8674
mau.csv
La diferencia del archivo ha sido suprimido porque es demasiado grande
Cargar Diff
29
mautable.md
29
mautable.md
|
@ -1,29 +0,0 @@
|
||||||
| software | API | active users | values |
|
|
||||||
|:-----------:|:---------------------------------:|:------------:|:-------------------------------:|
|
|
||||||
| Akkoma | /nodeinfo/2.0.json | No | |
|
|
||||||
| bonfire | /.well-known/nodeinfo/2.0 | No | |
|
|
||||||
| bookwyrm | /nodeinfo/2.0 | Yes | "activeMonth", "activeHalfyear" |
|
|
||||||
| brutalinks | /nodeinfo | No | |
|
|
||||||
| calckey | /nodeinfo/2.0 | Yes | "activeHalfyear", "activeMonth" |
|
|
||||||
| diaspora | /nodeinfo/1.0 | Yes | "activeHalfyear", "activeMonth" |
|
|
||||||
| ecko | /nodeinfo/2.0 | Yes | "activeMonth", "activeHalfyear" |
|
|
||||||
| friendica | /nodeinfo/1.0 | Yes | "activeMonth", "activeHalfyear" |
|
|
||||||
| funkwhale | /api/v1/instance/nodeinfo/2.0 | Yes | "activeHalfyear","activeMonth" |
|
|
||||||
| gancio | /.well-known/nodeinfo/2.0 | No | |
|
|
||||||
| gitea | /api/v1/nodeinfo | Yes | "activeHalfyear", "activeMonth" |
|
|
||||||
| gnusocial | /api/nodeinfo/2.0.json | Yes | "activeHalfyear", "activeMonth" |
|
|
||||||
| hometown | /nodeinfo/2.0 | Yes | "activeMonth","activeHalfyear" |
|
|
||||||
| hubzilla | /nodeinfo/2.0 | Yes | "activeHalfyear","activeMonth" |
|
|
||||||
| lemmy | /nodeinfo/2.0.json | Yes | "activeHalfyear","activeMonth" |
|
|
||||||
| mastodon | /nodeinfo/2.0 | Yes | "activeMonth","activeHalfyear" |
|
|
||||||
| misskey | /nodeinfo/2.0 | Yes | "activeHalfyear","activeMonth" |
|
|
||||||
| mobilizon | /.well-known/nodeinfo/2.0 | No | |
|
|
||||||
| owncast | /nodeinfo/2.0 | Yes | "activeMonth","activeHalfyear" |
|
|
||||||
| peertube | /nodeinfo/2.0.json | Yes | "activeMonth","activeHalfyear" |
|
|
||||||
| pixelfed | /api/nodeinfo/2.0.json | Yes | "activeHalfyear","activeMonth" |
|
|
||||||
| pleroma | /nodeinfo/2.0.json | Yes (develop)| |
|
|
||||||
| plume | /nodeinfo/2.0 | No | |
|
|
||||||
| smithereen | /activitypub/nodeinfo/2.1 | Yes | "activeMonth","activeHalfyear" |
|
|
||||||
| wordpress | /wp-json/activitypub/1.0/nodeinfo | No | |
|
|
||||||
| writefreely | /api/nodeinfo | Partial | "activeHalfyear" |
|
|
||||||
| zap | /nodeinfo/2.0 | Yes | "activeHalfyear","activeMonth" |
|
|
412
servidors.csv
412
servidors.csv
|
@ -1,412 +0,0 @@
|
||||||
zion.glasseyeballs.com,mastodon
|
|
||||||
thebene.fit,mastodon
|
|
||||||
mastodon.jtl.vision,mastodon
|
|
||||||
pleroma.booths.cyou,pleroma
|
|
||||||
erisly.social,misskey
|
|
||||||
mastodon.jaminit.co.uk,mastodon
|
|
||||||
stream.tasartir.cz,owncast
|
|
||||||
twt.fuckgov.org,birdsitelive
|
|
||||||
hyss.us,mastodon
|
|
||||||
social.safestreetrebel.com,mastodon
|
|
||||||
devschile.social,mastodon
|
|
||||||
toot.org.il,mastodon
|
|
||||||
masto.ingeechat.party,mastodon
|
|
||||||
stream.labr.online,owncast
|
|
||||||
social.mx00s.com,mastodon
|
|
||||||
mastodon.zeronaut.be,mastodon
|
|
||||||
birb.cybik.moe,birdsitelive
|
|
||||||
hachyderm.io,mastodon
|
|
||||||
dvstrg.social,mastodon
|
|
||||||
muskless.social,mastodon
|
|
||||||
climatejustice.rocks,ecko
|
|
||||||
social.dragas.it,mastodon
|
|
||||||
mastodon.jessidhia.dev,mastodon
|
|
||||||
social.apcn.nz,mastodon
|
|
||||||
social.sturtz.cf,mastodon
|
|
||||||
share.peertube.support,peertube
|
|
||||||
sunny.garden,mastodon
|
|
||||||
pl.fossworld.hu,pleroma
|
|
||||||
basement.ragtag.moe,pleroma
|
|
||||||
andybalaam.uk.to,owncast
|
|
||||||
blog.uhlig.it,writefreely
|
|
||||||
mastodon.orties.net,mastodon
|
|
||||||
bird.nzbr.de,birdsitelive
|
|
||||||
lakomarka.cat,pleroma
|
|
||||||
simplefinances.us,mastodon
|
|
||||||
topspicy.social,mastodon
|
|
||||||
social.gamesartliveperformance.com,mastodon
|
|
||||||
geeky.af,mastodon
|
|
||||||
brrt.eu,mastodon
|
|
||||||
peertube.louis.software,peertube
|
|
||||||
oldinternet.net,mastodon
|
|
||||||
gametoot.org,mastodon
|
|
||||||
s.lv8.at,mastodon
|
|
||||||
gaycatgirl.sex,mastodon
|
|
||||||
chirp.enworld.org,mastodon
|
|
||||||
zapping.no-ip.info,peertube
|
|
||||||
muffin.pm,mastodon
|
|
||||||
gesichtsbu.ch,mastodon
|
|
||||||
toots.peetz0r.nl,mastodon
|
|
||||||
yt.x1337x.fr,peertube
|
|
||||||
bluejay.social,mastodon
|
|
||||||
social.ancow.name,mastodon
|
|
||||||
eskate.world,mastodon
|
|
||||||
larp.wanda.hamburg,mastodon
|
|
||||||
social.nahuelwexd.com,mastodon
|
|
||||||
mastodon.raptorpond.com,mastodon
|
|
||||||
tube.chocoflan.net,peertube
|
|
||||||
podpro.biz,mastodon
|
|
||||||
mastodon.mauve.moe,mastodon
|
|
||||||
worldkey.io,mastodon
|
|
||||||
m.noxie.ch,mastodon
|
|
||||||
muon.social,mastodon
|
|
||||||
preserve.media,mastodon
|
|
||||||
transponderings.blog,wordpress
|
|
||||||
mastodon.wurzelmann.at,mastodon
|
|
||||||
grassy-field.masto.host,mastodon
|
|
||||||
gameplay.wtf,peertube
|
|
||||||
assemblag.es,hometown
|
|
||||||
social.network.europa.eu,mastodon
|
|
||||||
cosmicdust.cloud,mastodon
|
|
||||||
social.dilavni.com,pleroma
|
|
||||||
cabin.smokymountain.top,pleroma
|
|
||||||
folkvangr.social,mastodon
|
|
||||||
harbour.cafe,mastodon
|
|
||||||
www.blogoma.de,wordpress
|
|
||||||
kopfkino.social,mastodon
|
|
||||||
plttn.xyz,mastodon
|
|
||||||
bionaut.masto.host,mastodon
|
|
||||||
fedi.plus.st,pleroma
|
|
||||||
joinfediverse.online,misskey
|
|
||||||
poto.cafe,mastodon
|
|
||||||
furfag.de,mastodon
|
|
||||||
blog.fulda.social,misskey
|
|
||||||
iamalive.digital,mastodon
|
|
||||||
tyazzkey.work,misskey
|
|
||||||
dosgame.club,mastodon
|
|
||||||
jellis.co.uk,mastodon
|
|
||||||
craftodon.social,mastodon
|
|
||||||
helvede.net,mastodon
|
|
||||||
mastodon.babyl.ca,mastodon
|
|
||||||
altbrakz.com,mastodon
|
|
||||||
fedi.pimoore.ca,mastodon
|
|
||||||
social.atridad.cloud,mastodon
|
|
||||||
peoplemaking.games,mastodon
|
|
||||||
sysadmins.zone,mastodon
|
|
||||||
area51.social,mastodon
|
|
||||||
compostintraining.club,mastodon
|
|
||||||
quietcar.social,mastodon
|
|
||||||
robot.rodeo,mastodon
|
|
||||||
silverheart.social,mastodon
|
|
||||||
kraud.social,mastodon
|
|
||||||
mast.jakepi.net,mastodon
|
|
||||||
social.bitwig.community,mastodon
|
|
||||||
moth.zone,pleroma
|
|
||||||
tiphon.nerv-project.eu,mastodon
|
|
||||||
mb.jenot.info,pleroma
|
|
||||||
vindi.ca,mastodon
|
|
||||||
bluenoser.me,mastodon
|
|
||||||
blahaj.social,mastodon
|
|
||||||
pkteerium.xyz,pleroma
|
|
||||||
kampftoast.de,mastodon
|
|
||||||
social.badabam.net,friendica
|
|
||||||
hubzilla.netzone.cc,hubzilla
|
|
||||||
mastodon.shelldog.de,mastodon
|
|
||||||
pixel.autonomous-zone.earth,pixelfed
|
|
||||||
das-vergessene-land.de,wordpress
|
|
||||||
bbs.monocul.us,pleroma
|
|
||||||
dreamers-guild.net,hometown
|
|
||||||
muskodon.social,mastodon
|
|
||||||
social.screamingatmyscreen.com,mastodon
|
|
||||||
thebigeasy.space,mastodon
|
|
||||||
fuckgov.org,mastodon
|
|
||||||
tube.network.europa.eu,peertube
|
|
||||||
social.agb-web.de,friendica
|
|
||||||
osmcast.social,mastodon
|
|
||||||
retr0.id,pleroma
|
|
||||||
soc.redeyes.site,pleroma
|
|
||||||
social.io.srg.id.au,mastodon
|
|
||||||
social.gaycookie.dev,mastodon
|
|
||||||
mast.clippyco.com,mastodon
|
|
||||||
m.devilops.ca,mastodon
|
|
||||||
sneed.shop,pleroma
|
|
||||||
niederbayern.social,mastodon
|
|
||||||
social.spork.gg,mastodon
|
|
||||||
v3.cathoderay.tube,pleroma
|
|
||||||
mastodon.raptor-airways.de,mastodon
|
|
||||||
flowerpot.fyi,mastodon
|
|
||||||
mullet.social,mastodon
|
|
||||||
yukata.tech,pleroma
|
|
||||||
hrmtc.io,hometown
|
|
||||||
mstdn.ca,mastodon
|
|
||||||
cloudfiction.social,mastodon
|
|
||||||
mastodon.agadius.de,mastodon
|
|
||||||
surf.cyberspace.club,mastodon
|
|
||||||
xabid.com,wordpress
|
|
||||||
shorty.masto.host,mastodon
|
|
||||||
mastodon.wallera.computer,mastodon
|
|
||||||
booker.social,mastodon
|
|
||||||
satania.social,misskey
|
|
||||||
plauderkasten.space,mastodon
|
|
||||||
social.dymorz.net,mastodon
|
|
||||||
toot.schachtfunk.de,mastodon
|
|
||||||
social.de-lacom.be,pleroma
|
|
||||||
social.tranquilbigfoot.gg,mastodon
|
|
||||||
transliminal.space,mastodon
|
|
||||||
mstdn.axtch.net,mastodon
|
|
||||||
studiointegracji.org,wordpress
|
|
||||||
mastodon.gruezi.net,mastodon
|
|
||||||
social.michaelsantillan.com,mastodon
|
|
||||||
pewtix.com,mastodon
|
|
||||||
waytoomuch.info,mastodon
|
|
||||||
zbop.xyz,misskey
|
|
||||||
masto.uc-netcorsoft.de,mastodon
|
|
||||||
h1v3.de,mastodon
|
|
||||||
mastodon.robinsmediateam.dev,mastodon
|
|
||||||
shalmirane.de,pleroma
|
|
||||||
retrochat.online,mastodon
|
|
||||||
maximalists.club,mastodon
|
|
||||||
nightshift.minnix.dev,peertube
|
|
||||||
zeroping.us,mastodon
|
|
||||||
social.vengeful.eu,pleroma
|
|
||||||
mastodon.jordanwages.com,mastodon
|
|
||||||
piipitin.fi,mastodon
|
|
||||||
social.manzilalnabat.de,mastodon
|
|
||||||
hello.mouup.top,misskey
|
|
||||||
blue.yuv.pink,mastodon
|
|
||||||
fediverse.projectftm.com,misskey
|
|
||||||
noodle.social,mastodon
|
|
||||||
mastodon.halibut.com,mastodon
|
|
||||||
mastodon.azfedi.social,mastodon
|
|
||||||
greenplenty.social,mastodon
|
|
||||||
spd.social,mastodon
|
|
||||||
society.burger.rodeo,misskey
|
|
||||||
zusammenhalt.de,mastodon
|
|
||||||
pleroma.abb.ink,pleroma
|
|
||||||
jasonlefkowitz.net,wordpress
|
|
||||||
moo.henrick.me,mastodon
|
|
||||||
social.edzilla.info,mastodon
|
|
||||||
rapemeat.solutions,pleroma
|
|
||||||
sueden.social,mastodon
|
|
||||||
social.paulwet.com,mastodon
|
|
||||||
justjuut.de,friendica
|
|
||||||
cryptocartel.social,mastodon
|
|
||||||
j621.net,mastodon
|
|
||||||
social.tegix.net,mastodon
|
|
||||||
ashka.me,mastodon
|
|
||||||
kossin.social,mastodon
|
|
||||||
social.benjamin-westland.de,mastodon
|
|
||||||
socialwagrien.de,mastodon
|
|
||||||
mammochon.survivebox.net,mastodon
|
|
||||||
qpomelo.network,mastodon
|
|
||||||
u.k2s.sk,pleroma
|
|
||||||
mastodon.fibee.fr,mastodon
|
|
||||||
widerweb.org,mastodon
|
|
||||||
corteximplant.com,mastodon
|
|
||||||
social.fpvogel.com,mastodon
|
|
||||||
social.fantorovevo.com,mastodon
|
|
||||||
chirp.pud.im,mastodon
|
|
||||||
lile.cl,mastodon
|
|
||||||
social.gilchrist.scot,ecko
|
|
||||||
social.mashed.cloud,mastodon
|
|
||||||
retrotroet.com,mastodon
|
|
||||||
blog.javx.de,writefreely
|
|
||||||
lolic.at,pleroma
|
|
||||||
social.f1sh.de,mastodon
|
|
||||||
social.caserio.de,mastodon
|
|
||||||
666.glitchwit.ch,mastodon
|
|
||||||
social.spectreos.de,mastodon
|
|
||||||
artsio.com,mastodon
|
|
||||||
toot-bionaut.de,mastodon
|
|
||||||
blog.woof.group,writefreely
|
|
||||||
grandma.space,mastodon
|
|
||||||
mastodon.metalbanana.net,mastodon
|
|
||||||
mastodon.digitalsuccess.dev,mastodon
|
|
||||||
social.kusako.de,mastodon
|
|
||||||
frankfurt.social,mastodon
|
|
||||||
sartorial.online,mastodon
|
|
||||||
mastodon.gusballard.com,mastodon
|
|
||||||
ravenation.club,mastodon
|
|
||||||
avatastic.uk,mastodon
|
|
||||||
friede.cc,mastodon
|
|
||||||
mastodon.gramschladen.de,mastodon
|
|
||||||
nop.codes,mastodon
|
|
||||||
social.zyphyr.de,mastodon
|
|
||||||
mapstodon.technology,mastodon
|
|
||||||
sup.f5n.org,ktistec
|
|
||||||
sebitech.social,mastodon
|
|
||||||
social.machauer.dev,mastodon
|
|
||||||
hub.rick.gr,pleroma
|
|
||||||
merry.eu.org,writefreely
|
|
||||||
fleshmeat.com,mastodon
|
|
||||||
hollablog.at,mastodon
|
|
||||||
fromm.social,mastodon
|
|
||||||
rizzek.de,mastodon
|
|
||||||
social.jonaskoeritz.de,mastodon
|
|
||||||
arush.io,wordpress
|
|
||||||
misskey.tatakaibo.xyz,misskey
|
|
||||||
mstdntes.uber.space,pleroma
|
|
||||||
unstable.systems,mastodon
|
|
||||||
misskey.mymte.de,misskey
|
|
||||||
mastodon.jmtr.org,mastodon
|
|
||||||
knnl.haus,mastodon
|
|
||||||
social.michels.xyz,mastodon
|
|
||||||
m.ix.is,mastodon
|
|
||||||
twtr.ingeechat.party,birdsitelive
|
|
||||||
aperture.ink,mastodon
|
|
||||||
schuppentier.social,mastodon
|
|
||||||
luololita.com,mastodon
|
|
||||||
jkfd.de,mastodon
|
|
||||||
vvvv.social,mastodon
|
|
||||||
social.filipesm.com,mastodon
|
|
||||||
sns.tsubasaori.be,misskey
|
|
||||||
mastodon.bierschutzpartei.de,mastodon
|
|
||||||
tines.spork.org,pleroma
|
|
||||||
catgirlmeike.eu,mastodon
|
|
||||||
relay.ingeechat.party,aoderelay
|
|
||||||
discloud.one,mastodon
|
|
||||||
mastodon.481516.xyz,mastodon
|
|
||||||
stogramm.xyz,mastodon
|
|
||||||
mastodon.electric-goat.net,mastodon
|
|
||||||
mastodon.nbwp.uk,mastodon
|
|
||||||
social.geekzweb.com,mastodon
|
|
||||||
qzone.masto.host,mastodon
|
|
||||||
albanytrans.gay,mastodon
|
|
||||||
i.dongxi.ca,mastodon
|
|
||||||
bulbasaur.garden,mastodon
|
|
||||||
stormlight.space,mastodon
|
|
||||||
fedi.libertaria.space,mastodon
|
|
||||||
zeroes.ca,mastodon
|
|
||||||
rabbit.tel,mastodon
|
|
||||||
james.network,wordpress
|
|
||||||
catt.wtf,mastodon
|
|
||||||
hact.org,pleroma
|
|
||||||
mastodon.wuff-miau.club,mastodon
|
|
||||||
mastodon.egroc.de,mastodon
|
|
||||||
fedi.grahamc.com,mastodon
|
|
||||||
litrat.xyz,mastodon
|
|
||||||
live.vending-machine.xyz,owncast
|
|
||||||
live.161hz.de,owncast
|
|
||||||
ardennesdecouverte.com,wordpress
|
|
||||||
tube.zrx.one,peertube
|
|
||||||
ryanteck.xyz,mastodon
|
|
||||||
masto.ukrainedao.love,mastodon
|
|
||||||
videos.sadx.moe,peertube
|
|
||||||
videos.anhgelus.codes,peertube
|
|
||||||
videos.rabbit-company.com,peertube
|
|
||||||
test.studypark.club,peertube
|
|
||||||
mobilizon.foad.me.uk,mobilizon
|
|
||||||
novvist.com,mastodon
|
|
||||||
status.davidchmelik.com,gnusocial
|
|
||||||
socialfed.nl,mastodon
|
|
||||||
live.jlamothe.net,owncast
|
|
||||||
salaam.chat,mastodon
|
|
||||||
live.cyberfarmer.xyz,owncast
|
|
||||||
pleroma.geistlib.xyz,pleroma
|
|
||||||
w.cx,mastodon
|
|
||||||
m.zigoto.xyz,mastodon
|
|
||||||
lemmy.rimkus.it,lemmy
|
|
||||||
live.valvin.fr,owncast
|
|
||||||
mastodon.ti-fr.com,mastodon
|
|
||||||
canzan.chat,mastodon
|
|
||||||
social.100bureaux.com,mastodon
|
|
||||||
social.gred.al,mastodon
|
|
||||||
toot.krake.re,mastodon
|
|
||||||
savga.social,mastodon
|
|
||||||
pleroma.brunisholz.fr,pleroma
|
|
||||||
jascha.wtf,wordpress
|
|
||||||
social.orran.net,pleroma
|
|
||||||
wario.party,mastodon
|
|
||||||
mastodon.cacti.dev,mastodon
|
|
||||||
social.sicknet.xyz,mastodon
|
|
||||||
sandiegourbanists.com,mastodon
|
|
||||||
watch.autonomous-zone.earth,peertube
|
|
||||||
acab.systems,mastodon
|
|
||||||
turingfesten.dk,mastodon
|
|
||||||
i.uwucocoa.moe,mastodon
|
|
||||||
mastodon.cde.social,mastodon
|
|
||||||
mastodon-stg.rklein.com.br,mastodon
|
|
||||||
pleroma.digeridu.de,pleroma
|
|
||||||
peertube.plop.gq,peertube
|
|
||||||
thevipvipers.space,mastodon
|
|
||||||
blog.borked.sh,writefreely
|
|
||||||
pleroma.volzel.net,pleroma
|
|
||||||
erotica.social,mastodon
|
|
||||||
mast.cat.scot,mastodon
|
|
||||||
mast.nyc,mastodon
|
|
||||||
mode15.com,mastodon
|
|
||||||
frog.camp,hometown
|
|
||||||
stream.moparisthe.best,owncast
|
|
||||||
pt.k2s.sk,peertube
|
|
||||||
fuzzy.zone,misskey
|
|
||||||
mastodon.chir.rs,mastodon
|
|
||||||
video.espr.moe,peertube
|
|
||||||
mastodon.c99.org,mastodon
|
|
||||||
social.pedesen.de,mastodon
|
|
||||||
antisocial.chat,mastodon
|
|
||||||
rocketsnail.masto.host,mastodon
|
|
||||||
ist.social,mastodon
|
|
||||||
mastodon.jamesoff.net,mastodon
|
|
||||||
mastodon.eigener.host,mastodon
|
|
||||||
libcyb.so,mastodon
|
|
||||||
lounge.fan,mastodon
|
|
||||||
plamo.social,mastodon
|
|
||||||
mastodon.the4711.org,mastodon
|
|
||||||
tacocat.space,hometown
|
|
||||||
k-on.kr,mastodon
|
|
||||||
m.pentacene.cyou,mastodon
|
|
||||||
mastodon.lethani.ch,mastodon
|
|
||||||
social.bethejustin.com,mastodon
|
|
||||||
shavingcream.online,mastodon
|
|
||||||
lebe.gg,mastodon
|
|
||||||
smallposts.net,mastodon
|
|
||||||
bud.camp,mastodon
|
|
||||||
social.pebcak.de,mastodon
|
|
||||||
soulzeppel.in,wordpress
|
|
||||||
birdsite.mastodon.me.uk,birdsitelive
|
|
||||||
mastodon.ibax.org,mastodon
|
|
||||||
hanf.chat,mastodon
|
|
||||||
cybersecurity.theater,mastodon
|
|
||||||
mastodon.gdt.bzh,mastodon
|
|
||||||
snug.town,mastodon
|
|
||||||
mastodon.rctatman.com,mastodon
|
|
||||||
awscommunity.social,mastodon
|
|
||||||
twipped.social,mastodon
|
|
||||||
socialcats.de,mastodon
|
|
||||||
nyaa.tech,misskey
|
|
||||||
linuxburken.se,mastodon
|
|
||||||
toot.mainframe.club,pleroma
|
|
||||||
notorious.gay,mastodon
|
|
||||||
moto.exchange,mastodon
|
|
||||||
pnw-mastodon.com,mastodon
|
|
||||||
mastodon.content.town,mastodon
|
|
||||||
plemora.dt-info.com,pleroma
|
|
||||||
su.bli.me,mastodon
|
|
||||||
peter.makholm.net,writefreely
|
|
||||||
engloids.info,wordpress
|
|
||||||
purplepa.ws,mastodon
|
|
||||||
funkwhale.juniorjpdj.pl,funkwhale
|
|
||||||
mauran.dk,mastodon
|
|
||||||
techdon.dev,mastodon
|
|
||||||
ancobloggt.de,wordpress
|
|
||||||
music.drawk.cab,funkwhale
|
|
||||||
mastodon-pa.sorbonne-universite.fr,mastodon
|
|
||||||
xurxodiz.eu,wordpress
|
|
||||||
oomfi.es,mastodon
|
|
||||||
academe.world,mastodon
|
|
||||||
mstdn.ch,mastodon
|
|
||||||
romancebooks.space,mastodon
|
|
||||||
mastodon.graves.cl,pleroma
|
|
||||||
introvert.country,mastodon
|
|
||||||
mastodon.hevertonfreitas.com.br,mastodon
|
|
||||||
mastodon.hgoel.dev,mastodon
|
|
||||||
pix.closeuprussia.com,pixelfed
|
|
||||||
ipasodon.hopto.org,mastodon
|
|
||||||
mastodon.sarkastic.org,mastodon
|
|
||||||
tube.calculate.social,peertube
|
|
||||||
mastodon.jabberwookie.org,mastodon
|
|
||||||
misskey.gothloli.club,misskey
|
|
||||||
peertube.remerge.net,peertube
|
|
||||||
bdeshi.space,wordpress
|
|
||||||
lagemeet.duckdns.org,misskey
|
|
||||||
bremensaki.com,wordpress
|
|
|
Loading…
Referencia en una nova incidència