From 2f6caa3f863de6e2821ec967c1ec272da159fff4 Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Thu, 28 Apr 2022 14:04:50 +0200 Subject: [PATCH 1/9] Add separate instance recommendations for each language --- .gitmodules | 4 - generate_translations.mjs | 40 +- lemmy-instance-stats | 1 - recommended-instances.json | 11 + src/shared/components/instances.tsx | 27 +- src/shared/instance_stats.ts | 630 ++++++++++++++++++++++++++++ 6 files changed, 685 insertions(+), 28 deletions(-) delete mode 160000 lemmy-instance-stats create mode 100644 recommended-instances.json create mode 100644 src/shared/instance_stats.ts diff --git a/.gitmodules b/.gitmodules index 6025dae..4d5221e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -10,10 +10,6 @@ path = lemmy-translations url = https://github.com/lemmynet/lemmy-translations branch = main -[submodule "lemmy-instance-stats"] - path = lemmy-instance-stats - url = https://github.com/LemmyNet/lemmy-instance-stats - branch = main [submodule "lemmy-js-client"] path = lemmy-js-client url = https://github.com/LemmyNet/lemmy-js-client diff --git a/generate_translations.mjs b/generate_translations.mjs index 36fdc84..46fc9bd 100644 --- a/generate_translations.mjs +++ b/generate_translations.mjs @@ -1,42 +1,48 @@ import fs from 'fs'; import path from 'path'; +import { exit } from 'process'; +import { spawnSync } from 'child_process'; const translationDir = "joinlemmy-translations/translations/"; const outDir = "src/shared/translations/"; const translatorsJsonFile = "lemmy-translations/translators.json"; -const statsFile = "lemmy-instance-stats/stats.json"; -const recommendationsFile = "lemmy-instance-stats/recommended-instances.csv"; +const recommendationsFile = "recommended-instances.json"; +const instanceStatsFile = "src/shared/instance_stats.ts"; const newsDir = "src/assets/news"; fs.mkdirSync(outDir, { recursive: true }); // Write the stats file try { - const stats = JSON.parse(fs.readFileSync(statsFile, "utf8")); - const recommended_domains = fs.readFileSync(recommendationsFile, "utf8").trim().split(','); - console.log(recommended_domains); - const recommended = stats.instance_details.filter(i => - recommended_domains.includes(i.domain) - ); - const remaining = stats.instance_details.filter(i => - !recommended_domains.includes(i.domain) - ); + const recommended_instances = JSON.parse(fs.readFileSync(recommendationsFile, "utf8")); + var all_recommended = []; + for (var k in recommended_instances) { + if (k != "exclude") { + all_recommended.push(...recommended_instances[k]); + } + } + const run = spawnSync("cargo", + ["run", "--", "--start-instances", all_recommended, "--exclude", recommended_instances.exclude], { + cwd: "../lemmy-stats-crawler/", + encoding : 'utf8' + }); + //console.log("crawler run output: ", run.output); + const stats = JSON.parse(run.stdout); let stats2 = { - crawled_instances: stats.crawled_instances, - total_users: stats.total_users, - recommended: recommended, - remaining: remaining, + stats: stats, + recommended: recommended_instances } let data = `export const instance_stats = \n `; data += JSON.stringify(stats2, null, 2) + ";"; - const target = outDir + "instance_stats.ts"; - fs.writeFileSync(target, data); + fs.writeFileSync(instanceStatsFile, data); } catch (err) { console.error(err); } +exit; + // Write the news file try { let files = fs.readdirSync(newsDir); diff --git a/lemmy-instance-stats b/lemmy-instance-stats deleted file mode 160000 index 7582452..0000000 --- a/lemmy-instance-stats +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 75824524a2a86094e863f0333ea22fb3aa39ce46 diff --git a/recommended-instances.json b/recommended-instances.json new file mode 100644 index 0000000..d20ac23 --- /dev/null +++ b/recommended-instances.json @@ -0,0 +1,11 @@ +{ + "en": ["sopuli.xyz", "beehaw.org"], + "de": ["feddit.de"], + "pt": ["lemmy.pt"], + "pt_BR": ["lemmy.pt"], + "pl": ["szmer.info"], + "eu": ["lemmy.eus"], + "ja": ["tabinezumi.net", "lm.korako.me"], + "es": ["forum.nobigtech.es"], + "exclude": ["lemmy.glasgow.social","ds9.lemmy.ml","voyager.lemmy.ml","enterprise.lemmy.ml"] +} \ No newline at end of file diff --git a/src/shared/components/instances.tsx b/src/shared/components/instances.tsx index fe2db28..f2e3eea 100644 --- a/src/shared/components/instances.tsx +++ b/src/shared/components/instances.tsx @@ -1,7 +1,7 @@ import { Component } from "inferno"; import { Helmet } from "inferno-helmet"; import { i18n } from "../i18next"; -import { instance_stats } from "../translations/instance_stats"; +import { instance_stats } from "../instance_stats"; import { numToSI } from "../utils"; const title = i18n.t("join_title"); @@ -12,9 +12,24 @@ export class Instances extends Component { } render() { + var recommended_instances = instance_stats.recommended[i18n.language]; + if (!recommended_instances) { + recommended_instances = instance_stats.recommended["en"]; + } + console.log(recommended_instances); + var recommended = []; + var remaining = []; + for (var i of instance_stats.stats.instance_details) { + if (recommended_instances.indexOf(i.domain) > -1) { + console.log(i.domain); + recommended.push(i); + } else { + remaining.push(i); + } + } // shuffle recommended instances list into random order // https://stackoverflow.com/a/46545530 - let recommended = instance_stats.recommended + let recommended2 = recommended .map(value => ({ value, sort: Math.random() })) .sort((a, b) => a.sort - b.sort) .map(({ value }) => value); @@ -28,8 +43,8 @@ export class Instances extends Component { {this.header()}

- {this.renderList(i18n.t("recommended_instances"), recommended)} - {this.renderList(i18n.t("popular_instances"), instance_stats.remaining)} + {this.renderList(i18n.t("recommended_instances"), recommended2)} + {this.renderList(i18n.t("popular_instances"), remaining)} ); } @@ -38,8 +53,8 @@ export class Instances extends Component { return ( {i18n.t("instance_totals", { - instances: numToSI(instance_stats.crawled_instances), - users: numToSI(instance_stats.total_users), + instances: numToSI(instance_stats.stats.crawled_instances), + users: numToSI(instance_stats.stats.total_users), })} ); diff --git a/src/shared/instance_stats.ts b/src/shared/instance_stats.ts new file mode 100644 index 0000000..33c3ce5 --- /dev/null +++ b/src/shared/instance_stats.ts @@ -0,0 +1,630 @@ +export const instance_stats = { + stats: { + crawled_instances: 42, + failed_instances: 118, + total_users: 27447, + total_online_users: 355, + instance_details: [ + { + domain: "lemmygrad.ml", + name: "Lemmygrad", + description: + "A collection of leftist communities, for memes, learning, news, discussion, media, or anything you like.", + version: "0.16.3", + icon: "https://lemmygrad.ml/pictrs/image/gB8yP0oFF5.png", + online_users: 151, + total_users: 6373, + users_active_halfyear: 1177, + users_active_month: 748, + open_registrations: true, + linked_instances_count: 20, + require_application: true, + }, + { + domain: "lemmy.ml", + name: "Lemmy", + description: + "A community of leftist privacy and FOSS enthusiasts, run by Lemmy’s developers", + version: "0.16.3", + icon: "https://lemmy.ml/pictrs/image/bhQ7ELa4oq.webp", + online_users: 131, + total_users: 16719, + users_active_halfyear: 1955, + users_active_month: 555, + open_registrations: true, + linked_instances_count: 56, + require_application: true, + }, + { + domain: "szmer.info", + name: "szmer", + description: "polskojęzyczna instancja lemmy-iego. ", + version: "0.16.1", + icon: "https://szmer.info/pictrs/image/XcQWr0D2CU.png", + online_users: 16, + total_users: 1209, + users_active_halfyear: 346, + users_active_month: 94, + open_registrations: true, + linked_instances_count: 8, + require_application: true, + }, + { + domain: "wolfballs.com", + name: "Wolfballs", + description: + "A decentralized federated community of freedom fighting meme farmers ", + version: "0.16.3", + icon: "https://wolfballs.com/pictrs/image/UYZ2wquwlB.png", + online_users: 7, + total_users: 245, + users_active_halfyear: 128, + users_active_month: 42, + open_registrations: true, + linked_instances_count: 13, + require_application: false, + }, + { + domain: "community.xmpp.net", + name: "XMPP Community", + description: + "A community space for projects and users of the Extensible Messaging and Presence Protocol (XMPP).", + version: "0.16.3", + icon: "https://community.xmpp.net/pictrs/image/35c85076-7971-4e2a-b5d1-18ef437366ff.png", + online_users: 6, + total_users: 47, + users_active_halfyear: 34, + users_active_month: 34, + open_registrations: true, + linked_instances_count: 7, + require_application: true, + }, + { + domain: "feddit.de", + name: "Feddit", + description: "Deutschsprachige Lemmy Community", + version: "0.16.3", + icon: "https://feddit.de/pictrs/image/uI7Q7MuePp.png", + online_users: 3, + total_users: 201, + users_active_halfyear: 68, + users_active_month: 33, + open_registrations: true, + linked_instances_count: 78, + require_application: true, + }, + { + domain: "lemmy.perthchat.org", + name: "PerthChat", + description: "The Perth Lemmy Instance", + version: "0.16.3", + icon: "https://lemmy.perthchat.org/pictrs/image/d3728083-9d5f-4311-8c9b-d9dda43f7413.png", + online_users: 0, + total_users: 36, + users_active_halfyear: 26, + users_active_month: 26, + open_registrations: true, + linked_instances_count: 9, + require_application: true, + }, + { + domain: "sopuli.xyz", + name: "Sopuli", + description: + "A general-purpose instance run by a Finn - everyone is welcome here!", + version: "0.16.3", + icon: "https://sopuli.xyz/pictrs/image/AjMQEWabkH.png", + online_users: 2, + total_users: 377, + users_active_halfyear: 83, + users_active_month: 21, + open_registrations: true, + linked_instances_count: 23, + require_application: false, + }, + { + domain: "beehaw.org", + name: "Beehaw", + description: "Aspiring to be(e) a safe, friendly and diverse place.", + version: "0.16.3", + icon: "https://beehaw.org/pictrs/image/33fad824-7820-41c0-9c4a-0d7cf831ddd3.png", + online_users: 2, + total_users: 85, + users_active_halfyear: 47, + users_active_month: 18, + open_registrations: true, + linked_instances_count: 4, + require_application: true, + }, + { + domain: "slrpnk.net", + name: "SLRPNK", + description: "where solarpunks organize for a better world!", + version: "0.16.3", + icon: "https://slrpnk.net/pictrs/image/9d582815-3984-4996-9b10-b18706bebac1.png", + online_users: 6, + total_users: 31, + users_active_halfyear: 18, + users_active_month: 18, + open_registrations: true, + linked_instances_count: 5, + require_application: true, + }, + { + domain: "exploding-heads.com", + name: "Exploding Heads", + description: "Things that make your head explode", + version: "0.16.3", + icon: "https://exploding-heads.com/pictrs/image/f48abd93-f2d9-4a44-a327-380e063744b1.png", + online_users: 1, + total_users: 16, + users_active_halfyear: 15, + users_active_month: 15, + open_registrations: true, + linked_instances_count: 19, + require_application: false, + }, + { + domain: "collapse.cat", + name: "Col·lapse / Colapso", + description: "Col·lapse, emergència climàtica i temes relacionats", + version: "0.15.1", + icon: "https://collapse.cat/pictrs/image/NUpYQehEdv.png", + online_users: 2, + total_users: 75, + users_active_halfyear: 58, + users_active_month: 14, + open_registrations: true, + linked_instances_count: 11, + require_application: false, + }, + { + domain: "mandacaru.caatinga.digital", + name: "Mandacaru", + description: null, + version: "0.14.1", + icon: null, + online_users: 0, + total_users: 35, + users_active_halfyear: 21, + users_active_month: 12, + open_registrations: true, + linked_instances_count: 3, + require_application: false, + }, + { + domain: "lemmy.ca", + name: "Lemmy dot C.A.", + description: + "A canadian-run community, geared towards canadians, but all are welcome!", + version: "0.16.3", + icon: "https://lemmy.ca/pictrs/image/AX0BZv78yT.png", + online_users: 0, + total_users: 311, + users_active_halfyear: 104, + users_active_month: 11, + open_registrations: true, + linked_instances_count: 22, + require_application: true, + }, + { + domain: "lemmy.eus", + name: "Lemmy.eus", + description: + "Euskarazko lehen web-foro irekiak. Software librea, fedibertsoa, euskalmemeak, literatura... (Basque language)", + version: "0.16.2", + icon: "https://lemmy.eus/pictrs/image/R55fPm9RfM.png", + online_users: 9, + total_users: 475, + users_active_halfyear: 150, + users_active_month: 9, + open_registrations: true, + linked_instances_count: 10, + require_application: true, + }, + { + domain: "mander.xyz", + name: "Mander", + description: "An instance dedicated to nature and science.", + version: "0.16.3", + icon: "https://mander.xyz/pictrs/image/2fc86ef3-797e-4bcd-bcca-e75cdf0959f9.png", + online_users: 0, + total_users: 70, + users_active_halfyear: 27, + users_active_month: 8, + open_registrations: true, + linked_instances_count: 23, + require_application: true, + }, + { + domain: "lemmy.pt", + name: "Lemmy Portugal 🇵🇹", + description: + "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", + version: "0.16.3", + icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", + online_users: 0, + total_users: 86, + users_active_halfyear: 21, + users_active_month: 7, + open_registrations: true, + linked_instances_count: 4, + require_application: true, + }, + { + domain: "lemmy.pt", + name: "Lemmy Portugal 🇵🇹", + description: + "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", + version: "0.16.3", + icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", + online_users: 0, + total_users: 86, + users_active_halfyear: 21, + users_active_month: 7, + open_registrations: true, + linked_instances_count: 4, + require_application: true, + }, + { + domain: "gtio.io", + name: "Go Talk It Out", + description: "Politically-neutral forum for serious debate", + version: "0.16.3", + icon: "https://gtio.io/pictrs/image/32f393ce-2895-462c-8f9b-25c31d713a05.png", + online_users: 1, + total_users: 7, + users_active_halfyear: 6, + users_active_month: 6, + open_registrations: true, + linked_instances_count: 3, + require_application: true, + }, + { + domain: "midwest.social", + name: "midwest.social", + description: + "A lemmy server for, but not limited to, leftists in the Midwest USA", + version: "0.16.3", + icon: "https://midwest.social/pictrs/image/Rbal22EuF8.png", + online_users: 1, + total_users: 111, + users_active_halfyear: 26, + users_active_month: 5, + open_registrations: true, + linked_instances_count: 12, + require_application: true, + }, + { + domain: "lemmy.juggler.jp", + name: "Juggler.jp Lemmyサービス", + description: null, + version: "0.16.1", + icon: "https://lemmy.juggler.jp/pictrs/image/v0TGrlnKGS.png", + online_users: 1, + total_users: 30, + users_active_halfyear: 13, + users_active_month: 4, + open_registrations: true, + linked_instances_count: 13, + require_application: false, + }, + { + domain: "baraza.africa", + name: "Baraza", + description: + "A space to share and discusss Africa-related content. Karibu.", + version: "0.16.2", + icon: "https://baraza.africa/pictrs/image/qFpb6BEV2c.png", + online_users: 3, + total_users: 352, + users_active_halfyear: 77, + users_active_month: 4, + open_registrations: true, + linked_instances_count: 16, + require_application: true, + }, + { + domain: "forum.nobigtech.es", + name: "Foro de NoBIGTech", + description: "Foro de NoBIGTech", + version: "0.16.3", + icon: "https://forum.nobigtech.es/pictrs/image/atwGqrgiHu.png", + online_users: 0, + total_users: 8, + users_active_halfyear: 4, + users_active_month: 4, + open_registrations: true, + linked_instances_count: 3, + require_application: true, + }, + { + domain: "fapsi.be", + name: "Fapsi", + description: + "This instance is for all the creative. No matter if you're a writer, author or illustrator.", + version: "0.16.3", + icon: "https://fapsi.be/pictrs/image/jUD7V242rr.png", + online_users: 1, + total_users: 150, + users_active_halfyear: 30, + users_active_month: 3, + open_registrations: true, + linked_instances_count: 14, + require_application: false, + }, + { + domain: "lemmy.cat", + name: "Lemmy CAT", + description: "Cultura catalana", + version: "0.16.3", + icon: "https://lemmy.cat/pictrs/image/4iwqIfDlgI.png", + online_users: 1, + total_users: 73, + users_active_halfyear: 8, + users_active_month: 3, + open_registrations: true, + linked_instances_count: 9, + require_application: true, + }, + { + domain: "tabinezumi.net", + name: "たびねずみのみみ", + description: "日本語圏Lemmyインスタンスのひとつ", + version: "0.16.3", + icon: null, + online_users: 0, + total_users: 35, + users_active_halfyear: 6, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 9, + require_application: true, + }, + { + domain: "lm.korako.me", + name: "鴉は拠り所について語り合う", + description: "日本語話者向けLemmyインスタンスです", + version: "0.16.3", + icon: null, + online_users: 0, + total_users: 17, + users_active_halfyear: 7, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 6, + require_application: true, + }, + { + domain: "buckeyestate.social", + name: "buckeyestate.social", + description: + "A lemmy server for, but not limited to, leftists of the state of Ohio", + version: "0.16.3", + icon: "https://buckeyestate.social/pictrs/image/a9b79b22-7346-40fc-b10c-87d486215cde.png", + online_users: 1, + total_users: 3, + users_active_halfyear: 2, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 3, + require_application: true, + }, + { + domain: "eope.xyz", + name: "EOPE", + description: "Engineers On Planet Earth", + version: "0.15.1", + icon: "https://eope.xyz/pictrs/image/870ec1de-0f6f-4f8e-88a2-c02d2a75adb5.jpeg", + online_users: 0, + total_users: 22, + users_active_halfyear: 4, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 5, + require_application: false, + }, + { + domain: "lemmy.rollenspiel.monster", + name: "RollenspielMonster", + description: + "Eine deutschsprachige Instanz für Rollenspieler. Wir bieten einen platz für Rollenspiel, Pen & Paper, Tabletop, TCG und vieles mehr.", + version: "0.16.3", + icon: "https://lemmy.rollenspiel.monster/pictrs/image/040c05a3-ba7c-4e66-a225-5209dd4893f9.png", + online_users: 2, + total_users: 3, + users_active_halfyear: 2, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 4, + require_application: false, + }, + { + domain: "fuckreddit.tryp.digital", + name: "TRYP", + description: "Now 50% Prod!", + version: "0.16.3", + icon: "https://fuckreddit.tryp.digital/pictrs/image/52dc0c6c-71a4-40f9-a326-b51d54c95173.png", + online_users: 3, + total_users: 5, + users_active_halfyear: 2, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 13, + require_application: true, + }, + { + domain: "info.prou.be", + name: "info.prou.be", + description: "infopoint virtual", + version: "0.16.1", + icon: "https://info.prou.be/pictrs/image/82e736ba-6dee-423b-b06b-b47f994ce6b6.png", + online_users: 0, + total_users: 10, + users_active_halfyear: 4, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 5, + require_application: true, + }, + { + domain: "stammtisch.hallertau.social", + name: "Stammtisch", + description: null, + version: "0.16.3", + icon: null, + online_users: 0, + total_users: 55, + users_active_halfyear: 20, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 9, + require_application: true, + }, + { + domain: "lemmy.otakufarms.com", + name: "Otaku Farms", + description: + "Otaku Farms is a network of Fediverse instances created for the sole purpose of letting individuals express themselves.", + version: "0.14.3", + icon: "https://lemmy.otakufarms.com/pictrs/image/ekmeJ0BD8S.png", + online_users: 0, + total_users: 3, + users_active_halfyear: 3, + users_active_month: 1, + open_registrations: true, + linked_instances_count: 1, + require_application: false, + }, + { + domain: "elgiebety.pl", + name: "elgiebety", + description: null, + version: "0.15.2", + icon: null, + online_users: 1, + total_users: 4, + users_active_halfyear: 1, + users_active_month: 1, + open_registrations: true, + linked_instances_count: 3, + require_application: false, + }, + { + domain: "heapoverflow.ml", + name: "Heap Overflow", + description: + "A place to ask programming questions and share free resources", + version: "0.16.3", + icon: "https://heapoverflow.ml/pictrs/image/f910bf1c-215b-47c0-a9ff-d65f483c02a3.png", + online_users: 1, + total_users: 11, + users_active_halfyear: 1, + users_active_month: 1, + open_registrations: true, + linked_instances_count: 3, + require_application: true, + }, + { + domain: "lemmy.schuerz.at", + name: "lemmy.schuerz.at", + description: null, + version: "0.16.3", + icon: null, + online_users: 2, + total_users: 40, + users_active_halfyear: 2, + users_active_month: 1, + open_registrations: false, + linked_instances_count: 15, + require_application: true, + }, + { + domain: "lemmy.wiredentrypoint.xyz", + name: "Wiredentrypoint", + description: null, + version: "0.16.1", + icon: "https://lemmy.wiredentrypoint.xyz/pictrs/image/826b6251-bf21-41b4-b8f2-7a39a0b09313.png", + online_users: 0, + total_users: 1, + users_active_halfyear: 1, + users_active_month: 1, + open_registrations: false, + linked_instances_count: 4, + require_application: false, + }, + { + domain: "lemmy.mesh.party", + name: "Mesh.Party", + description: "A Lemmy instance for mesh network denizens.", + version: "0.16.3", + icon: "https://lemmy.mesh.party/pictrs/image/3653fdce-1fdc-4514-aceb-38c6ba29006c.png", + online_users: 1, + total_users: 8, + users_active_halfyear: 2, + users_active_month: 1, + open_registrations: true, + linked_instances_count: 4, + require_application: false, + }, + { + domain: "verity.fail", + name: "Verity Fail", + description: null, + version: "0.16.0", + icon: null, + online_users: 0, + total_users: 19, + users_active_halfyear: 9, + users_active_month: 1, + open_registrations: true, + linked_instances_count: 45, + require_application: true, + }, + { + domain: "lemmy.shrieker.net", + name: "美食レミー", + description: null, + version: "0.16.3", + icon: null, + online_users: 0, + total_users: 2, + users_active_halfyear: 1, + users_active_month: 1, + open_registrations: false, + linked_instances_count: 2, + require_application: false, + }, + { + domain: "lem.ph3j.com", + name: "lem.ph3j.com", + description: null, + version: "0.16.3", + icon: null, + online_users: 0, + total_users: 1, + users_active_halfyear: 0, + users_active_month: 0, + open_registrations: false, + linked_instances_count: 7, + require_application: false, + }, + ], + }, + recommended: { + en: ["sopuli.xyz", "beehaw.org"], + de: ["feddit.de"], + pt: ["lemmy.pt"], + pt_BR: ["lemmy.pt"], + pl: ["szmer.info"], + eu: ["lemmy.eus"], + ja: ["tabinezumi.net", "lm.korako.me"], + es: ["forum.nobigtech.es"], + exclude: [ + "lemmy.glasgow.social", + "ds9.lemmy.ml", + "voyager.lemmy.ml", + "enterprise.lemmy.ml", + ], + }, +}; From cd0117188143ba79e1b5f1da1978c425a0e1536f Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Tue, 3 May 2022 14:23:37 +0200 Subject: [PATCH 2/9] separate yarn command for crawl, fix docker build --- Dockerfile | 1 - crawl.mjs | 39 ++++ deploy.sh | 4 + generate_translations.mjs | 35 ---- package.json | 1 + recommended-instances.json | 1 - src/shared/instance_stats.ts | 388 +++++++++++++++++++---------------- 7 files changed, 252 insertions(+), 217 deletions(-) create mode 100644 crawl.mjs diff --git a/Dockerfile b/Dockerfile index 0230515..751690c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,7 +44,6 @@ COPY tsconfig.json \ COPY joinlemmy-translations joinlemmy-translations COPY lemmy-translations lemmy-translations -COPY lemmy-instance-stats lemmy-instance-stats COPY src src # Copy the docs and API diff --git a/crawl.mjs b/crawl.mjs new file mode 100644 index 0000000..1bc6d00 --- /dev/null +++ b/crawl.mjs @@ -0,0 +1,39 @@ +import fs from 'fs'; +import path from 'path'; +import { exit } from 'process'; +import { spawnSync } from 'child_process'; + +const outDir = "src/shared/translations/"; +const recommendationsFile = "recommended-instances.json"; +const instanceStatsFile = "src/shared/instance_stats.ts"; + +fs.mkdirSync(outDir, { recursive: true }); + +// crawl instance stats +try { + const recommended_instances = JSON.parse(fs.readFileSync(recommendationsFile, "utf8")); + var all_recommended = []; + for (var k in recommended_instances) { + if (k != "exclude") { + all_recommended.push(...recommended_instances[k]); + } + } + const run = spawnSync("cargo", + ["run", "--", "--start-instances", all_recommended, "--exclude", recommended_instances.exclude], { + cwd: "../lemmy-stats-crawler/", + encoding : 'utf8' + }); + //console.log("crawler run output: ", run.output); + const stats = JSON.parse(run.stdout); + + let stats2 = { + stats: stats, + recommended: recommended_instances + } + + let data = `export const instance_stats = \n `; + data += JSON.stringify(stats2, null, 2) + ";"; + fs.writeFileSync(instanceStatsFile, data); +} catch (err) { + console.error(err); +} diff --git a/deploy.sh b/deploy.sh index 914f5ae..da5f32a 100755 --- a/deploy.sh +++ b/deploy.sh @@ -3,6 +3,10 @@ # Update all the submodules and translations ./update_submodules.sh +yarn crawl +git add "src/shared/instance_stats.ts" +git commit -m "Crawl instance statistics" + # look for unused translations for langfile in joinlemmy-translations/translations/*.json; do lang=$(basename $langfile .json) diff --git a/generate_translations.mjs b/generate_translations.mjs index 46fc9bd..6889961 100644 --- a/generate_translations.mjs +++ b/generate_translations.mjs @@ -1,48 +1,13 @@ import fs from 'fs'; import path from 'path'; -import { exit } from 'process'; -import { spawnSync } from 'child_process'; const translationDir = "joinlemmy-translations/translations/"; const outDir = "src/shared/translations/"; const translatorsJsonFile = "lemmy-translations/translators.json"; -const recommendationsFile = "recommended-instances.json"; -const instanceStatsFile = "src/shared/instance_stats.ts"; const newsDir = "src/assets/news"; fs.mkdirSync(outDir, { recursive: true }); -// Write the stats file -try { - const recommended_instances = JSON.parse(fs.readFileSync(recommendationsFile, "utf8")); - var all_recommended = []; - for (var k in recommended_instances) { - if (k != "exclude") { - all_recommended.push(...recommended_instances[k]); - } - } - const run = spawnSync("cargo", - ["run", "--", "--start-instances", all_recommended, "--exclude", recommended_instances.exclude], { - cwd: "../lemmy-stats-crawler/", - encoding : 'utf8' - }); - //console.log("crawler run output: ", run.output); - const stats = JSON.parse(run.stdout); - - let stats2 = { - stats: stats, - recommended: recommended_instances - } - - let data = `export const instance_stats = \n `; - data += JSON.stringify(stats2, null, 2) + ";"; - fs.writeFileSync(instanceStatsFile, data); -} catch (err) { - console.error(err); -} - -exit; - // Write the news file try { let files = fs.readdirSync(newsDir); diff --git a/package.json b/package.json index 1021cdf..67f351c 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "build:dev": "webpack --mode=development", "build:prod": "webpack --mode=production", "clean": "yarn run rimraf dist", + "crawl": "node crawl.mjs", "lint": "node generate_translations.mjs && tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src", "prebuild:dev": "yarn clean && node generate_translations.mjs", "prebuild:prod": "yarn clean && node generate_translations.mjs", diff --git a/recommended-instances.json b/recommended-instances.json index d20ac23..050fd8e 100644 --- a/recommended-instances.json +++ b/recommended-instances.json @@ -3,7 +3,6 @@ "de": ["feddit.de"], "pt": ["lemmy.pt"], "pt_BR": ["lemmy.pt"], - "pl": ["szmer.info"], "eu": ["lemmy.eus"], "ja": ["tabinezumi.net", "lm.korako.me"], "es": ["forum.nobigtech.es"], diff --git a/src/shared/instance_stats.ts b/src/shared/instance_stats.ts index 33c3ce5..6bcc412 100644 --- a/src/shared/instance_stats.ts +++ b/src/shared/instance_stats.ts @@ -1,9 +1,9 @@ export const instance_stats = { stats: { - crawled_instances: 42, - failed_instances: 118, - total_users: 27447, - total_online_users: 355, + crawled_instances: 44, + failed_instances: 61, + total_users: 27594, + total_online_users: 339, instance_details: [ { domain: "lemmygrad.ml", @@ -12,12 +12,12 @@ export const instance_stats = { "A collection of leftist communities, for memes, learning, news, discussion, media, or anything you like.", version: "0.16.3", icon: "https://lemmygrad.ml/pictrs/image/gB8yP0oFF5.png", - online_users: 151, - total_users: 6373, - users_active_halfyear: 1177, - users_active_month: 748, + online_users: 123, + total_users: 6403, + users_active_halfyear: 1196, + users_active_month: 674, open_registrations: true, - linked_instances_count: 20, + linked_instances_count: 21, require_application: true, }, { @@ -27,12 +27,12 @@ export const instance_stats = { "A community of leftist privacy and FOSS enthusiasts, run by Lemmy’s developers", version: "0.16.3", icon: "https://lemmy.ml/pictrs/image/bhQ7ELa4oq.webp", - online_users: 131, - total_users: 16719, + online_users: 117, + total_users: 16764, users_active_halfyear: 1955, users_active_month: 555, open_registrations: true, - linked_instances_count: 56, + linked_instances_count: 58, require_application: true, }, { @@ -41,12 +41,12 @@ export const instance_stats = { description: "polskojęzyczna instancja lemmy-iego. ", version: "0.16.1", icon: "https://szmer.info/pictrs/image/XcQWr0D2CU.png", - online_users: 16, - total_users: 1209, - users_active_halfyear: 346, - users_active_month: 94, + online_users: 10, + total_users: 1218, + users_active_halfyear: 341, + users_active_month: 85, open_registrations: true, - linked_instances_count: 8, + linked_instances_count: 9, require_application: true, }, { @@ -56,14 +56,28 @@ export const instance_stats = { "A decentralized federated community of freedom fighting meme farmers ", version: "0.16.3", icon: "https://wolfballs.com/pictrs/image/UYZ2wquwlB.png", - online_users: 7, - total_users: 245, + online_users: 14, + total_users: 249, users_active_halfyear: 128, - users_active_month: 42, + users_active_month: 36, open_registrations: true, linked_instances_count: 13, require_application: false, }, + { + domain: "feddit.de", + name: "Feddit", + description: "Deutschsprachige Lemmy Community", + version: "0.16.3", + icon: "https://feddit.de/pictrs/image/uI7Q7MuePp.png", + online_users: 12, + total_users: 209, + users_active_halfyear: 69, + users_active_month: 34, + open_registrations: true, + linked_instances_count: 21, + require_application: true, + }, { domain: "community.xmpp.net", name: "XMPP Community", @@ -71,40 +85,12 @@ export const instance_stats = { "A community space for projects and users of the Extensible Messaging and Presence Protocol (XMPP).", version: "0.16.3", icon: "https://community.xmpp.net/pictrs/image/35c85076-7971-4e2a-b5d1-18ef437366ff.png", - online_users: 6, + online_users: 10, total_users: 47, users_active_halfyear: 34, users_active_month: 34, open_registrations: true, - linked_instances_count: 7, - require_application: true, - }, - { - domain: "feddit.de", - name: "Feddit", - description: "Deutschsprachige Lemmy Community", - version: "0.16.3", - icon: "https://feddit.de/pictrs/image/uI7Q7MuePp.png", - online_users: 3, - total_users: 201, - users_active_halfyear: 68, - users_active_month: 33, - open_registrations: true, - linked_instances_count: 78, - require_application: true, - }, - { - domain: "lemmy.perthchat.org", - name: "PerthChat", - description: "The Perth Lemmy Instance", - version: "0.16.3", - icon: "https://lemmy.perthchat.org/pictrs/image/d3728083-9d5f-4311-8c9b-d9dda43f7413.png", - online_users: 0, - total_users: 36, - users_active_halfyear: 26, - users_active_month: 26, - open_registrations: true, - linked_instances_count: 9, + linked_instances_count: 8, require_application: true, }, { @@ -114,42 +100,56 @@ export const instance_stats = { "A general-purpose instance run by a Finn - everyone is welcome here!", version: "0.16.3", icon: "https://sopuli.xyz/pictrs/image/AjMQEWabkH.png", - online_users: 2, - total_users: 377, - users_active_halfyear: 83, - users_active_month: 21, + online_users: 4, + total_users: 386, + users_active_halfyear: 85, + users_active_month: 20, open_registrations: true, - linked_instances_count: 23, + linked_instances_count: 25, require_application: false, }, - { - domain: "beehaw.org", - name: "Beehaw", - description: "Aspiring to be(e) a safe, friendly and diverse place.", - version: "0.16.3", - icon: "https://beehaw.org/pictrs/image/33fad824-7820-41c0-9c4a-0d7cf831ddd3.png", - online_users: 2, - total_users: 85, - users_active_halfyear: 47, - users_active_month: 18, - open_registrations: true, - linked_instances_count: 4, - require_application: true, - }, { domain: "slrpnk.net", name: "SLRPNK", description: "where solarpunks organize for a better world!", version: "0.16.3", icon: "https://slrpnk.net/pictrs/image/9d582815-3984-4996-9b10-b18706bebac1.png", - online_users: 6, - total_users: 31, - users_active_halfyear: 18, + online_users: 2, + total_users: 33, + users_active_halfyear: 20, users_active_month: 18, open_registrations: true, + linked_instances_count: 6, + require_application: true, + }, + { + domain: "beehaw.org", + name: "Beehaw", + description: "Aspiring to be(e) a safe, friendly and diverse place.", + version: "0.16.3", + icon: "https://beehaw.org/pictrs/image/33fad824-7820-41c0-9c4a-0d7cf831ddd3.png", + online_users: 7, + total_users: 89, + users_active_halfyear: 48, + users_active_month: 17, + open_registrations: true, linked_instances_count: 5, require_application: true, }, + { + domain: "collapse.cat", + name: "Col·lapse / Colapso", + description: "Col·lapse, emergència climàtica i temes relacionats", + version: "0.15.1", + icon: "https://collapse.cat/pictrs/image/NUpYQehEdv.png", + online_users: 3, + total_users: 77, + users_active_halfyear: 61, + users_active_month: 17, + open_registrations: true, + linked_instances_count: 11, + require_application: false, + }, { domain: "exploding-heads.com", name: "Exploding Heads", @@ -157,27 +157,13 @@ export const instance_stats = { version: "0.16.3", icon: "https://exploding-heads.com/pictrs/image/f48abd93-f2d9-4a44-a327-380e063744b1.png", online_users: 1, - total_users: 16, - users_active_halfyear: 15, - users_active_month: 15, + total_users: 17, + users_active_halfyear: 16, + users_active_month: 16, open_registrations: true, linked_instances_count: 19, require_application: false, }, - { - domain: "collapse.cat", - name: "Col·lapse / Colapso", - description: "Col·lapse, emergència climàtica i temes relacionats", - version: "0.15.1", - icon: "https://collapse.cat/pictrs/image/NUpYQehEdv.png", - online_users: 2, - total_users: 75, - users_active_halfyear: 58, - users_active_month: 14, - open_registrations: true, - linked_instances_count: 11, - require_application: false, - }, { domain: "mandacaru.caatinga.digital", name: "Mandacaru", @@ -185,7 +171,7 @@ export const instance_stats = { version: "0.14.1", icon: null, online_users: 0, - total_users: 35, + total_users: 36, users_active_halfyear: 21, users_active_month: 12, open_registrations: true, @@ -199,14 +185,28 @@ export const instance_stats = { "A canadian-run community, geared towards canadians, but all are welcome!", version: "0.16.3", icon: "https://lemmy.ca/pictrs/image/AX0BZv78yT.png", - online_users: 0, - total_users: 311, - users_active_halfyear: 104, + online_users: 3, + total_users: 315, + users_active_halfyear: 102, users_active_month: 11, open_registrations: true, linked_instances_count: 22, require_application: true, }, + { + domain: "lemmy.perthchat.org", + name: "PerthChat", + description: "The Perth Lemmy Instance", + version: "0.16.3", + icon: "https://lemmy.perthchat.org/pictrs/image/d3728083-9d5f-4311-8c9b-d9dda43f7413.png", + online_users: 0, + total_users: 36, + users_active_halfyear: 26, + users_active_month: 9, + open_registrations: true, + linked_instances_count: 9, + require_application: true, + }, { domain: "lemmy.eus", name: "Lemmy.eus", @@ -215,9 +215,9 @@ export const instance_stats = { version: "0.16.2", icon: "https://lemmy.eus/pictrs/image/R55fPm9RfM.png", online_users: 9, - total_users: 475, - users_active_halfyear: 150, - users_active_month: 9, + total_users: 478, + users_active_halfyear: 143, + users_active_month: 8, open_registrations: true, linked_instances_count: 10, require_application: true, @@ -228,44 +228,14 @@ export const instance_stats = { description: "An instance dedicated to nature and science.", version: "0.16.3", icon: "https://mander.xyz/pictrs/image/2fc86ef3-797e-4bcd-bcca-e75cdf0959f9.png", - online_users: 0, - total_users: 70, + online_users: 2, + total_users: 72, users_active_halfyear: 27, users_active_month: 8, open_registrations: true, linked_instances_count: 23, require_application: true, }, - { - domain: "lemmy.pt", - name: "Lemmy Portugal 🇵🇹", - description: - "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", - version: "0.16.3", - icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", - online_users: 0, - total_users: 86, - users_active_halfyear: 21, - users_active_month: 7, - open_registrations: true, - linked_instances_count: 4, - require_application: true, - }, - { - domain: "lemmy.pt", - name: "Lemmy Portugal 🇵🇹", - description: - "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", - version: "0.16.3", - icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", - online_users: 0, - total_users: 86, - users_active_halfyear: 21, - users_active_month: 7, - open_registrations: true, - linked_instances_count: 4, - require_application: true, - }, { domain: "gtio.io", name: "Go Talk It Out", @@ -273,13 +243,43 @@ export const instance_stats = { version: "0.16.3", icon: "https://gtio.io/pictrs/image/32f393ce-2895-462c-8f9b-25c31d713a05.png", online_users: 1, - total_users: 7, + total_users: 9, users_active_halfyear: 6, users_active_month: 6, open_registrations: true, linked_instances_count: 3, require_application: true, }, + { + domain: "lemmy.pt", + name: "Lemmy Portugal 🇵🇹", + description: + "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", + version: "0.16.3", + icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", + online_users: 2, + total_users: 87, + users_active_halfyear: 20, + users_active_month: 5, + open_registrations: true, + linked_instances_count: 4, + require_application: true, + }, + { + domain: "lemmy.pt", + name: "Lemmy Portugal 🇵🇹", + description: + "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", + version: "0.16.3", + icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", + online_users: 2, + total_users: 87, + users_active_halfyear: 20, + users_active_month: 5, + open_registrations: true, + linked_instances_count: 4, + require_application: true, + }, { domain: "midwest.social", name: "midwest.social", @@ -288,7 +288,7 @@ export const instance_stats = { version: "0.16.3", icon: "https://midwest.social/pictrs/image/Rbal22EuF8.png", online_users: 1, - total_users: 111, + total_users: 113, users_active_halfyear: 26, users_active_month: 5, open_registrations: true, @@ -303,7 +303,7 @@ export const instance_stats = { icon: "https://lemmy.juggler.jp/pictrs/image/v0TGrlnKGS.png", online_users: 1, total_users: 30, - users_active_halfyear: 13, + users_active_halfyear: 12, users_active_month: 4, open_registrations: true, linked_instances_count: 13, @@ -316,9 +316,9 @@ export const instance_stats = { "A space to share and discusss Africa-related content. Karibu.", version: "0.16.2", icon: "https://baraza.africa/pictrs/image/qFpb6BEV2c.png", - online_users: 3, - total_users: 352, - users_active_halfyear: 77, + online_users: 2, + total_users: 354, + users_active_halfyear: 76, users_active_month: 4, open_registrations: true, linked_instances_count: 16, @@ -331,28 +331,13 @@ export const instance_stats = { version: "0.16.3", icon: "https://forum.nobigtech.es/pictrs/image/atwGqrgiHu.png", online_users: 0, - total_users: 8, + total_users: 9, users_active_halfyear: 4, users_active_month: 4, open_registrations: true, linked_instances_count: 3, require_application: true, }, - { - domain: "fapsi.be", - name: "Fapsi", - description: - "This instance is for all the creative. No matter if you're a writer, author or illustrator.", - version: "0.16.3", - icon: "https://fapsi.be/pictrs/image/jUD7V242rr.png", - online_users: 1, - total_users: 150, - users_active_halfyear: 30, - users_active_month: 3, - open_registrations: true, - linked_instances_count: 14, - require_application: false, - }, { domain: "lemmy.cat", name: "Lemmy CAT", @@ -360,13 +345,27 @@ export const instance_stats = { version: "0.16.3", icon: "https://lemmy.cat/pictrs/image/4iwqIfDlgI.png", online_users: 1, - total_users: 73, + total_users: 74, users_active_halfyear: 8, users_active_month: 3, open_registrations: true, - linked_instances_count: 9, + linked_instances_count: 10, require_application: true, }, + { + domain: "elgiebety.pl", + name: "elgiebety", + description: null, + version: "0.15.2", + icon: null, + online_users: 1, + total_users: 4, + users_active_halfyear: 2, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 3, + require_application: false, + }, { domain: "tabinezumi.net", name: "たびねずみのみみ", @@ -392,7 +391,7 @@ export const instance_stats = { users_active_halfyear: 7, users_active_month: 2, open_registrations: true, - linked_instances_count: 6, + linked_instances_count: 7, require_application: true, }, { @@ -431,12 +430,27 @@ export const instance_stats = { "Eine deutschsprachige Instanz für Rollenspieler. Wir bieten einen platz für Rollenspiel, Pen & Paper, Tabletop, TCG und vieles mehr.", version: "0.16.3", icon: "https://lemmy.rollenspiel.monster/pictrs/image/040c05a3-ba7c-4e66-a225-5209dd4893f9.png", - online_users: 2, + online_users: 1, total_users: 3, users_active_halfyear: 2, users_active_month: 2, open_registrations: true, - linked_instances_count: 4, + linked_instances_count: 2, + require_application: false, + }, + { + domain: "fapsi.be", + name: "Fapsi", + description: + "This instance is for all the creative. No matter if you're a writer, author or illustrator.", + version: "0.16.3", + icon: "https://fapsi.be/pictrs/image/jUD7V242rr.png", + online_users: 1, + total_users: 154, + users_active_halfyear: 29, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 15, require_application: false, }, { @@ -445,12 +459,12 @@ export const instance_stats = { description: "Now 50% Prod!", version: "0.16.3", icon: "https://fuckreddit.tryp.digital/pictrs/image/52dc0c6c-71a4-40f9-a326-b51d54c95173.png", - online_users: 3, + online_users: 2, total_users: 5, users_active_halfyear: 2, users_active_month: 2, open_registrations: true, - linked_instances_count: 13, + linked_instances_count: 14, require_application: true, }, { @@ -459,7 +473,7 @@ export const instance_stats = { description: "infopoint virtual", version: "0.16.1", icon: "https://info.prou.be/pictrs/image/82e736ba-6dee-423b-b06b-b47f994ce6b6.png", - online_users: 0, + online_users: 2, total_users: 10, users_active_halfyear: 4, users_active_month: 2, @@ -467,6 +481,20 @@ export const instance_stats = { linked_instances_count: 5, require_application: true, }, + { + domain: "masr.social", + name: "Masr", + description: null, + version: "0.16.3", + icon: null, + online_users: 0, + total_users: 3, + users_active_halfyear: 2, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 3, + require_application: false, + }, { domain: "stammtisch.hallertau.social", name: "Stammtisch", @@ -481,33 +509,33 @@ export const instance_stats = { linked_instances_count: 9, require_application: true, }, + { + domain: "goldandblack.us.to", + name: "goldandblack-lemmy", + description: null, + version: "0.14.3", + icon: "https://goldandblack.us.to/pictrs/image/DDIh7ojBjd.png", + online_users: 0, + total_users: 4, + users_active_halfyear: 2, + users_active_month: 1, + open_registrations: true, + linked_instances_count: 3, + require_application: false, + }, { domain: "lemmy.otakufarms.com", name: "Otaku Farms", description: "Otaku Farms is a network of Fediverse instances created for the sole purpose of letting individuals express themselves.", - version: "0.14.3", + version: "0.16.3", icon: "https://lemmy.otakufarms.com/pictrs/image/ekmeJ0BD8S.png", online_users: 0, - total_users: 3, - users_active_halfyear: 3, - users_active_month: 1, - open_registrations: true, - linked_instances_count: 1, - require_application: false, - }, - { - domain: "elgiebety.pl", - name: "elgiebety", - description: null, - version: "0.15.2", - icon: null, - online_users: 1, total_users: 4, - users_active_halfyear: 1, + users_active_halfyear: 4, users_active_month: 1, open_registrations: true, - linked_instances_count: 3, + linked_instances_count: 5, require_application: false, }, { @@ -531,12 +559,12 @@ export const instance_stats = { description: null, version: "0.16.3", icon: null, - online_users: 2, + online_users: 1, total_users: 40, users_active_halfyear: 2, users_active_month: 1, open_registrations: false, - linked_instances_count: 15, + linked_instances_count: 16, require_application: true, }, { @@ -559,12 +587,12 @@ export const instance_stats = { description: "A Lemmy instance for mesh network denizens.", version: "0.16.3", icon: "https://lemmy.mesh.party/pictrs/image/3653fdce-1fdc-4514-aceb-38c6ba29006c.png", - online_users: 1, - total_users: 8, + online_users: 2, + total_users: 9, users_active_halfyear: 2, users_active_month: 1, open_registrations: true, - linked_instances_count: 4, + linked_instances_count: 5, require_application: false, }, { From 85eb4e4ce58bf3395c86001898da015bc5c1fcea Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Mon, 16 May 2022 20:51:13 +0200 Subject: [PATCH 3/9] Updating submodules --- joinlemmy-translations | 2 +- lemmy-docs | 2 +- lemmy-js-client | 2 +- lemmy-translations | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/joinlemmy-translations b/joinlemmy-translations index e19e061..bc3cd9d 160000 --- a/joinlemmy-translations +++ b/joinlemmy-translations @@ -1 +1 @@ -Subproject commit e19e06197e27c4eefb5d33cb4c5eb8fe84c8b3b6 +Subproject commit bc3cd9db4cf804f3d65f01aeb7902c4dc15e3319 diff --git a/lemmy-docs b/lemmy-docs index bebf8f5..70e433a 160000 --- a/lemmy-docs +++ b/lemmy-docs @@ -1 +1 @@ -Subproject commit bebf8f5af21a163290c07e0f9c8bd068c00816a7 +Subproject commit 70e433a9f98bfb55c04d8b1c2d86f35ae79368af diff --git a/lemmy-js-client b/lemmy-js-client index 72f29cb..dd615bf 160000 --- a/lemmy-js-client +++ b/lemmy-js-client @@ -1 +1 @@ -Subproject commit 72f29cb684faeb94259441af29907ed4467f84a5 +Subproject commit dd615bf4845c1a7eff5c4f63da244facee865f8c diff --git a/lemmy-translations b/lemmy-translations index 2e9f629..1cbac3a 160000 --- a/lemmy-translations +++ b/lemmy-translations @@ -1 +1 @@ -Subproject commit 2e9f6291c91a9c97fa7f7740f90ee3146515e03c +Subproject commit 1cbac3a1521e26b9b5c1c97a0c9852655ddcf00b From 41370ea9ab3c45eb7bb4a14500d58e86a1ed13de Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Mon, 16 May 2022 20:55:08 +0200 Subject: [PATCH 4/9] Crawl instance statistics --- src/shared/instance_stats.ts | 650 +++++++++++++++++++---------------- 1 file changed, 346 insertions(+), 304 deletions(-) diff --git a/src/shared/instance_stats.ts b/src/shared/instance_stats.ts index 6bcc412..7412760 100644 --- a/src/shared/instance_stats.ts +++ b/src/shared/instance_stats.ts @@ -1,9 +1,9 @@ export const instance_stats = { stats: { - crawled_instances: 44, - failed_instances: 61, - total_users: 27594, - total_online_users: 339, + crawled_instances: 47, + failed_instances: 70, + total_users: 27888, + total_online_users: 356, instance_details: [ { domain: "lemmygrad.ml", @@ -12,12 +12,12 @@ export const instance_stats = { "A collection of leftist communities, for memes, learning, news, discussion, media, or anything you like.", version: "0.16.3", icon: "https://lemmygrad.ml/pictrs/image/gB8yP0oFF5.png", - online_users: 123, - total_users: 6403, - users_active_halfyear: 1196, - users_active_month: 674, + online_users: 164, + total_users: 6495, + users_active_halfyear: 1239, + users_active_month: 553, open_registrations: true, - linked_instances_count: 21, + linked_instances_count: 22, require_application: true, }, { @@ -27,42 +27,27 @@ export const instance_stats = { "A community of leftist privacy and FOSS enthusiasts, run by Lemmy’s developers", version: "0.16.3", icon: "https://lemmy.ml/pictrs/image/bhQ7ELa4oq.webp", - online_users: 117, - total_users: 16764, - users_active_halfyear: 1955, - users_active_month: 555, + online_users: 108, + total_users: 16877, + users_active_halfyear: 1910, + users_active_month: 543, open_registrations: true, - linked_instances_count: 58, + linked_instances_count: 66, require_application: true, }, { domain: "szmer.info", name: "szmer", description: "polskojęzyczna instancja lemmy-iego. ", - version: "0.16.1", - icon: "https://szmer.info/pictrs/image/XcQWr0D2CU.png", - online_users: 10, - total_users: 1218, - users_active_halfyear: 341, - users_active_month: 85, - open_registrations: true, - linked_instances_count: 9, - require_application: true, - }, - { - domain: "wolfballs.com", - name: "Wolfballs", - description: - "A decentralized federated community of freedom fighting meme farmers ", version: "0.16.3", - icon: "https://wolfballs.com/pictrs/image/UYZ2wquwlB.png", - online_users: 14, - total_users: 249, - users_active_halfyear: 128, - users_active_month: 36, + icon: "https://szmer.info/pictrs/image/XcQWr0D2CU.png", + online_users: 19, + total_users: 1241, + users_active_halfyear: 316, + users_active_month: 76, open_registrations: true, - linked_instances_count: 13, - require_application: false, + linked_instances_count: 10, + require_application: true, }, { domain: "feddit.de", @@ -70,29 +55,14 @@ export const instance_stats = { description: "Deutschsprachige Lemmy Community", version: "0.16.3", icon: "https://feddit.de/pictrs/image/uI7Q7MuePp.png", - online_users: 12, - total_users: 209, - users_active_halfyear: 69, + online_users: 15, + total_users: 224, + users_active_halfyear: 74, users_active_month: 34, open_registrations: true, linked_instances_count: 21, require_application: true, }, - { - domain: "community.xmpp.net", - name: "XMPP Community", - description: - "A community space for projects and users of the Extensible Messaging and Presence Protocol (XMPP).", - version: "0.16.3", - icon: "https://community.xmpp.net/pictrs/image/35c85076-7971-4e2a-b5d1-18ef437366ff.png", - online_users: 10, - total_users: 47, - users_active_halfyear: 34, - users_active_month: 34, - open_registrations: true, - linked_instances_count: 8, - require_application: true, - }, { domain: "sopuli.xyz", name: "Sopuli", @@ -100,84 +70,58 @@ export const instance_stats = { "A general-purpose instance run by a Finn - everyone is welcome here!", version: "0.16.3", icon: "https://sopuli.xyz/pictrs/image/AjMQEWabkH.png", - online_users: 4, - total_users: 386, - users_active_halfyear: 85, - users_active_month: 20, + online_users: 6, + total_users: 416, + users_active_halfyear: 98, + users_active_month: 30, open_registrations: true, - linked_instances_count: 25, + linked_instances_count: 24, require_application: false, }, { - domain: "slrpnk.net", - name: "SLRPNK", - description: "where solarpunks organize for a better world!", + domain: "community.xmpp.net", + name: "XMPP Community", + description: + "A community space for projects and users of the Extensible Messaging and Presence Protocol (XMPP).", version: "0.16.3", - icon: "https://slrpnk.net/pictrs/image/9d582815-3984-4996-9b10-b18706bebac1.png", - online_users: 2, - total_users: 33, - users_active_halfyear: 20, - users_active_month: 18, + icon: "https://community.xmpp.net/pictrs/image/35c85076-7971-4e2a-b5d1-18ef437366ff.png", + online_users: 1, + total_users: 56, + users_active_halfyear: 35, + users_active_month: 29, open_registrations: true, - linked_instances_count: 6, + linked_instances_count: 10, require_application: true, }, + { + domain: "wolfballs.com", + name: "Wolfballs", + description: + "A decentralized federated community of freedom fighting meme farmers ", + version: "0.16.3", + icon: "https://wolfballs.com/pictrs/image/e51f1a21-aded-46fc-8a5a-6571dc1a78c3.png", + online_users: 10, + total_users: 269, + users_active_halfyear: 126, + users_active_month: 28, + open_registrations: true, + linked_instances_count: 13, + require_application: false, + }, { domain: "beehaw.org", name: "Beehaw", description: "Aspiring to be(e) a safe, friendly and diverse place.", version: "0.16.3", icon: "https://beehaw.org/pictrs/image/33fad824-7820-41c0-9c4a-0d7cf831ddd3.png", - online_users: 7, - total_users: 89, - users_active_halfyear: 48, + online_users: 2, + total_users: 99, + users_active_halfyear: 49, users_active_month: 17, open_registrations: true, linked_instances_count: 5, require_application: true, }, - { - domain: "collapse.cat", - name: "Col·lapse / Colapso", - description: "Col·lapse, emergència climàtica i temes relacionats", - version: "0.15.1", - icon: "https://collapse.cat/pictrs/image/NUpYQehEdv.png", - online_users: 3, - total_users: 77, - users_active_halfyear: 61, - users_active_month: 17, - open_registrations: true, - linked_instances_count: 11, - require_application: false, - }, - { - domain: "exploding-heads.com", - name: "Exploding Heads", - description: "Things that make your head explode", - version: "0.16.3", - icon: "https://exploding-heads.com/pictrs/image/f48abd93-f2d9-4a44-a327-380e063744b1.png", - online_users: 1, - total_users: 17, - users_active_halfyear: 16, - users_active_month: 16, - open_registrations: true, - linked_instances_count: 19, - require_application: false, - }, - { - domain: "mandacaru.caatinga.digital", - name: "Mandacaru", - description: null, - version: "0.14.1", - icon: null, - online_users: 0, - total_users: 36, - users_active_halfyear: 21, - users_active_month: 12, - open_registrations: true, - linked_instances_count: 3, - require_application: false, - }, { domain: "lemmy.ca", name: "Lemmy dot C.A.", @@ -186,25 +130,39 @@ export const instance_stats = { version: "0.16.3", icon: "https://lemmy.ca/pictrs/image/AX0BZv78yT.png", online_users: 3, - total_users: 315, - users_active_halfyear: 102, - users_active_month: 11, + total_users: 324, + users_active_halfyear: 106, + users_active_month: 17, open_registrations: true, linked_instances_count: 22, require_application: true, }, { - domain: "lemmy.perthchat.org", - name: "PerthChat", - description: "The Perth Lemmy Instance", + domain: "exploding-heads.com", + name: "Exploding Heads", + description: "Things that make your head explode", version: "0.16.3", - icon: "https://lemmy.perthchat.org/pictrs/image/d3728083-9d5f-4311-8c9b-d9dda43f7413.png", - online_users: 0, - total_users: 36, - users_active_halfyear: 26, + icon: "https://exploding-heads.com/pictrs/image/f48abd93-f2d9-4a44-a327-380e063744b1.png", + online_users: 2, + total_users: 17, + users_active_halfyear: 16, + users_active_month: 16, + open_registrations: true, + linked_instances_count: 19, + require_application: false, + }, + { + domain: "feddit.it", + name: "Feddit.it", + description: "L'alternativa italiana a Reddit", + version: "0.16.3", + icon: "https://feddit.it/pictrs/image/64fddac4-ef09-44e4-ba91-280ece81605a.png", + online_users: 6, + total_users: 17, + users_active_halfyear: 9, users_active_month: 9, open_registrations: true, - linked_instances_count: 9, + linked_instances_count: 21, require_application: true, }, { @@ -214,70 +172,12 @@ export const instance_stats = { "Euskarazko lehen web-foro irekiak. Software librea, fedibertsoa, euskalmemeak, literatura... (Basque language)", version: "0.16.2", icon: "https://lemmy.eus/pictrs/image/R55fPm9RfM.png", - online_users: 9, - total_users: 478, - users_active_halfyear: 143, + online_users: 5, + total_users: 489, + users_active_halfyear: 134, users_active_month: 8, open_registrations: true, - linked_instances_count: 10, - require_application: true, - }, - { - domain: "mander.xyz", - name: "Mander", - description: "An instance dedicated to nature and science.", - version: "0.16.3", - icon: "https://mander.xyz/pictrs/image/2fc86ef3-797e-4bcd-bcca-e75cdf0959f9.png", - online_users: 2, - total_users: 72, - users_active_halfyear: 27, - users_active_month: 8, - open_registrations: true, - linked_instances_count: 23, - require_application: true, - }, - { - domain: "gtio.io", - name: "Go Talk It Out", - description: "Politically-neutral forum for serious debate", - version: "0.16.3", - icon: "https://gtio.io/pictrs/image/32f393ce-2895-462c-8f9b-25c31d713a05.png", - online_users: 1, - total_users: 9, - users_active_halfyear: 6, - users_active_month: 6, - open_registrations: true, - linked_instances_count: 3, - require_application: true, - }, - { - domain: "lemmy.pt", - name: "Lemmy Portugal 🇵🇹", - description: - "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", - version: "0.16.3", - icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", - online_users: 2, - total_users: 87, - users_active_halfyear: 20, - users_active_month: 5, - open_registrations: true, - linked_instances_count: 4, - require_application: true, - }, - { - domain: "lemmy.pt", - name: "Lemmy Portugal 🇵🇹", - description: - "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", - version: "0.16.3", - icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", - online_users: 2, - total_users: 87, - users_active_halfyear: 20, - users_active_month: 5, - open_registrations: true, - linked_instances_count: 4, + linked_instances_count: 11, require_application: true, }, { @@ -288,37 +188,93 @@ export const instance_stats = { version: "0.16.3", icon: "https://midwest.social/pictrs/image/Rbal22EuF8.png", online_users: 1, - total_users: 113, - users_active_halfyear: 26, - users_active_month: 5, + total_users: 122, + users_active_halfyear: 28, + users_active_month: 8, open_registrations: true, - linked_instances_count: 12, + linked_instances_count: 13, require_application: true, }, { - domain: "lemmy.juggler.jp", - name: "Juggler.jp Lemmyサービス", - description: null, - version: "0.16.1", - icon: "https://lemmy.juggler.jp/pictrs/image/v0TGrlnKGS.png", - online_users: 1, - total_users: 30, - users_active_halfyear: 12, - users_active_month: 4, + domain: "gtio.io", + name: "Go Talk It Out", + description: "Politically-neutral forum for serious debate", + version: "0.16.3", + icon: "https://gtio.io/pictrs/image/32f393ce-2895-462c-8f9b-25c31d713a05.png", + online_users: 2, + total_users: 14, + users_active_halfyear: 8, + users_active_month: 7, open_registrations: true, - linked_instances_count: 13, + linked_instances_count: 3, + require_application: true, + }, + { + domain: "federated.community", + name: "Federated.community", + description: "A public general-purpose Lemmy instance.", + version: "0.16.3", + icon: "https://federated.community/pictrs/image/50c9c066-d8c0-47a4-8860-c68b040f1a67.png", + online_users: 0, + total_users: 7, + users_active_halfyear: 7, + users_active_month: 7, + open_registrations: true, + linked_instances_count: 2, require_application: false, }, + { + domain: "mander.xyz", + name: "Mander", + description: "An instance dedicated to nature and science.", + version: "0.16.3", + icon: "https://mander.xyz/pictrs/image/2fc86ef3-797e-4bcd-bcca-e75cdf0959f9.png", + online_users: 1, + total_users: 76, + users_active_halfyear: 28, + users_active_month: 7, + open_registrations: true, + linked_instances_count: 23, + require_application: true, + }, + { + domain: "lemmy.perthchat.org", + name: "PerthChat", + description: "The Perth Lemmy Instance", + version: "0.16.3", + icon: "https://lemmy.perthchat.org/pictrs/image/d3728083-9d5f-4311-8c9b-d9dda43f7413.png", + online_users: 0, + total_users: 37, + users_active_halfyear: 26, + users_active_month: 6, + open_registrations: true, + linked_instances_count: 9, + require_application: true, + }, + { + domain: "slrpnk.net", + name: "SLRPNK", + description: "where solarpunks organize for a better world!", + version: "0.16.3", + icon: "https://slrpnk.net/pictrs/image/9d582815-3984-4996-9b10-b18706bebac1.png", + online_users: 2, + total_users: 35, + users_active_halfyear: 20, + users_active_month: 6, + open_registrations: true, + linked_instances_count: 7, + require_application: true, + }, { domain: "baraza.africa", name: "Baraza", description: "A space to share and discusss Africa-related content. Karibu.", - version: "0.16.2", + version: "0.16.3", icon: "https://baraza.africa/pictrs/image/qFpb6BEV2c.png", - online_users: 2, - total_users: 354, - users_active_halfyear: 76, + online_users: 0, + total_users: 366, + users_active_halfyear: 68, users_active_month: 4, open_registrations: true, linked_instances_count: 16, @@ -332,39 +288,55 @@ export const instance_stats = { icon: "https://forum.nobigtech.es/pictrs/image/atwGqrgiHu.png", online_users: 0, total_users: 9, - users_active_halfyear: 4, + users_active_halfyear: 5, users_active_month: 4, open_registrations: true, linked_instances_count: 3, require_application: true, }, { - domain: "lemmy.cat", - name: "Lemmy CAT", - description: "Cultura catalana", + domain: "lemmy.pt", + name: "Lemmy Portugal 🇵🇹", + description: + "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", version: "0.16.3", - icon: "https://lemmy.cat/pictrs/image/4iwqIfDlgI.png", - online_users: 1, - total_users: 74, - users_active_halfyear: 8, + icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", + online_users: 0, + total_users: 92, + users_active_halfyear: 18, users_active_month: 3, open_registrations: true, - linked_instances_count: 10, + linked_instances_count: 6, require_application: true, }, { - domain: "elgiebety.pl", - name: "elgiebety", - description: null, - version: "0.15.2", - icon: null, - online_users: 1, - total_users: 4, - users_active_halfyear: 2, - users_active_month: 2, + domain: "lemmy.pt", + name: "Lemmy Portugal 🇵🇹", + description: + "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", + version: "0.16.3", + icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", + online_users: 0, + total_users: 92, + users_active_halfyear: 18, + users_active_month: 3, open_registrations: true, - linked_instances_count: 3, - require_application: false, + linked_instances_count: 6, + require_application: true, + }, + { + domain: "community.nicfab.it", + name: "NicFab Community", + description: "NicFab Community", + version: "0.16.3", + icon: "https://community.nicfab.it/pictrs/image/cfef8df9-6bb5-4049-b7b0-5299814076d4.jpeg", + online_users: 2, + total_users: 6, + users_active_halfyear: 3, + users_active_month: 3, + open_registrations: true, + linked_instances_count: 4, + require_application: true, }, { domain: "tabinezumi.net", @@ -377,21 +349,35 @@ export const instance_stats = { users_active_halfyear: 6, users_active_month: 2, open_registrations: true, - linked_instances_count: 9, + linked_instances_count: 10, require_application: true, }, + { + domain: "lemmy.juggler.jp", + name: "Juggler.jp Lemmyサービス", + description: null, + version: "0.16.1", + icon: "https://lemmy.juggler.jp/pictrs/image/v0TGrlnKGS.png", + online_users: 0, + total_users: 30, + users_active_halfyear: 11, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 14, + require_application: false, + }, { domain: "lm.korako.me", name: "鴉は拠り所について語り合う", description: "日本語話者向けLemmyインスタンスです", - version: "0.16.3", + version: "0.16.3-34-gbd9df83", icon: null, online_users: 0, - total_users: 17, + total_users: 20, users_active_halfyear: 7, users_active_month: 2, open_registrations: true, - linked_instances_count: 7, + linked_instances_count: 9, require_application: true, }, { @@ -402,7 +388,7 @@ export const instance_stats = { version: "0.16.3", icon: "https://buckeyestate.social/pictrs/image/a9b79b22-7346-40fc-b10c-87d486215cde.png", online_users: 1, - total_users: 3, + total_users: 4, users_active_halfyear: 2, users_active_month: 2, open_registrations: true, @@ -410,18 +396,47 @@ export const instance_stats = { require_application: true, }, { - domain: "eope.xyz", - name: "EOPE", - description: "Engineers On Planet Earth", - version: "0.15.1", - icon: "https://eope.xyz/pictrs/image/870ec1de-0f6f-4f8e-88a2-c02d2a75adb5.jpeg", + domain: "fapsi.be", + name: "Fapsi", + description: + "This instance is for all the creative. No matter if you're a writer, author or illustrator.", + version: "0.16.3", + icon: "https://fapsi.be/pictrs/image/jUD7V242rr.png", + online_users: 1, + total_users: 160, + users_active_halfyear: 27, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 15, + require_application: false, + }, + { + domain: "info.prou.be", + name: "info.prou.be", + description: "infopoint virtual", + version: "0.16.1", + icon: "https://info.prou.be/pictrs/image/82e736ba-6dee-423b-b06b-b47f994ce6b6.png", online_users: 0, - total_users: 22, + total_users: 15, users_active_halfyear: 4, users_active_month: 2, open_registrations: true, - linked_instances_count: 5, - require_application: false, + linked_instances_count: 6, + require_application: true, + }, + { + domain: "lemmy.cat", + name: "Lemmy CAT", + description: "Cultura catalana", + version: "0.16.3", + icon: "https://lemmy.cat/pictrs/image/4iwqIfDlgI.png", + online_users: 0, + total_users: 77, + users_active_halfyear: 8, + users_active_month: 2, + open_registrations: true, + linked_instances_count: 10, + require_application: true, }, { domain: "lemmy.rollenspiel.monster", @@ -438,49 +453,6 @@ export const instance_stats = { linked_instances_count: 2, require_application: false, }, - { - domain: "fapsi.be", - name: "Fapsi", - description: - "This instance is for all the creative. No matter if you're a writer, author or illustrator.", - version: "0.16.3", - icon: "https://fapsi.be/pictrs/image/jUD7V242rr.png", - online_users: 1, - total_users: 154, - users_active_halfyear: 29, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 15, - require_application: false, - }, - { - domain: "fuckreddit.tryp.digital", - name: "TRYP", - description: "Now 50% Prod!", - version: "0.16.3", - icon: "https://fuckreddit.tryp.digital/pictrs/image/52dc0c6c-71a4-40f9-a326-b51d54c95173.png", - online_users: 2, - total_users: 5, - users_active_halfyear: 2, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 14, - require_application: true, - }, - { - domain: "info.prou.be", - name: "info.prou.be", - description: "infopoint virtual", - version: "0.16.1", - icon: "https://info.prou.be/pictrs/image/82e736ba-6dee-423b-b06b-b47f994ce6b6.png", - online_users: 2, - total_users: 10, - users_active_halfyear: 4, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 5, - require_application: true, - }, { domain: "masr.social", name: "Masr", @@ -495,6 +467,21 @@ export const instance_stats = { linked_instances_count: 3, require_application: false, }, + { + domain: "social.lealternative.net", + name: "Le Alternative lemmy", + description: + "Il social network di Le Alternative creato grazie a Lemmy", + version: "0.16.3", + icon: "https://social.lealternative.net/pictrs/image/93634af7-8633-49a4-9695-4a1823874acb.png", + online_users: 0, + total_users: 4, + users_active_halfyear: 2, + users_active_month: 2, + open_registrations: false, + linked_instances_count: 3, + require_application: true, + }, { domain: "stammtisch.hallertau.social", name: "Stammtisch", @@ -503,22 +490,22 @@ export const instance_stats = { icon: null, online_users: 0, total_users: 55, - users_active_halfyear: 20, + users_active_halfyear: 19, users_active_month: 2, open_registrations: true, linked_instances_count: 9, require_application: true, }, { - domain: "goldandblack.us.to", - name: "goldandblack-lemmy", + domain: "elgiebety.pl", + name: "elgiebety", description: null, - version: "0.14.3", - icon: "https://goldandblack.us.to/pictrs/image/DDIh7ojBjd.png", + version: "0.16.3", + icon: null, online_users: 0, total_users: 4, users_active_halfyear: 2, - users_active_month: 1, + users_active_month: 2, open_registrations: true, linked_instances_count: 3, require_application: false, @@ -538,6 +525,34 @@ export const instance_stats = { linked_instances_count: 5, require_application: false, }, + { + domain: "lemmy.fediverse.jp", + name: "Fediverse.jp: Lemmy", + description: null, + version: "0.16.3", + icon: null, + online_users: 1, + total_users: 2, + users_active_halfyear: 1, + users_active_month: 1, + open_registrations: true, + linked_instances_count: 1, + require_application: false, + }, + { + domain: "fuckreddit.tryp.digital", + name: "TRYP", + description: "Now 50% Prod!", + version: "0.16.3", + icon: "https://fuckreddit.tryp.digital/pictrs/image/52dc0c6c-71a4-40f9-a326-b51d54c95173.png", + online_users: 1, + total_users: 6, + users_active_halfyear: 2, + users_active_month: 1, + open_registrations: true, + linked_instances_count: 14, + require_application: true, + }, { domain: "heapoverflow.ml", name: "Heap Overflow", @@ -545,7 +560,7 @@ export const instance_stats = { "A place to ask programming questions and share free resources", version: "0.16.3", icon: "https://heapoverflow.ml/pictrs/image/f910bf1c-215b-47c0-a9ff-d65f483c02a3.png", - online_users: 1, + online_users: 0, total_users: 11, users_active_halfyear: 1, users_active_month: 1, @@ -553,6 +568,34 @@ export const instance_stats = { linked_instances_count: 3, require_application: true, }, + { + domain: "foro.markoop.org", + name: "Foro de Markoop", + description: "Un océano de redes en cooperación", + version: "0.16.3", + icon: "https://foro.markoop.org/pictrs/image/528d7d7d-43ef-4ccc-b256-8a49b7d436a5.png", + online_users: 0, + total_users: 1, + users_active_halfyear: 1, + users_active_month: 1, + open_registrations: true, + linked_instances_count: 0, + require_application: false, + }, + { + domain: "lemmy.rimkus.it", + name: "rimkus-corner", + description: "Fediverse for the Rimkus Clan", + version: "0.16.3", + icon: "https://lemmy.rimkus.it/pictrs/image/c9cb6ec8-9809-46ae-b75c-5ee023aa19ce.jpeg", + online_users: 0, + total_users: 2, + users_active_halfyear: 1, + users_active_month: 1, + open_registrations: true, + linked_instances_count: 4, + require_application: true, + }, { domain: "lemmy.schuerz.at", name: "lemmy.schuerz.at", @@ -587,7 +630,7 @@ export const instance_stats = { description: "A Lemmy instance for mesh network denizens.", version: "0.16.3", icon: "https://lemmy.mesh.party/pictrs/image/3653fdce-1fdc-4514-aceb-38c6ba29006c.png", - online_users: 2, + online_users: 1, total_users: 9, users_active_halfyear: 2, users_active_month: 1, @@ -595,20 +638,6 @@ export const instance_stats = { linked_instances_count: 5, require_application: false, }, - { - domain: "verity.fail", - name: "Verity Fail", - description: null, - version: "0.16.0", - icon: null, - online_users: 0, - total_users: 19, - users_active_halfyear: 9, - users_active_month: 1, - open_registrations: true, - linked_instances_count: 45, - require_application: true, - }, { domain: "lemmy.shrieker.net", name: "美食レミー", @@ -620,7 +649,7 @@ export const instance_stats = { users_active_halfyear: 1, users_active_month: 1, open_registrations: false, - linked_instances_count: 2, + linked_instances_count: 0, require_application: false, }, { @@ -637,6 +666,20 @@ export const instance_stats = { linked_instances_count: 7, require_application: false, }, + { + domain: "verity.fail", + name: "Verity Fail", + description: null, + version: "0.16.0", + icon: null, + online_users: 0, + total_users: 19, + users_active_halfyear: 8, + users_active_month: 0, + open_registrations: true, + linked_instances_count: 45, + require_application: true, + }, ], }, recommended: { @@ -644,7 +687,6 @@ export const instance_stats = { de: ["feddit.de"], pt: ["lemmy.pt"], pt_BR: ["lemmy.pt"], - pl: ["szmer.info"], eu: ["lemmy.eus"], ja: ["tabinezumi.net", "lm.korako.me"], es: ["forum.nobigtech.es"], From 401d4b3ce823e2fd9b389cad5450a75134ee0f3a Mon Sep 17 00:00:00 2001 From: Nutomic Date: Tue, 17 May 2022 13:53:57 +0000 Subject: [PATCH 5/9] Update crawler to latest version (#103) --- crawl.mjs | 46 +- src/shared/components/instances.tsx | 63 +- src/shared/instance_stats.ts | 6707 ++++++++++++++++++++++++--- update_submodules.sh | 5 - 4 files changed, 6188 insertions(+), 633 deletions(-) diff --git a/crawl.mjs b/crawl.mjs index 1bc6d00..3d5a46a 100644 --- a/crawl.mjs +++ b/crawl.mjs @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; import { exit } from 'process'; -import { spawnSync } from 'child_process'; +import { spawn } from 'child_process'; const outDir = "src/shared/translations/"; const recommendationsFile = "recommended-instances.json"; @@ -15,25 +15,41 @@ try { var all_recommended = []; for (var k in recommended_instances) { if (k != "exclude") { - all_recommended.push(...recommended_instances[k]); + all_recommended.push(...recommended_instances[k]); } } - const run = spawnSync("cargo", - ["run", "--", "--start-instances", all_recommended, "--exclude", recommended_instances.exclude], { - cwd: "../lemmy-stats-crawler/", - encoding : 'utf8' + const run = spawn("cargo", + ["run", "--", "--start-instances", all_recommended, + "--exclude-instances", recommended_instances.exclude], { + cwd: "../lemmy-stats-crawler", + encoding : 'utf8' + }); + let savedOutput = ''; + + run.stdout.on('data', data => { + const strData = data.toString(); + process.stdout.write(strData); + savedOutput += strData; }); - //console.log("crawler run output: ", run.output); - const stats = JSON.parse(run.stdout); - let stats2 = { - stats: stats, - recommended: recommended_instances - } + run.stderr.on('data', data => { + const strData = data.toString(); + process.stdout.write(strData); + }); - let data = `export const instance_stats = \n `; - data += JSON.stringify(stats2, null, 2) + ";"; - fs.writeFileSync(instanceStatsFile, data); + run.on('close', exitCode => { + const stats = JSON.parse(savedOutput); + + let stats2 = { + stats: stats, + recommended: recommended_instances + } + + let data = `export const instance_stats = \n `; + data += JSON.stringify(stats2, null, 2) + ";"; + fs.writeFileSync(instanceStatsFile, data); + }); + run.await; } catch (err) { console.error(err); } diff --git a/src/shared/components/instances.tsx b/src/shared/components/instances.tsx index b31e007..5fee813 100644 --- a/src/shared/components/instances.tsx +++ b/src/shared/components/instances.tsx @@ -16,12 +16,11 @@ export class Instances extends Component { if (!recommended_instances) { recommended_instances = instance_stats.recommended["en"]; } - console.log(recommended_instances); + var recommended = []; var remaining = []; for (var i of instance_stats.stats.instance_details) { if (recommended_instances.indexOf(i.domain) > -1) { - console.log(i.domain); recommended.push(i); } else { remaining.push(i); @@ -69,36 +68,40 @@ export class Instances extends Component {

{header}

- {instances.map(i => ( -
- -
-
-

{i.name}

- - {numToSI(i.users_active_month)} {i18n.t("users")} /{" "} - {i18n.t("month")} - + {instances.map(instance => { + const site = instance.site_info.site_view.site; + const counts = instance.site_info.site_view.counts; + return ( +
+ +
+
+

{site.name}

+ + {numToSI(counts.users_active_month)} {i18n.t("users")} /{" "} + {i18n.t("month")} + +
+

{site.description}

-

{i.description}

+ {site.require_application ? ( + + {i18n.t("apply_to_join")} + + ) : ( + + {i18n.t("join")} + + )}
- {i.require_application ? ( - - {i18n.t("apply_to_join")} - - ) : ( - - {i18n.t("join")} - - )} -
- ))} + ); + })}
); diff --git a/src/shared/instance_stats.ts b/src/shared/instance_stats.ts index 7412760..9e8c693 100644 --- a/src/shared/instance_stats.ts +++ b/src/shared/instance_stats.ts @@ -1,684 +1,6225 @@ export const instance_stats = { stats: { crawled_instances: 47, - failed_instances: 70, - total_users: 27888, - total_online_users: 356, + online_users: 303, + total_users: 27799, + users_active_day: 397, + users_active_week: 757, + users_active_month: 1446, + users_active_halfyear: 4438, instance_details: [ { domain: "lemmygrad.ml", - name: "Lemmygrad", - description: - "A collection of leftist communities, for memes, learning, news, discussion, media, or anything you like.", - version: "0.16.3", - icon: "https://lemmygrad.ml/pictrs/image/gB8yP0oFF5.png", - online_users: 164, - total_users: 6495, - users_active_halfyear: 1239, - users_active_month: 553, - open_registrations: true, - linked_instances_count: 22, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "Lemmygrad", + sidebar: + "##### Rules\n\n1. No capitalist apologia / anti-communism.\n1. No bigotry - including racism, sexism, ableism, homophobia, transphobia, or xenophobia.\n1. Be respectful. This is a safe space where all comrades should feel welcome, this includes a warning against uncritical sectarianism.\n\n\n\n\n---\n\n[Matrix Chatroom](https://riot.im/app/#/room/#internationale:matrix.org)\n\n[ProleWiki - The Proletarian / Marxist-Leninist wiki](https://en.prolewiki.org)\n\n---\n\n\nThe Following Communities Are For Sectarian Posting;\n\n\n\n - [Reddit Post Archive](https://lemmygrad.ml/c/reddit_post_archive)\n\n\n\n - [Leftist Infighting](https://lemmygrad.ml/c/leftistinfighting)\n\n☭☭☭\n\n![](https://lemmygrad.ml/pictrs/image/xNL4hEII78.png)", + published: "2019-08-16T23:14:21.070852", + updated: "2022-04-27T15:32:18.252646", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmygrad.ml/pictrs/image/gB8yP0oFF5.png", + banner: "https://lemmygrad.ml/pictrs/image/YI2XNWaVUv.png", + description: + "A collection of leftist communities, for memes, learning, news, discussion, media, or anything you like.", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: + "To combat bigrading, we have restricted user registration on this instance. Please write a short description containing:\n\n* Why you would like to join?\n\n* What left tendency would you call yourself? ( Marxist / Marxist-Leninist, etc)\n\n* What communities you would most like to participate in, and\n\n* How or why you chose the username you did.\n\nWe use these questions to screen for and discourage spammers and trolls. We will try our best to review your application as soon as possible.", + private_instance: false, + actor_id: "https://lemmygrad.ml/", + last_refreshed_at: "2022-05-07T19:37:05.129908", + inbox_url: "https://lemmygrad.ml/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA26sJZUl+p0sJT58a7SMe\nRwbqR9QCV91ObRj/V7kqITXmwEkDWyPAMPMDNbh4Amk2q2CjhuISjy3C/SwJkG4W\npWnr1u5tyMLFvJ8x0W/vpkIbdqWNstE4BzJB4Y/6MaCR5YuxRmEZ6+xCoOA2M5LZ\nPXlXGv2IxO0TSau5o+1i2ARfY86mdR/0iCQzrXvIfsaH0YdQ5MtatVkMk+/RSRZP\nhvI+g4Yv6KEVi5Gf9cplttfF6NYB9wY5CpyfyPis0QzWIEvVI2z9MKoLSQzFadi7\nmswoVzy5pbaESPHcmtllTLy7zeN3vF4Xv1Pd+8DUKK56x54IRnG7DxOL3Tsiwlg1\n1QIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "litely-red", + }, + counts: { + id: 1, + site_id: 1, + users: 6492, + posts: 26424, + comments: 99631, + communities: 428, + users_active_day: 164, + users_active_week: 299, + users_active_month: 550, + users_active_half_year: 1237, + }, + }, + admins: [ + { + person: { + id: 2, + name: "muad_dibber", + display_name: "Muad'Dibber", + avatar: "https://lemmygrad.ml/pictrs/image/gY8JSmf56q.jpg", + banned: false, + published: "2019-08-16T23:13:27.015020", + updated: "2022-04-27T15:31:15.535119", + actor_id: "https://lemmygrad.ml/u/muad_dibber", + bio: null, + local: true, + banner: "https://lemmygrad.ml/pictrs/image/jtUTKV09AI.jpg", + deleted: false, + inbox_url: "https://lemmygrad.ml/u/muad_dibber/inbox", + shared_inbox_url: "https://lemmygrad.ml/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 3049, + post_score: 40209, + comment_count: 4116, + comment_score: 22457, + }, + }, + { + person: { + id: 4, + name: "CaptCalhoun", + display_name: null, + avatar: + "https://lemmygrad.ml/pictrs/image/d39dbfc3-4af3-4f38-a3f6-e1d1c706fdb0.jpeg", + banned: false, + published: "2019-08-17T18:16:54.983870", + updated: "2022-03-23T18:54:31.559534", + actor_id: "https://lemmygrad.ml/u/CaptCalhoun", + bio: null, + local: true, + banner: + "https://lemmygrad.ml/pictrs/image/9748d0d7-e885-484f-8386-5e69de46c31d.jpeg", + deleted: false, + inbox_url: "https://lemmygrad.ml/u/CaptCalhoun/inbox", + shared_inbox_url: "https://lemmygrad.ml/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 3, + person_id: 4, + post_count: 57, + post_score: 1957, + comment_count: 74, + comment_score: 924, + }, + }, + { + person: { + id: 6, + name: "Farmer_Heck", + display_name: "Dr. Daniel Jackson", + avatar: + "https://lemmygrad.ml/pictrs/image/49e420e4-5331-46da-a93a-0bf663f50b9e.jpeg", + banned: false, + published: "2019-08-17T20:03:36.302432", + updated: "2022-05-04T19:00:23.445538", + actor_id: "https://lemmygrad.ml/u/Farmer_Heck", + bio: "**One of Lemmygrad's original admins**\n\nMarxist-Leninist-Llyrist. \n\nMay the sea bless you, and may Marxism-Leninism guide you.", + local: true, + banner: + "https://lemmygrad.ml/pictrs/image/d1b28aff-5068-4640-a682-2e1b5e3b4fc0.jpeg", + deleted: false, + inbox_url: "https://lemmygrad.ml/u/Farmer_Heck/inbox", + shared_inbox_url: "https://lemmygrad.ml/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 5, + person_id: 6, + post_count: 326, + post_score: 3008, + comment_count: 1564, + comment_score: 9837, + }, + }, + { + person: { + id: 36, + name: "CriticalResist8", + display_name: null, + avatar: "https://lemmygrad.ml/pictrs/image/e18OBYLejr.png", + banned: false, + published: "2019-08-24T08:59:42.931060", + updated: "2022-04-09T11:49:48.123456", + actor_id: "https://lemmygrad.ml/u/CriticalResist8", + bio: "Contrary to popular belief, I am not actually Thomas Sankara. Sorry for the confusion. (I am also a master of ranting, you've been notified)", + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmygrad.ml/u/CriticalResist8/inbox", + shared_inbox_url: "https://lemmygrad.ml/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 32, + person_id: 36, + post_count: 245, + post_score: 2929, + comment_count: 1217, + comment_score: 7144, + }, + }, + { + person: { + id: 398, + name: "Magpieinthesky", + display_name: null, + avatar: null, + banned: false, + published: "2019-08-27T18:50:21.510055", + updated: "2019-09-02T20:27:19.240327", + actor_id: "https://lemmygrad.ml/u/Magpieinthesky", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmygrad.ml/u/Magpieinthesky/inbox", + shared_inbox_url: "https://lemmygrad.ml/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 329, + person_id: 398, + post_count: 3, + post_score: 22, + comment_count: 13, + comment_score: 53, + }, + }, + { + person: { + id: 1007, + name: "pimento", + display_name: null, + avatar: "https://lemmygrad.ml/pictrs/image/8X90f5aCi8.jpg", + banned: false, + published: "2019-12-29T21:45:31.116015", + updated: "2020-11-25T23:52:31.967634", + actor_id: "https://lemmygrad.ml/u/pimento", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmygrad.ml/u/pimento/inbox", + shared_inbox_url: "https://lemmygrad.ml/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 771, + person_id: 1007, + post_count: 531, + post_score: 4363, + comment_count: 734, + comment_score: 3266, + }, + }, + { + person: { + id: 1011, + name: "felipeforte", + display_name: "Camarada Forte", + avatar: "https://lemmygrad.ml/pictrs/image/VqVjw0dful.jpg", + banned: false, + published: "2020-01-07T07:48:51.770428", + updated: "2022-01-31T04:56:07.870077", + actor_id: "https://lemmygrad.ml/u/felipeforte", + bio: "Forward, comrade!\n\n *“The weapon of criticism cannot, of course, replace criticism of the weapon, material force must be\noverthrown by material force; but theory also becomes a material force as soon as it has gripped the\nmasses.”*", + local: true, + banner: "https://lemmygrad.ml/pictrs/image/F573PyuWIf.png", + deleted: false, + inbox_url: "https://lemmygrad.ml/u/felipeforte/inbox", + shared_inbox_url: "https://lemmygrad.ml/inbox", + matrix_user_id: "@felipeforte:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 775, + person_id: 1011, + post_count: 332, + post_score: 4837, + comment_count: 653, + comment_score: 3141, + }, + }, + { + person: { + id: 1098, + name: "ksynwa", + display_name: "ksynwa", + avatar: null, + banned: false, + published: "2020-05-14T04:43:17.667222", + updated: "2022-04-27T17:05:03.875652", + actor_id: "https://lemmygrad.ml/u/ksynwa", + bio: "a cool (brr) dude", + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmygrad.ml/u/ksynwa/inbox", + shared_inbox_url: "https://lemmygrad.ml/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 856, + person_id: 1098, + post_count: 126, + post_score: 1752, + comment_count: 1789, + comment_score: 10210, + }, + }, + { + person: { + id: 85310, + name: "Based_grandma69", + display_name: "Zoee", + avatar: + "https://lemmygrad.ml/pictrs/image/25f23be4-3ec2-4368-9808-7a67bf679179.png", + banned: false, + published: "2022-01-11T19:09:45.530904", + updated: "2022-04-08T02:55:08.959356", + actor_id: "https://lemmygrad.ml/u/Based_grandma69", + bio: "Perpetuating the stereotype that I exist", + local: true, + banner: + "https://lemmygrad.ml/pictrs/image/d962b4f9-0d8e-4b25-9be3-4bb6ae1e6fb8.jpeg", + deleted: false, + inbox_url: "https://lemmygrad.ml/u/Based_grandma69/inbox", + shared_inbox_url: "https://lemmygrad.ml/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 9158, + person_id: 85310, + post_count: 37, + post_score: 1537, + comment_count: 165, + comment_score: 1423, + }, + }, + ], + online: 121, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "anonsys.net", + "baraza.africa", + "beehaw.org", + "community.xmpp.net", + "derpy.email", + "ds9.lemmy.ml", + "enterprise.lemmy.ml", + "f.freinetz.ch", + "feddit.de", + "federated.community", + "lemma.tk", + "lemmy.ca", + "lemmy.eus", + "lemmy.mesh.party", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmy.pt", + "lemmy.schuerz.at", + "libranet.de", + "mander.xyz", + "slrpnk.net", + "sopuli.xyz", + ], + allowed: null, + blocked: ["legbeard.xyz", "wolfballs.com"], + }, + }, }, { domain: "lemmy.ml", - name: "Lemmy", - description: - "A community of leftist privacy and FOSS enthusiasts, run by Lemmy’s developers", - version: "0.16.3", - icon: "https://lemmy.ml/pictrs/image/bhQ7ELa4oq.webp", - online_users: 108, - total_users: 16877, - users_active_halfyear: 1910, - users_active_month: 543, - open_registrations: true, - linked_instances_count: 66, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "Lemmy", + sidebar: + "[What is Lemmy.ml](https://lemmy.ml/post/70280)\n\n# Rules\n1. No bigotry - including racism, sexism, ableism, homophobia, or xenophobia. [Code of Conduct](https://join.lemmy.ml/docs/en/code_of_conduct.html).\n1. Be respectful. Everyone should feel welcome here.\n1. No porn.\n1. No Ads / Spamming.\n\n\nFeel free to ask questions over in:\n- [!lemmy_support](https://lemmy.ml/c/lemmy_support)\n- [Matrix Chat](https://matrix.to/#/#lemmy:matrix.org)\n- [Mastodon @LemmyDev](https://mastodon.social/@LemmyDev)", + published: "2019-04-20T18:53:54.608882", + updated: "2022-01-25T12:55:22.385374", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.ml/pictrs/image/bhQ7ELa4oq.webp", + banner: null, + description: + "A community of leftist privacy and FOSS enthusiasts, run by Lemmy’s developers", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: + "To combat bigrading, we have restricted user registration on this instance. Please write a short description containing:\n\n* Why you would like to join Lemmy.ml\n\n* What communities you would most like to participate in, and\n\n* How or why you chose the username you did.\n\nWe use these questions to screen for and discourage spammers and trolls. We will try our best to review your application as soon as possible.", + private_instance: false, + actor_id: "https://lemmy.ml/", + last_refreshed_at: "2022-05-13T16:38:55.455202", + inbox_url: "https://lemmy.ml/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8L6zYMBkF5FqgCM/5Ska\nhvJ5SOgqgXbgdTSisFfZD3jETDvQUGIUMHIHaXtZ9CZWViF57oFG952fObVkuR6P\nS81eIOnq26v1Q7LzP3WFKswvMM9qV5/fo+DE1pxAnKun43BaEUnDt1Nr3CUTL0VU\nRzrG87D9fqO6W3XCCrJ8y4Lw6t1/tutAUIfKomS2RzdS6nKRZMnC1LfIY93BdQ2r\nCGt1WByuJKHlRTd3COqQ56KmcyHcUSTTCWttmEO2dnnSjDOy5il07/suVlKDvHTl\nGcxPNuNegoWZgRxRYnXWRFRvRSaIB7V5S3c5E9GzvXzt2Un+oANtONz7tbngdt1g\nwQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 16874, + posts: 56609, + comments: 112422, + communities: 2830, + users_active_day: 166, + users_active_week: 284, + users_active_month: 542, + users_active_half_year: 1909, + }, + }, + admins: [ + { + person: { + id: 34, + name: "dessalines", + display_name: "Dessalines", + avatar: "https://lemmy.ml/pictrs/image/8efQT4fKR1.jpg", + banned: false, + published: "2019-04-17T23:34:40.912940", + updated: "2022-03-30T15:19:30.843988", + actor_id: "https://lemmy.ml/u/dessalines", + bio: null, + local: true, + banner: "https://lemmy.ml/pictrs/image/sMbSb2NzwQ.jpg", + deleted: false, + inbox_url: "https://lemmy.ml/u/dessalines/inbox", + shared_inbox_url: "https://lemmy.ml/inbox", + matrix_user_id: "@happydooby:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 34, + post_count: 421, + post_score: 7985, + comment_count: 3764, + comment_score: 16474, + }, + }, + { + person: { + id: 7769, + name: "AgreeableLandscape", + display_name: null, + avatar: "https://lemmy.ml/pictrs/image/05kw0h.jpg", + banned: false, + published: "2019-10-03T03:55:14.547952", + updated: "2022-04-07T05:37:54.128452", + actor_id: "https://lemmy.ml/u/AgreeableLandscape", + bio: "He/him. Chinese born, Canadian citizen. University student studying environmental science, hobbyist programmer. Marxist-Leninist.", + local: true, + banner: "https://lemmy.ml/pictrs/image/M6uP2hYpy2.jpg", + deleted: false, + inbox_url: "https://lemmy.ml/u/AgreeableLandscape/inbox", + shared_inbox_url: "https://lemmy.ml/inbox", + matrix_user_id: "@staticallytypedrice:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 415, + person_id: 7769, + post_count: 5462, + post_score: 36988, + comment_count: 3669, + comment_score: 15416, + }, + }, + { + person: { + id: 7857, + name: "wazowski", + display_name: null, + avatar: + "https://lemmy.ml/pictrs/image/4f37b16e-7e77-447a-ab3f-464555300237.png", + banned: false, + published: "2019-10-18T03:05:11.547806", + updated: "2022-02-28T21:20:29.703502", + actor_id: "https://lemmy.ml/u/wazowski", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.ml/u/wazowski/inbox", + shared_inbox_url: "https://lemmy.ml/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 479, + person_id: 7857, + post_count: 48, + post_score: 291, + comment_count: 122, + comment_score: 486, + }, + }, + { + person: { + id: 8169, + name: "nutomic", + display_name: null, + avatar: "https://lemmy.ml/pictrs/image/ed9ej7.jpg", + banned: false, + published: "2020-01-17T01:38:22.348392", + updated: "2021-12-17T17:44:38.858434", + actor_id: "https://lemmy.ml/u/nutomic", + bio: "Lemmy maintainer. Interested in politics, video games, and many other things.", + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.ml/u/nutomic/inbox", + shared_inbox_url: "https://lemmy.ml/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 700, + person_id: 8169, + post_count: 352, + post_score: 4754, + comment_count: 1967, + comment_score: 8917, + }, + }, + { + person: { + id: 8937, + name: "kixiQu", + display_name: "Maya", + avatar: "https://lemmy.ml/pictrs/image/pcq935.gif", + banned: false, + published: "2020-05-28T19:32:24.310475", + updated: "2021-04-24T18:17:59.743669", + actor_id: "https://lemmy.ml/u/kixiQu", + bio: "she/her\n\nenthusiasm enthusiast. æsthete. techie scum.\n\na good chunk of my posts are to [/c/anything](/c/anything) or [/c/whatever](/c/whatever); cross-post them if you think they'd be better elsewhere!\n\n[look, it's a personal website!](https://maya.land)\n", + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.ml/u/kixiQu/inbox", + shared_inbox_url: "https://lemmy.ml/inbox", + matrix_user_id: "@maya:occult.institute", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1399, + person_id: 8937, + post_count: 433, + post_score: 1994, + comment_count: 498, + comment_score: 1750, + }, + }, + { + person: { + id: 11563, + name: "Echedenyan", + display_name: null, + avatar: "https://lemmy.ml/pictrs/image/paFaib207f.png", + banned: false, + published: "2020-06-29T01:53:46.545093", + updated: "2022-05-01T20:59:41.525645", + actor_id: "https://lemmy.ml/u/Echedenyan", + bio: "I am a 22 years old vegan nyanya, Web Development student and System Administrator.", + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.ml/u/Echedenyan/inbox", + shared_inbox_url: "https://lemmy.ml/inbox", + matrix_user_id: "@echedeylr:mozilla.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 3522, + person_id: 11563, + post_count: 54, + post_score: 451, + comment_count: 1550, + comment_score: 4521, + }, + }, + ], + online: 104, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "anonsys.net", + "baraza.africa", + "beehaw.org", + "buckeyestate.social", + "community.nicfab.it", + "community.xmpp.net", + "ds9.lemmy.ml", + "enterprise.lemmy.ml", + "f.freinetz.ch", + "fapsi.be", + "feddit.de", + "feddit.it", + "forum.friendi.ca", + "forum.nogafam.es", + "forum.purplerabbit.xyz", + "framatube.org", + "friendica.a-zwenkau.de", + "friendica.utzer.de", + "fuckreddit.tryp.digital", + "gtio.io", + "h3h3.club", + "heapoverflow.ml", + "info.prou.be", + "kallutatud.info", + "lemmy.161.social", + "lemmy.2labz.com", + "lemmy.ca", + "lemmy.cat", + "lemmy.eus", + "lemmy.fediverse.town", + "lemmy.jdelcampo.eu", + "lemmy.lohn.in", + "lemmy.odat.xyz", + "lemmy.odium.pro", + "lemmy.perthchat.org", + "lemmy.pt", + "lemmy.rimkus.it", + "lemmy.schuerz.at", + "lemmy.tmpod.dev", + "lemmy.wiredentrypoint.xyz", + "lemmygrad.ml", + "libranet.de", + "loma.ml", + "mander.xyz", + "masr.social", + "mentano.org", + "meowrr.com", + "midwest.social", + "nerdica.net", + "peertube.openstreetmap.fr", + "peertube.uno", + "poliverso.org", + "purplerabbit.xyz", + "rollenspiel.group", + "slrpnk.net", + "social.hannebrook.info", + "social.lealternative.net", + "sopuli.xyz", + "stammtisch.hallertau.social", + "szmer.info", + "t.roelroscamabbing.nl", + "tilvids.com", + "tube.aquilenet.fr", + "tube.network.europa.eu", + "tube.rsi.cnr.it", + "vote.casually.cat", + ], + allowed: null, + blocked: [ + "legbeard.xyz", + "wolfballs.com", + "lemmy.services.coupou.fr", + "lemmy.glasgow.social", + "narwhal.city", + "lotide.fbxl.net", + "a.tide.tk", + "b.tide.tk", + "c.tide.tk", + "dev.narwhal.city", + "mandacaru.caatinga.digital", + "lemmy.juggler.jp", + "exploding-heads.com", + "collapse.cat", + "elgiebety.pl", + "lemmy.tedomum.net", + "lemmy.mesh.party", + "wiredentrypoint.xyz", + "verity.fail", + "eope.xyz", + "federated.community", + ], + }, + }, }, { domain: "szmer.info", - name: "szmer", - description: "polskojęzyczna instancja lemmy-iego. ", - version: "0.16.3", - icon: "https://szmer.info/pictrs/image/XcQWr0D2CU.png", - online_users: 19, - total_users: 1241, - users_active_halfyear: 316, - users_active_month: 76, - open_registrations: true, - linked_instances_count: 10, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "szmer", + sidebar: + "Możesz współtworzyć ten serwis, jeśli tylko zechcesz! \n[Publikuj](https://szmer.info/create_post) interesujące Cię materiały w stosownych [społecznościach](https://szmer.info/communities) lub jeśli brakuje odpowiedniej [stwórz nową!](https://szmer.info/create_community)\n\nObecna wersja serwisu nie jest jeszcze w pełni funkcjonalna, mogą pojawiać się problemy, może brakować funkcji. Pracujemy nad tym. \nWszelkie uwagi możecie zgłaszać w społeczności [meta](https://szmer.info/c/meta), na [naszym kanale dyskusyjnym](https://app.element.io/#/room/#szmer:matrix.org) w sieci matrix lub pisząc na szmer@riseup.net.\n\nDziałamy bez reklam i śledzenia, jednak ma to swoje realne koszta. Jeśli jesteś w stanie i chcesz nas wesprzeć będziemy bardzo wdzięczni; przyjmujemy datki przez nasz profil na [liberapay](https://pl.liberapay.com/szmer.info/) :) \n\nZASADY:\n\n-> z szacunkiem - każda osoba powinna się tu czuć mile widziana\n\n-> żadnej bigoterii - w tym rasizmu, seksizmu, homofobii, ksenofobii etc\n\n-> żadnego porno - przynajmniej do póki nie powstaną zamknięte/prywatne grupy\n\n-> żadnych reklam/spamu \n \n-> jeśli za treść trzeba zapłacić korporacji, dodaj alternatywny link gdzie nie trzeba", + published: "2020-05-07T16:05:12.281510", + updated: "2022-04-28T09:32:50.691414", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://szmer.info/pictrs/image/XcQWr0D2CU.png", + banner: + "https://szmer.info/pictrs/image/a5508b42-5cc2-4c05-9748-3fb3134e6953.png", + description: "polskojęzyczna instancja lemmy-iego. ", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: + "Cześć, ze względu na atak trolli, jesteśmy zmuszeni chwilowo ręcznie zatwierdzać rejestracje nowych kont. Robimy to na bieżąco, więc w większości wypadków nie trzeba będzie długo czekać. \nWspólnymi siłami chcemy tworzyć bezpieczną i przyjazną przestrzeń. Dziękujemy za wyrozumiałość!\n\nProsimy napisz nam dwa zdania, co cię tu sprowadza?", + private_instance: false, + actor_id: "https://szmer.info/", + last_refreshed_at: "2022-05-10T19:40:03.085758", + inbox_url: "https://szmer.info/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1Qjtp9QUqEFQukN7fwF0\nRR2KVT950YsQsJOJM58fz7VZn5nsww7TzAA0QTSD2ZurKbTPwJfa7bYCPa1FPP8z\nJ9zweX6L81JqRMZH6gVm3Zz2TLePK6nQKb7VHnPfVjktqNmBETddRpB6flIH4Krm\n86LMyoqa9aq4VqJWbcPqTtRnzpXzGXofY6/alhUYbsNImhefWmqRdbeNsUQJ5ZCp\nofqQw1av1mVy2CVdyDu+Kg+hBF5dvCGnsRbi9A1wq1HyVZGqhQu2Y7oQ18Qj6K+c\nwIVXC4qbRvLN4K88trQQd39suwMWRB8nduJ0qN7aFdSfdQEU/xEjOT7EoPRyXFHA\nXQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 1241, + posts: 17493, + comments: 14980, + communities: 197, + users_active_day: 15, + users_active_week: 37, + users_active_month: 76, + users_active_half_year: 317, + }, + }, + admins: [ + { + person: { + id: 112, + name: "kolektyw_szmer", + display_name: "kolektyw Szmer", + avatar: null, + banned: false, + published: "2020-08-27T09:07:19.769976", + updated: "2021-12-30T14:53:17.179622", + actor_id: "https://szmer.info/u/kolektyw_szmer", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://szmer.info/u/kolektyw_szmer/inbox", + shared_inbox_url: "https://szmer.info/inbox", + matrix_user_id: null, + admin: true, + bot_account: true, + ban_expires: null, + }, + counts: { + id: 105, + person_id: 112, + post_count: 32, + post_score: 286, + comment_count: 57, + comment_score: 134, + }, + }, + ], + online: 18, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "elgiebety.pl", + "feddit.de", + "hub.lewactwo.pl", + "junta.pl", + "lemmy.161.social", + "lemmy.ml", + "lemmy.perthchat.org", + "libranet.de", + "loma.ml", + "slrpnk.net", + ], + allowed: null, + blocked: ["lemmygrad.ml"], + }, + }, }, { domain: "feddit.de", - name: "Feddit", - description: "Deutschsprachige Lemmy Community", - version: "0.16.3", - icon: "https://feddit.de/pictrs/image/uI7Q7MuePp.png", - online_users: 15, - total_users: 224, - users_active_halfyear: 74, - users_active_month: 34, - open_registrations: true, - linked_instances_count: 21, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "Feddit", + sidebar: + "feddit.de ist eine alternative reddit Instanz im [Fediverse](https://de.wikipedia.org/wiki/Fediverse).\n\nHier entsteht ein alternativer, unabhängiger und selbstverwalteter Raum zum freien Meinungsaustausch, jenseits der Kontrolle großer Tech-Unternehmen.\n\n\nNetiquette wird vorausgesetzt. \nGepflegt wird ein respektvoller Umgang - **ohne Hass, Hetze, Diskriminierung**.\n\nDiese Community befindet sich im Aufbau und lebt von deiner Mitwirkung!\n\n::: spoiler Regeln\n\nDie folgenden Regeln sind eine (nicht vollständige) Liste von Verhaltensweisen, die nach Ermessen der Instanz-Admins und -Mods zur Löschung von Posts, Gruppen oder Sperrung von Konten führen können, wie in unseren Bedingungen beschrieben.\n\nBitte melde Verhalten, das dich stört den Admins/ Mods, und trage keine Konflikte in die Community.\n\nWir tolerieren kein diskriminierendes Verhalten und keine Inhalte, die die Unterdrückung von Mitgliedern marginalisierter Gruppen fördern oder befürworten. Diese Gruppen können durch eine der folgenden Eigenschaften gekennzeichnet sein (obwohl diese Liste natürlich unvollständig ist):\n- ethnische Zugehörigkeit\n- Geschlechtsidentität oder Ausdruck\n- sexuelle Identität oder Ausdruck\n- körperliche Merkmale oder Alter\n- Behinderung oder Krankheit\n- Nationalität, Wohnsitz, Staatsbürgerschaft\n- Reichtum oder Bildung\n- Religionszugehörigkeit, Agnostizismus oder Atheismus\n\nWir tolerieren kein bedrohliches Verhalten, Stalking und Doxxing.\nWir tolerieren keine Belästigungen, einschließlich Brigading, Dogpiling oder jede andere Form des Kontakts mit einem Benutzer, der erklärt hat, dass er nicht kontaktiert werden möchte.\n- Sei respektvoll. Alle sind hier willkommen.\n- Kein Rassismus, Sexismus, Ableismus, Homophobie, oder anderweitige Xenophobie\n- Wir tolerieren kein Mobbing, einschließlich Beschimpfungen, absichtliches Misgendering oder Deadnaming.\n- Wir dulden keine gewalttätige nationalistische Propaganda, Nazisymbolik oder die Förderung der Ideologie des Nationalsozialismus.\n- Aktionen, die diese Instanz oder ihre Leistung beschädigen sollen, können zur sofortigen Sperrung des Kontos führen.\n- Provokationen können nach Ermessen der Moderation entfernt werden\n- Toxisches Verhalten wird nicht geduldet\n- Keine Werbung\n- Kein Spam\n- Keine Pornografie\n- In Deutschland illegale Inhalte werden gelöscht und können zur sofortigen Sperrung des Accounts führen.\n:::\n\\\nAlthough this sites language is german, \neveryone is welcome to join, as we federate! \n\n🌐 [federation map](https://lemmymap.feddit.de)\n\n::: spoiler Server-Location: Nürnberg, Germany\n![100% Wasserkraft](https://feddit.de/pictrs/image/3DrdiNtaq1.png)\n:::\n\n::: spoiler Contact\nmatrix:\\\n[!feddit:tilde.fun](https://matrix.to/#/#feddit:tilde.fun)\\\n[@winter:tilde.fun](https://matrix.to/#/@winter:tilde.fun)\\\ne-mail:\\\npgcn5lz86@relay.firefox.com\n:::\n\n::: spoiler Attribution\nThis text was partly adapted and modified from [chaos.social ](https://chaos.social/about/more#rules).\nIt is free to be adapted and remixed under the terms of the [CC-BY (Attribution 4.0 International)](https://creativecommons.org/licenses/by/4.0/) license.\\\n:::", + published: "2021-08-19T15:18:01.453879", + updated: "2022-03-09T11:50:30.413462", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://feddit.de/pictrs/image/uI7Q7MuePp.png", + banner: "https://feddit.de/pictrs/image/3m9CuKW588.png", + description: "Deutschsprachige Lemmy Community", + community_creation_admin_only: false, + require_email_verification: true, + require_application: true, + application_question: + "📢 Leider gibt es derzeit ein erhöhtes Spam-Aufkommen, daher haben wir uns entschieden, neue Konten *vorübergehend* von Hand freizuschalten. \\\nDies sollte i.d.R. nicht länger als ein paar Stunden dauern.\n\n🤖 Um Bots auszusortieren, verrate uns doch kurz etwas über dich, das Fediverse, oder wie du auf feddit gestoßen bist!", + private_instance: false, + actor_id: "https://feddit.de/", + last_refreshed_at: "2022-05-05T15:09:13.753077", + inbox_url: "https://feddit.de/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw8TiPm2RkahljM19+LnP\nhmff6BI85HS3GhsEaerruiB8/H7GF1Rwf06824M8glyNzPHCBsJ6GHzVApH3HrFm\nYRIzlgpgsr2XqVnh+hdnZLYgW28InToZkpcTtlpoiw/IvInqnW2khyjuYEcd/gWg\ndNiSyMgX6SkOevL6nTFNjU9M5KSqlYSdsj9sRHAFrwcMMefJH++wc+iSGoa0Hk8k\nYEgePYtw8j7n8balhTv7X6PLNjZLeQug9mc46G+orLbPX3/pE0lkcGLDrLQHWXAO\nfdmci3yAOBHKHEzbmD8093DYae6BrYBC2TZPF05nIw2NRnWXRaRZPQVG3gbEWWaf\n/QIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 224, + posts: 2527, + comments: 3339, + communities: 82, + users_active_day: 9, + users_active_week: 18, + users_active_month: 34, + users_active_half_year: 74, + }, + }, + admins: [ + { + person: { + id: 2, + name: "wintermute", + display_name: null, + avatar: "https://feddit.de/pictrs/image/8M90Mze0fW.png", + banned: false, + published: "2021-08-19T15:17:45.198991", + updated: "2022-04-25T06:48:31.077351", + actor_id: "https://feddit.de/u/wintermute", + bio: 'dev / chess / veg / botanist / on\n[codeberg](https://codeberg.org/wintermute)\n\n`Wintermute is a distinct entity from the physical mainframe; its mind is only a part of another "potential entity", an aspect of its brain.`', + local: true, + banner: "https://feddit.de/pictrs/image/OCAOF6iNI2.jpg", + deleted: false, + inbox_url: "https://feddit.de/u/wintermute/inbox", + shared_inbox_url: "https://feddit.de/inbox", + matrix_user_id: "@winter:tilde.fun", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 427, + post_score: 1459, + comment_count: 261, + comment_score: 727, + }, + }, + ], + online: 7, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "anonsys.net", + "baraza.africa", + "beehaw.org", + "community.xmpp.net", + "enterprise.lemmy.ml", + "fapsi.be", + "federated.community", + "forum.purplerabbit.xyz", + "heapoverflow.ml", + "lemmy.161.social", + "lemmy.ca", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmy.rollenspiel.monster", + "lemmy.schuerz.at", + "loma.ml", + "mander.xyz", + "slrpnk.net", + "social.hannebrook.info", + "sopuli.xyz", + "stammtisch.hallertau.social", + ], + allowed: null, + blocked: [ + "caw.ai", + "collapse.cat", + "cyber-news.fr", + "elgiebety.pl", + "eope.xyz", + "exploding-heads.com", + "forum.nobigtech.es", + "freefedifolk.com", + "goldandblack.us.to", + "info.prou.be", + "group.lt", + "gtio.io", + "legbeard.xyz", + "lem.ph3j.com", + "lemmy.cat", + "lemmy.coupou.fr", + "lemmy.eus", + "lemmy.fediverse.jp", + "lemmy.juggler.jp", + "lemmy.kaouenn-noz.fr", + "lemmy.mesh.party", + "lemmy.otakufarms.com", + "lemmy.pt", + "lemmy.services.coupou.fr", + "lemmy.shrieker.net", + "lemmy.tedomum.net", + "lemmy.vip", + "lemmy.wiredentrypoint.xyz", + "lemmygrad.ml", + "lm.korako.me", + "mandacaru.caatinga.digital", + "masr.social", + "szmer.info", + "tabinezumi.net", + "www.cyber-news.fr", + "wolfballs.com", + "a.tide.tk", + "b.tide.tk", + "c.tide.tk", + "dev.narwhal.city", + "lotide.fbxl.net", + "lotide.exopla.net.eu.org", + "narwhal.city", + ], + }, + }, }, { domain: "sopuli.xyz", - name: "Sopuli", - description: - "A general-purpose instance run by a Finn - everyone is welcome here!", - version: "0.16.3", - icon: "https://sopuli.xyz/pictrs/image/AjMQEWabkH.png", - online_users: 6, - total_users: 416, - users_active_halfyear: 98, - users_active_month: 30, - open_registrations: true, - linked_instances_count: 24, - require_application: false, + site_info: { + site_view: { + site: { + id: 1, + name: "Sopuli", + sidebar: + "![](https://sopuli.xyz/pictrs/image/V70PisIEg4.png)\nSuomalaisen pyörittämä yleinen instanssi - kaikki ovat tänne tervetulleita!\n\n# Rules\n1. Remember the human! (no harassment, threats, etc.)\n2. No racism or other discrimination\n3. No Nazis, QAnon or conspiracy whackos (extremists in general) and no endorsement of them\n4. No porn\n5. No ads\n6. No spam\n\n# Säännöt\n1. Muista ihminen! (ei häirintää, uhkailua, jne)\n2. Ei rasismia tai muuta syrjintää\n3. Ei natseja, QAnonia tai salaliittohörhöjä (ääriliikkeitä ylipäänsä) eikä heidän tukemista\n4. Ei pornoa\n5. Ei mainoksia\n6. Ei roskapostia\n\n\n[Matrix Space](https://matrix.to/#/!SJfHjWlTugnKyonyQi:matrix.org?via=matrix.org)\n\n[FAQ / UKK](https://sopuli.xyz/post/13531)", + published: "2021-02-01T15:25:18.304303", + updated: "2022-05-16T09:11:18.392517", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://sopuli.xyz/pictrs/image/AjMQEWabkH.png", + banner: null, + description: + "A general-purpose instance run by a Finn - everyone is welcome here!", + community_creation_admin_only: false, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://sopuli.xyz/", + last_refreshed_at: "2022-05-06T18:08:59.178283", + inbox_url: "https://sopuli.xyz/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx2fvMKV4z7QJr6E5uU69\nhHrdRTyPbjygzAKGBpvjfsbJOoWQ4cXPP8E+UCfNJ/Ig1LDFRSKnJtW0DoOUdsiE\n81tXrE72aR5fYi2PdCpUM11lxAKhyDMCqoZSCaFesKMU5619bSg94EJ21wlyXk9U\npg29zCEUwCUR9tsaNNslQgzenESwnVSZJdAFd8f4mDF1A5RPxpS3GTYYCrSpoLLt\nxJOOEjOL8ldhXuHgD5mC+OuNl8DZlKjg/jXgzS2IKq3ASAu8TJKpa36BlwgofD7H\nppxdWubRS1kEqWIKRnm1007LK2PR7rif47iqdw/0L+kBEMtKc9dZAgP21ACjmoNv\nSQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly", + }, + counts: { + id: 1, + site_id: 1, + users: 415, + posts: 1847, + comments: 1437, + communities: 61, + users_active_day: 6, + users_active_week: 18, + users_active_month: 30, + users_active_half_year: 98, + }, + }, + admins: [ + { + person: { + id: 2, + name: "QuentinCallaghan", + display_name: "QuentinCallaghan", + avatar: "https://sopuli.xyz/pictrs/image/rRggnpdFz4.jpg", + banned: false, + published: "2021-02-01T15:24:32.478651", + updated: "2022-04-02T18:28:53.800647", + actor_id: "https://sopuli.xyz/u/QuentinCallaghan", + bio: "Finnish guy\n\nFounder and admin of sopuli.xyz\n\nMastodon: [Rynach@mstdn.io](https://mstdn.io/@Rynach)\n\nMatrix: @ rynach:matrix.org", + local: true, + banner: null, + deleted: false, + inbox_url: "https://sopuli.xyz/u/QuentinCallaghan/inbox", + shared_inbox_url: "https://sopuli.xyz/inbox", + matrix_user_id: "@rynach:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1308, + post_score: 6069, + comment_count: 474, + comment_score: 1863, + }, + }, + { + person: { + id: 3, + name: "Ninmi", + display_name: "Ninmi", + avatar: "https://sopuli.xyz/pictrs/image/hoCbpyb8uW.jpg", + banned: false, + published: "2021-02-04T11:41:03.883114", + updated: "2022-04-11T15:54:35.811440", + actor_id: "https://sopuli.xyz/u/Ninmi", + bio: "A bit of an idealist and fond of empathy. \nCan respond in English, Suomi and broken 日本語.", + local: true, + banner: null, + deleted: false, + inbox_url: "https://sopuli.xyz/u/Ninmi/inbox", + shared_inbox_url: "https://sopuli.xyz/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 122, + post_score: 418, + comment_count: 267, + comment_score: 890, + }, + }, + ], + online: 5, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "baraza.africa", + "beehaw.org", + "ds9.lemmy.ml", + "enterprise.lemmy.ml", + "eope.xyz", + "fapsi.be", + "feddit.de", + "gtio.io", + "heapoverflow.ml", + "lemmy.161.social", + "lemmy.ca", + "lemmy.ml", + "lemmy.otakufarms.com", + "lemmy.perthchat.org", + "lemmy.schuerz.at", + "loma.ml", + "mander.xyz", + "meowrr.com", + "midwest.social", + "slrpnk.net", + "stammtisch.hallertau.social", + "tabinezumi.net", + "vote.casually.cat", + "voyager.lemmy.ml", + ], + allowed: null, + blocked: [ + "wolfballs.com", + "narwhal.city", + "lemmygrad.ml", + "a.tide.tk", + "goldandblack.us.to", + ], + }, + }, }, { domain: "community.xmpp.net", - name: "XMPP Community", - description: - "A community space for projects and users of the Extensible Messaging and Presence Protocol (XMPP).", - version: "0.16.3", - icon: "https://community.xmpp.net/pictrs/image/35c85076-7971-4e2a-b5d1-18ef437366ff.png", - online_users: 1, - total_users: 56, - users_active_halfyear: 35, - users_active_month: 29, - open_registrations: true, - linked_instances_count: 10, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "XMPP Community", + sidebar: + "Welcome to the XMPP Community Lemmy instance! Please be kind. All communities in this space should be at least tangentially related to XMPP.\n\nPlease abide by our [code of conduct][coc]. To report a CoC violation, message one of the admins.\n\n[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)][coc] \n\n[coc]: https://www.contributor-covenant.org/version/2/1/code_of_conduct/", + published: "2022-04-11T15:23:46.791420", + updated: "2022-04-19T18:00:51.173869", + enable_downvotes: false, + open_registration: true, + enable_nsfw: false, + icon: "https://community.xmpp.net/pictrs/image/35c85076-7971-4e2a-b5d1-18ef437366ff.png", + banner: null, + description: + "A community space for projects and users of the Extensible Messaging and Presence Protocol (XMPP).", + community_creation_admin_only: true, + require_email_verification: false, + require_application: true, + application_question: + "Hi there, to prevent spam please tell us why you want to join this instance and what XMPP communities you're a part of (if any); thanks!", + private_instance: false, + actor_id: "https://community.xmpp.net/", + last_refreshed_at: "2022-04-11T15:23:46.789062", + inbox_url: "https://community.xmpp.net/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5VrbqJ41eBtkinlu+zn+\nXsTo1XczhfrsMYBdrM7CFjTe9Ls3xBj4fCbYW6oHDfqkceHGObs7xHizqRCbAHp1\njY6y8B9P9mI8EXjmRXdhViUVyJ3nVJMqT5TgxErsifXl1TKenOooz5fA0jRyDKY7\ny39uaI78U4NS2cjeQ88OxhC6KBVAXpWT1GDoSWbb/4O9Mmpv0s/yHw7ZmF8U6dHP\nNvO+DPahqd5fhAggWtQT9d5jjWossAcQaJdzJo67VIksqYOMPFkEgDHthSpCVsH0\nWOEfNhmdN0QfO0SYenzmJ9aOXqMfuPDaosNqf84E60vgVefpM+nypPViXULsIS0F\nHwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 56, + posts: 73, + comments: 82, + communities: 16, + users_active_day: 1, + users_active_week: 2, + users_active_month: 29, + users_active_half_year: 35, + }, + }, + admins: [ + { + person: { + id: 3, + name: "samwhited", + display_name: null, + avatar: + "https://community.xmpp.net/pictrs/image/1cc71dcc-f5fe-46b8-aa15-1e1fba4c8d80.jpeg", + banned: false, + published: "2022-04-12T17:03:31.067980", + updated: "2022-04-13T13:36:52.647774", + actor_id: "https://community.xmpp.net/u/samwhited", + bio: null, + local: true, + banner: null, + deleted: true, + inbox_url: "https://community.xmpp.net/u/samwhited/inbox", + shared_inbox_url: "https://community.xmpp.net/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 4, + post_score: 10, + comment_count: 2, + comment_score: 4, + }, + }, + { + person: { + id: 4, + name: "pep", + display_name: null, + avatar: + "https://community.xmpp.net/pictrs/image/9b98d86f-6b87-4fce-b136-bf3a580b3eec.png", + banned: false, + published: "2022-04-12T17:51:00.738194", + updated: "2022-04-12T19:44:11.702667", + actor_id: "https://community.xmpp.net/u/pep", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://community.xmpp.net/u/pep/inbox", + shared_inbox_url: "https://community.xmpp.net/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 3, + person_id: 4, + post_count: 4, + post_score: 12, + comment_count: 13, + comment_score: 24, + }, + }, + { + person: { + id: 6, + name: "MattJ", + display_name: null, + avatar: + "https://community.xmpp.net/pictrs/image/1beec86e-06ee-41d0-b11c-86f9429bc89f.png", + banned: false, + published: "2022-04-12T18:55:19.449672", + updated: "2022-04-14T16:03:30.589780", + actor_id: "https://community.xmpp.net/u/MattJ", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://community.xmpp.net/u/MattJ/inbox", + shared_inbox_url: "https://community.xmpp.net/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 5, + person_id: 6, + post_count: 0, + post_score: 0, + comment_count: 5, + comment_score: 8, + }, + }, + { + person: { + id: 143, + name: "sam", + display_name: "Sam", + avatar: + "https://community.xmpp.net/pictrs/image/08401dfb-64ce-4576-884a-83af94513265.jpeg", + banned: false, + published: "2022-04-13T13:37:13.506336", + updated: "2022-04-17T17:29:58.031639", + actor_id: "https://community.xmpp.net/u/sam", + bio: "I work on the Mellium project and sometimes on XEPs. Bike mechanic during the day, but also sometimes freelance software development and censorship circumvention.\n\n**Hire me:** https://willowbark.org/", + local: true, + banner: null, + deleted: false, + inbox_url: "https://community.xmpp.net/u/sam/inbox", + shared_inbox_url: "https://community.xmpp.net/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 102, + person_id: 143, + post_count: 30, + post_score: 105, + comment_count: 43, + comment_score: 103, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "community.nicfab.it", + "community.xmpp.net", + "feddit.de", + "heapoverflow.ml", + "lemmy.ml", + "lemmygrad.ml", + "libranet.de", + "loma.ml", + "privacy.nicfab.it", + "slrpnk.net", + ], + allowed: null, + blocked: null, + }, + }, }, { domain: "wolfballs.com", - name: "Wolfballs", - description: - "A decentralized federated community of freedom fighting meme farmers ", - version: "0.16.3", - icon: "https://wolfballs.com/pictrs/image/e51f1a21-aded-46fc-8a5a-6571dc1a78c3.png", - online_users: 10, - total_users: 269, - users_active_halfyear: 126, - users_active_month: 28, - open_registrations: true, - linked_instances_count: 13, - require_application: false, + site_info: { + site_view: { + site: { + id: 1, + name: "Wolfballs", + sidebar: + "Recent Announcements will be on the side bar.\n\nWe stand with Israel.\n\nWolf balls leadership is strongly anti-nazi and anti-fascism and will fight hate speech with better speech\n\n# Rules\n\n1. No illegal content\n2. No porn spam in default community\n3. ~~No racial slurs in community names.~~ Now that we have a offensive community feature this rule will be sunset and communities with super offensive titles will just be labeled offensive. \n4. Communities should not be created for one time questions. Communities are intended to serve as long standing moderated spaces. Where the moderation rules are primarily governed by that communities moderator/s. If no participation has occurred in a community for 30 days an admin may delete it. (If this rule is a problem, feel free to propose a different solution)\n5. No threatening lawsuits\n6. Partial nudity is NSFW. Not marking a NSFW post as NSFW three times can result in a site wide ban.\n7. No threatening to kill people or groups of people.\n8. No vote manipulation. Especially when coupled with an attempt to form a narrative, for example post something offensive, artificially boost it so you can claim on other platforms we are \"Alt-Right\" or some other trash \n\n\n# Faq\n\n **Do you ban words?**\n\nno\n\n**How do you define a women**\n\nA women is defined as x chromosomes and no tallywhacker i.e probably not you\n\n**A certain post made me feel bad, what should I do?**\n\nIf it is illegal, hit the report button.\n\nIf it hurt your feelings i'm sorry.\n\n**Where Can I suggest Features?**\n\nhttps://wolfballs.com/c/development\n\n**Is this site Racist**\n\nNo\n\n**Is this site biggoted?**\n\nVery much the opposite. We are tolerant here. To understand what is tolerance see this post here https://wolfballs.com/post/5294\n\nwolfballs maintains that God made all man kind equal in his eyes. Man and women. There is nothing in between either. \n\nWe are striving to maintain a high level of freedom. Actions may be taken against super offensive communities. Be assured we won't be adding fact check labels ever\n\n**You deleted my comment or post in a community. This isn't fReEsPeEcH**\n\nThis is a community of communities. Each community can moderate their community how they feel best. That includes deleting comments and post. Your right to shit post doesn't trump someone elses right to create a space their voice can be properly heard. If you want pure free speech where you just say what ever you want try a pleroma instance. That is a better format for freespeech absolutest. \n \n**Do you encourage racism?**\n\nNo, we encourage everyone to love each other no matter their skin color. We are striving for freedom of thought and discussion. That gets messy. Banning is a slippery slope and we don't do it without taking a very detailed hard look into how it effects everyone's freedom to think and communicate. Feel free to raise concerns in the default forum.\n\n**How could you post Vaccine Missinformation. Isn't that dangerous? Won't that cause this death of literally 10's of billions of people? My parents almost died from covid and watch fox news. How could you?**\n\nFor more information on why the risk benifit may be what you think [Watch this](https://rumble.com/vqx3kb-the-pfizer-inoculations-do-more-harm-than-good.html)\n\nOr if you prefer, [read up](https://rwmalonemd.substack.com/) on what the inventor of the mrna vaccine has to say about it. [Or watch his Rogan interview](https://open.spotify.com/episode/3SCsueX2bZdbEzRtKOCEyT?si=MEyYUOSZSJ-Ki3wCHY0zGA)\n\n**Where can I find the UI customizations?**\n\nThey are not much but I keep them here https://git.freefedifolk.com/chuzuchi/wolfballs-ui\n\n**Recent Announcements:**\n\nhttps://wolfballs.com/post/14442\n\nhttps://wolfballs.com/post/12615\n\nhttps://wolfballs.com/post/6838\n\nhttps://wolfballs.com/post/5365\n\nhttps://wolfballs.com/post/4702\n\nhttps://wolfballs.com/post/3309\n\nhttps://wolfballs.com/post/3196", + published: "2021-10-09T22:34:10.057117", + updated: "2022-05-13T17:43:45.896223", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://wolfballs.com/pictrs/image/e51f1a21-aded-46fc-8a5a-6571dc1a78c3.png", + banner: + "https://wolfballs.com/pictrs/image/13f75322-6d88-4b3a-8866-422976ad61e8.jpeg", + description: + "A decentralized federated community of freedom fighting meme farmers ", + community_creation_admin_only: false, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://wolfballs.com/", + last_refreshed_at: "2022-05-13T15:50:26.599780", + inbox_url: "https://wolfballs.com/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5tddRAQabW/7jvbzm4GD\nNX21rqrYDK/LAZZaRir5NbsCY39zK1S2MBDufio+dLCb0eIzlHrkMbAnZ83IK1EU\nRwI4Q1DhzxAg4wgT9xoNDSq18EbMhKONQJzjPbbphogcR+jud1AMBi0VmK4JVyTP\nle2LiREVV+57D97+jxgADY1WPjgpVT9ZjLsFCSxwnVdwuA/gDAk4yK5DvncQcknR\nEYN8j4z42WxtOEHdJ5XThNFo+o65hLhEt09yuZugk+CIPXYQ1r3W9H8TViWQlYhz\n99WDyt5LFa4rInPmuxCJZiDEY5bOke4BJ3T+zcqlSw9SicgnqhNUFXQwQAHuTTCe\nGwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "cyborg", + }, + counts: { + id: 1, + site_id: 1, + users: 269, + posts: 10854, + comments: 14929, + communities: 191, + users_active_day: 8, + users_active_week: 16, + users_active_month: 28, + users_active_half_year: 126, + }, + }, + admins: [ + { + person: { + id: 2, + name: "masterofballs", + display_name: "Masterofballs", + avatar: "https://wolfballs.com/pictrs/image/BXRqriWv6P.jpg", + banned: false, + published: "2021-10-09T22:33:32.506678", + updated: "2022-04-20T20:47:32.233188", + actor_id: "https://wolfballs.com/u/masterofballs", + bio: "Ancient Eastern Demon. Sealed by the late emperor with a blood seal during the Zhou Dynasty. Masterofballs was accidentally released from his prison under Tiananmen square in 1989. \n\nNow free to spread his Chaos across the fediverse.\n\nFavorite foods: Raw Donkey meat and rice wine. \n", + local: true, + banner: null, + deleted: false, + inbox_url: "https://wolfballs.com/u/masterofballs/inbox", + shared_inbox_url: "https://wolfballs.com/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 2118, + post_score: 6298, + comment_count: 2639, + comment_score: 5176, + }, + }, + { + person: { + id: 10, + name: "wigglehard", + display_name: "Wiggle Hard", + avatar: + "https://wolfballs.com/pictrs/image/1d9af1f4-5de4-4de1-b559-bbca9d97131c.jpeg", + banned: false, + published: "2021-10-20T16:38:40.254724", + updated: "2022-02-26T14:39:51.604706", + actor_id: "https://wolfballs.com/u/wigglehard", + bio: "Christian MAGA trucker, site admin, creator of freeforum. Get involved in local politics, take it all back from the ground up. Share wolfballs on other sites", + local: true, + banner: + "https://wolfballs.com/pictrs/image/13b54f57-9737-4d58-875f-9d391a9e6cdc.jpeg", + deleted: false, + inbox_url: "https://wolfballs.com/u/wigglehard/inbox", + shared_inbox_url: "https://wolfballs.com/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 9, + person_id: 10, + post_count: 2311, + post_score: 6851, + comment_count: 1436, + comment_score: 2906, + }, + }, + { + person: { + id: 33, + name: "BearBalls", + display_name: null, + avatar: null, + banned: false, + published: "2021-10-30T00:28:46.483327", + updated: null, + actor_id: "https://wolfballs.com/u/BearBalls", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://wolfballs.com/u/BearBalls/inbox", + shared_inbox_url: "https://wolfballs.com/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 32, + person_id: 33, + post_count: 28, + post_score: 81, + comment_count: 77, + comment_score: 185, + }, + }, + ], + online: 11, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "a.tide.tk", + "anonsys.net", + "baraza.africa", + "exploding-heads.com", + "gtio.io", + "legbeard.xyz", + "lemmy.shrieker.net", + "libranet.de", + "loma.ml", + "lotide.fbxl.net", + "mander.xyz", + "narwhal.city", + "social.hannebrook.info", + ], + allowed: null, + blocked: [ + "lemmy.ml", + "lemmygrad.ml", + "sopuli.xyz", + "https://scholar.social", + "pawoo.net", + "mastodon.social", + "donotban.com", + "mastodon.cc", + "mastodon.green", + "nerdculture.de", + "freefedifolk.com", + "social.teci.world", + "redliberal.com", + "pawoo.net", + ], + }, + }, }, { domain: "beehaw.org", - name: "Beehaw", - description: "Aspiring to be(e) a safe, friendly and diverse place.", - version: "0.16.3", - icon: "https://beehaw.org/pictrs/image/33fad824-7820-41c0-9c4a-0d7cf831ddd3.png", - online_users: 2, - total_users: 99, - users_active_halfyear: 49, - users_active_month: 17, - open_registrations: true, - linked_instances_count: 5, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "Beehaw", + sidebar: + '**Be(e) nice.**\n\n1. No tolerance for the intolerant.\n2. No [doxing](https://en.wikipedia.org/wiki/Doxing).\n3. No [sealioning](https://en.wikipedia.org/wiki/Sealioning).\n4. No [advertising](https://en.wikipedia.org/wiki/Advertising).\n5. No [pornography](https://en.wikipedia.org/wiki/Pornography).\n\nJoin us on [Discord](https://discord.gg/ZtZzR6TWs2)\n\n-------------------------------\n\nWe\'re a collective of individuals upset with the way social media has been traditionally governed. A severe lack of moderation has led to major platforms like Facebook to turn into political machinery focused on disinformation campaigns as a way to make profit off of users. Websites with ineffective moderation allow hate speech to proliferate and contribute to the erosion of minority rights and safe spaces. Our goal with Beehaw is to demonstrate and promote a healthier environment.\n\nAt the time being we are not planning on having any profits. 100% of the costs will go towards server time, licensing costs, and artwork. In the future if we need to hire developers or other labor, it would be sourced through the [Open Collective Foundation](https://opencollective.com/beehaw), and it would be transparent to the community before any changes were made.\n\nAs a news aggregator and a social media outlet, with a focus on being a safe and accepting space, we strive to create a positive social impact. We will, also, help to connect underprivileged and minority individuals with education and civic participation by promoting a healthier online experience.\n\nDigitalOcean Referral Badge', + published: "2022-01-28T12:29:55.435104", + updated: "2022-05-04T01:40:54.278910", + enable_downvotes: false, + open_registration: true, + enable_nsfw: true, + icon: "https://beehaw.org/pictrs/image/33fad824-7820-41c0-9c4a-0d7cf831ddd3.png", + banner: null, + description: + "Aspiring to be(e) a safe, friendly and diverse place.", + community_creation_admin_only: true, + require_email_verification: false, + require_application: true, + application_question: "How did you hear about Beehaw?", + private_instance: false, + actor_id: "https://beehaw.org/", + last_refreshed_at: "2022-05-13T17:14:20.572498", + inbox_url: "https://beehaw.org/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzrB/2IVCZ2hZLYCYqw4Z\nlJDwRtaws9h1y6QCrAk92cXkf30VE/7qu/aKAy2SSGyHC196Hxo2yiIdPgeHgrww\nFp2pbp2FdzYaLsS4bnXc8xV5qTVJqQdYiGazCQCsutk4FpyHV80cGClDyNmAGNsD\ng8l1oWBgJOt/3+QxnpB2+suEzDqrYv1IDqQTGVe0bgJKYiFgTjYhZQAbs3ITrYtv\nYJGxpri1HkUsA8buGUxOBWTqpwO+aFxiK6Ln2eDX4WlD+p2lFPIT3HVvYCfaZZ3T\nnNFGz/T4eSyJwF60/hxM+VDw1HUmajUuwu3YpM0s963RZFtFDOai71PEuMxzoKKN\nfQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 99, + posts: 513, + comments: 586, + communities: 18, + users_active_day: 2, + users_active_week: 6, + users_active_month: 17, + users_active_half_year: 49, + }, + }, + admins: [ + { + person: { + id: 2, + name: "admin", + display_name: "Chris Remington", + avatar: + "https://beehaw.org/pictrs/image/d29a8a53-296f-4e0f-a703-0593eb119d02.png", + banned: false, + published: "2022-01-28T12:29:55.001133", + updated: "2022-04-09T20:43:51.740686", + actor_id: "https://beehaw.org/u/admin", + bio: "Volunteer amateur systems administrator for Beehaw. Stay-at-home dad. Outdoor enthusiast.", + local: true, + banner: null, + deleted: false, + inbox_url: "https://beehaw.org/u/admin/inbox", + shared_inbox_url: "https://beehaw.org/inbox", + matrix_user_id: "@removed:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 89, + post_score: 404, + comment_count: 145, + comment_score: 439, + }, + }, + { + person: { + id: 9, + name: "Gaywallet", + display_name: null, + avatar: + "https://beehaw.org/pictrs/image/d844b352-30db-4330-841e-b277deb67737.jpeg", + banned: false, + published: "2022-01-28T23:01:12.455863", + updated: "2022-01-31T17:19:59.820361", + actor_id: "https://beehaw.org/u/Gaywallet", + bio: "I'm gay", + local: true, + banner: null, + deleted: false, + inbox_url: "https://beehaw.org/u/Gaywallet/inbox", + shared_inbox_url: "https://beehaw.org/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 8, + person_id: 9, + post_count: 41, + post_score: 227, + comment_count: 109, + comment_score: 366, + }, + }, + { + person: { + id: 12, + name: "Lionir", + display_name: "Lionir", + avatar: + "https://beehaw.org/pictrs/image/4769f445-323d-4234-8f42-56b1630778e8.png", + banned: false, + published: "2022-01-29T02:04:37.168183", + updated: "2022-01-30T22:05:35.971864", + actor_id: "https://beehaw.org/u/Lionir", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://beehaw.org/u/Lionir/inbox", + shared_inbox_url: "https://beehaw.org/inbox", + matrix_user_id: "@lionir:one.ems.host", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 11, + person_id: 12, + post_count: 1, + post_score: 7, + comment_count: 2, + comment_score: 6, + }, + }, + ], + online: 3, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "feddit.de", + "lemmy.ml", + "lemmygrad.ml", + "libranet.de", + "midwest.social", + ], + allowed: null, + blocked: [ + "legbeard.xyz", + "wolfballs.com", + "lemmy.services.coupou.fr", + "lemmy.glasgow.social", + "narwhal.city", + "lotide.fbxl.net", + "a.tide.tk", + "b.tide.tk", + "c.tide.tk", + "dev.narwhal.city", + "mandacaru.caatinga.digital", + "lemmy.juggler.jp", + "exploding-heads.com", + "collapse.cat", + "elgiebety.pl", + ], + }, + }, }, { domain: "lemmy.ca", - name: "Lemmy dot C.A.", - description: - "A canadian-run community, geared towards canadians, but all are welcome!", - version: "0.16.3", - icon: "https://lemmy.ca/pictrs/image/AX0BZv78yT.png", - online_users: 3, - total_users: 324, - users_active_halfyear: 106, - users_active_month: 17, - open_registrations: true, - linked_instances_count: 22, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "Lemmy dot C.A.", + sidebar: + '### Welcome to Lemmy.CA!\n\n"Lemmy dot C.A." is so named due to it running the Lemmy software (see the links in the very bottom right for more info), being part of the Lemmy side of [the Fediverse](https://en.wikipedia.org/wiki/Fediverse), and it\'s (somewhat) geared toward Canucks, hosted in Canuckistan, and run by a Canuck. It is, however, not at all restricted to Canucks, or Canuck culture/topics/etc. All are welcome!\n\n#### We have some rules here:\n\n- No bigotry - including racism, sexism, ableism, homophobia, or xenophobia. [Code of Conduct](https://join-lemmy.org/docs/en/code_of_conduct.html).\n- Be respectful. Everyone should feel welcome here.\n- No porn.\n- No Ads / Spamming.\n\n(Much of this is all based on the well-established groundwork of the Lemmy home instance, [lemmy.ml](https://lemmy.ml))', + published: "2020-12-12T23:59:08.349434", + updated: "2022-03-02T04:39:00.184279", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.ca/pictrs/image/AX0BZv78yT.png", + banner: null, + description: + "A canadian-run community, geared towards canadians, but all are welcome!", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: + "To combat brigading, we have restricted user registration on this instance. Please write a short description containing:\n\n* Why you would like to join [lemmy.ca](https://lemmy.ca/)\n* What communities you would most like to participate in\n* How or why you chose the username you did\n\nWe use these questions to screen for and discourage spammers and trolls. We will try our best to review your application as soon as possible.", + private_instance: false, + actor_id: "https://lemmy.ca/", + last_refreshed_at: "2022-04-30T03:25:17.124320", + inbox_url: "https://lemmy.ca/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv96yTooWgOj6EQUYBPm2\nzf3GGvjWAgIkZEugq/7KyOP01m8N5rT0jMDEMS10blkkrqN/nEU6r4dQEq6YwrjZ\nyEV1h8gbf0B3Fd6dbo9BEj3lQUf1NA2hskToVn9BcGAk7gfpY3L7gdLu6Lzm/TKG\n/rN7IkdBbmo7Xi9ULE3/7e1z6Vdjjli3A7DAjt6PszxgEAsa9t2eKvlWMEyde0y5\nMJFmYMlOknno6Zh6AbEdM4uNe28MjKRFU4MYb/acePKrGFD3xpCamyRjQmgMxw5v\n1yh3IEyQmJGe7sdcixkGQgzy1rXAvb456kK+FtlWtsdVcYihTorbw4AWsS9pzjMZ\nuQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 323, + posts: 707, + comments: 958, + communities: 61, + users_active_day: 3, + users_active_week: 9, + users_active_month: 17, + users_active_half_year: 106, + }, + }, + admins: [ + { + person: { + id: 3, + name: "kinetix", + display_name: "Kinetix", + avatar: "https://lemmy.ca/pictrs/image/Y2exKgUpg8.png", + banned: false, + published: "2020-12-13T00:14:53.385865", + updated: "2021-02-09T20:37:12.039880", + actor_id: "https://lemmy.ca/u/kinetix", + bio: "lemmy.ca admin and general fediverse lurker\n\nOther accounts:\n- [Peertube](https://video.mycrowd.ca/accounts/kinetix/video-channels)\n- [Pleroma](https://mycrowd.ca/kinetix)\n- [Friendica](https://social.isurf.ca/profile/kinetix)", + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.ca/u/kinetix/inbox", + shared_inbox_url: "https://lemmy.ca/inbox", + matrix_user_id: "@kinetix:matrix.isurf.ca", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 3, + person_id: 3, + post_count: 66, + post_score: 199, + comment_count: 258, + comment_score: 579, + }, + }, + { + person: { + id: 43448, + name: "smorks", + display_name: null, + avatar: null, + banned: false, + published: "2021-11-18T18:08:43.931879", + updated: "2022-02-25T22:27:36.807427", + actor_id: "https://lemmy.ca/u/smorks", + bio: "fediverse enthusiast, lurker, [lemmy.ca](https://lemmy.ca/) admin", + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.ca/u/smorks/inbox", + shared_inbox_url: "https://lemmy.ca/inbox", + matrix_user_id: "@smorks:feddi.ca", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 3964, + person_id: 43448, + post_count: 6, + post_score: 24, + comment_count: 30, + comment_score: 75, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "anonsys.net", + "beehaw.org", + "f.freinetz.ch", + "feddit.de", + "gtio.io", + "heapoverflow.ml", + "lemmy.161.social", + "lemmy.ca", + "lemmy.glasgow.social", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmy.schuerz.at", + "lemmygrad.ml", + "libranet.de", + "mander.xyz", + "midwest.social", + "narwhal.city", + "rollenspiel.group", + "slrpnk.net", + "sopuli.xyz", + "talk.thomcat.rocks", + "verity.fail", + ], + allowed: null, + blocked: null, + }, + }, }, { domain: "exploding-heads.com", - name: "Exploding Heads", - description: "Things that make your head explode", - version: "0.16.3", - icon: "https://exploding-heads.com/pictrs/image/f48abd93-f2d9-4a44-a327-380e063744b1.png", - online_users: 2, - total_users: 17, - users_active_halfyear: 16, - users_active_month: 16, - open_registrations: true, - linked_instances_count: 19, - require_application: false, + site_info: { + site_view: { + site: { + id: 1, + name: "Exploding Heads", + sidebar: + "We are a community of free people tired of propaganda fed to us government, media, big tech, crony capitalists, and self anointed elites.\n\n**Rules**\n- Be authentic.\n- Be respectful. Everyone should feel welcome here.\n- No porn.\n- No ads / spamming.\n- No doxing\n- No threats or personal insults\n- No discrimination\n\n[Terms](https://exploding-heads.com/post/1) - [Privacy Policy](https://exploding-heads.com/post/2) - \n\nExploding Heads © 2022. All rights reserved\n\n", + published: "2022-02-27T17:24:00.976189", + updated: "2022-04-11T14:26:55.169524", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://exploding-heads.com/pictrs/image/f48abd93-f2d9-4a44-a327-380e063744b1.png", + banner: null, + description: "Things that make your head explode", + community_creation_admin_only: true, + require_email_verification: false, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://exploding-heads.com/", + last_refreshed_at: "2022-05-05T22:05:33.011323", + inbox_url: "https://exploding-heads.com/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA00+1Y/zk6zVKHJVqEBM1\n7/eDqfbzmZ98WiLQ8jMexrcofqkX1XKOYBD+/Zqxu8xvz2LT/ER1NnGD6XyoLqac\nOggr0R0vJFS2VckiaV0M+7j9J3cx4RexAlhbaIQydz0o0RdiTiebp2xwDPhhX1Kc\nO/p+n8i0vxy8MIoEeGajiDFE5iKnd1a9UoNO36f6fDp9wZw2GGH0hYO+uMlehmhT\nQIOv5jpXJbLbmUlD2mX0ZUYy70+NAE4Ma7GC+Yw6UKz3T/m5derLfmWexDNtUQuw\nk24RCBH7QVao0MkuYVAyW1UrljI4Y3nA4rsM5cnzzZMmfoRD7St86o7d1hGxjo/9\nKQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "litera", + }, + counts: { + id: 1, + site_id: 1, + users: 17, + posts: 1462, + comments: 84, + communities: 49, + users_active_day: 2, + users_active_week: 2, + users_active_month: 16, + users_active_half_year: 16, + }, + }, + admins: [ + { + person: { + id: 2, + name: "admin", + display_name: "Kapow", + avatar: null, + banned: false, + published: "2022-02-27T17:20:27.414369", + updated: "2022-05-01T11:58:16.192546", + actor_id: "https://exploding-heads.com/u/admin", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://exploding-heads.com/u/admin/inbox", + shared_inbox_url: "https://exploding-heads.com/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1446, + post_score: 1645, + comment_count: 46, + comment_score: 77, + }, + }, + ], + online: 2, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "baraza.africa", + "beehaw.org", + "buckeyestate.social", + "community.xmpp.net", + "exploding-heads.com", + "fapsi.be", + "gtio.io", + "heapoverflow.ml", + "lemmy.ca", + "lemmy.mesh.party", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmygrad.ml", + "mander.xyz", + "midwest.social", + "slrpnk.net", + "sopuli.xyz", + "verity.fail", + "wolfballs.com", + ], + allowed: null, + blocked: null, + }, + }, }, { domain: "feddit.it", - name: "Feddit.it", - description: "L'alternativa italiana a Reddit", - version: "0.16.3", - icon: "https://feddit.it/pictrs/image/64fddac4-ef09-44e4-ba91-280ece81605a.png", - online_users: 6, - total_users: 17, - users_active_halfyear: 9, - users_active_month: 9, - open_registrations: true, - linked_instances_count: 21, - require_application: true, - }, - { - domain: "lemmy.eus", - name: "Lemmy.eus", - description: - "Euskarazko lehen web-foro irekiak. Software librea, fedibertsoa, euskalmemeak, literatura... (Basque language)", - version: "0.16.2", - icon: "https://lemmy.eus/pictrs/image/R55fPm9RfM.png", - online_users: 5, - total_users: 489, - users_active_halfyear: 134, - users_active_month: 8, - open_registrations: true, - linked_instances_count: 11, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "Feddit.it", + sidebar: + "#### Cos'è Fedd**it**\nFedd**it** è l'alternativa italiana a Reddit, basata sul software [Lemmy](https://www.lealternative.net/2022/04/06/cose-lemmy/), uno dei progetti più interessanti del [fediverso](https://framatube.org/w/9dRFC6Ya11NCVeYKn8ZhiD?subtitle=it).\n\n#### Informazioni\nQuesto server di **Lemmy** è gestito da [Poliverso](https://poliverso.org/) e [Le Alternative](https://www.lealternative.net/).\n\n#### Regole\n\n🇮🇹 In questo server è necessario scrivere principalmente utilizzando la lingua italiana.\n\n🛎 Attualmente prima di poter aprire una comunità è necessaria l'approvazione degli amministratori [@poliverso@feddit.it](https://feddit.it/u/poliverso) o [@skariko@feddit.it](https://feddit.it/u/skariko). Potete aprire una richiesta [cliccando qui](https://feddit.it/c/main), spiegando di cosa parlerà la comunità e come sarà gestita.\n\n📜 Ogni comunità sceglierà in autonomia le sue regole, i suoi moderatori e le sue esigenze. Non sarà tuttavia possibile aprire comunità con contenuti pornografici, illegali o con discriminazioni razziali o di genere.\n\n🚯 Le comunità politiche dovranno accettare e sottoscrivere una clausola sull'antifascismo.\n\n⛔️ Lo spam, i bot e i messaggi ripetuti o molesti saranno rimossi a prescindere dalle regole della comunità.\n\n♻️ Le comunità che non riusciranno ad auto-moderarsi verranno richiamate dagli admin e se non sarà possibile trovare una soluzione verranno eliminate.\n\n#### Come si mantiene Feddit?\n\nÈ un progetto indipendente e senza pubblicità, se volete potete aiutare con una [donazione](https://liberapay.com/Feddit-it) la gestione di questo server.", + published: "2022-05-05T07:40:35.127186", + updated: "2022-05-14T11:37:01.482839", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://feddit.it/pictrs/image/64fddac4-ef09-44e4-ba91-280ece81605a.png", + banner: null, + description: "L'alternativa italiana a Reddit", + community_creation_admin_only: true, + require_email_verification: false, + require_application: true, + application_question: "Perché vuoi registrarti a Fedd**it**?", + private_instance: false, + actor_id: "https://feddit.it/", + last_refreshed_at: "2022-05-15T00:38:22.063719", + inbox_url: "https://feddit.it/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAodm1GHFIQKOFg09JHD2g\nViXV1UOrL9h+eGWy5xkgPoIlO32WRfSU/LA6RNsVMFS4+C0PxhJeRxzCkSMRutOK\nsaRIqSyiI8csCY0Sy5RWm1+AZLVSlLXxoElzGBC2v+EwFJvMmgdDcdsVtHUcKbVy\n2qYOPDj7tk/YrIk8V5NTblbEN8dg0loMMKi2rvp5S0C27sgL5mcTxpPIjarWCt9s\n9iqGeKWwnWFn9JLBjn9eJHBRPoK1Jq27Wh5xHjsw48JSukkmOMYtQmXVc3nTnMSr\nzHYuGXZuMCu81L8yaC61sLxnG5oRv/9IJqJP6Qp2dWVOQhorCkHtKS8eYnfDKBCS\nAQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 17, + posts: 27, + comments: 18, + communities: 8, + users_active_day: 3, + users_active_week: 9, + users_active_month: 9, + users_active_half_year: 9, + }, + }, + admins: [ + { + person: { + id: 2, + name: "skariko", + display_name: null, + avatar: + "https://feddit.it/pictrs/image/2dea2df0-6019-4123-8322-af8072b863d3.jpeg", + banned: false, + published: "2022-05-05T07:32:10.201268", + updated: "2022-05-10T10:28:37.381607", + actor_id: "https://feddit.it/u/skariko", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://feddit.it/u/skariko/inbox", + shared_inbox_url: "https://feddit.it/inbox", + matrix_user_id: "@skariko:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 8, + post_score: 12, + comment_count: 1, + comment_score: 1, + }, + }, + { + person: { + id: 3, + name: "poliverso", + display_name: null, + avatar: + "https://feddit.it/pictrs/image/c3400417-90bd-44a7-9cc1-7371115ad112.png", + banned: false, + published: "2022-05-05T08:01:16.635627", + updated: "2022-05-13T06:19:19.896026", + actor_id: "https://feddit.it/u/poliverso", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://feddit.it/u/poliverso/inbox", + shared_inbox_url: "https://feddit.it/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 5, + post_score: 6, + comment_count: 2, + comment_score: 2, + }, + }, + ], + online: 3, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "beehaw.org", + "buckeyestate.social", + "community.nicfab.it", + "community.xmpp.net", + "ds9.lemmy.ml", + "enterprise.lemmy.ml", + "fapsi.be", + "feddit.de", + "feddit.it", + "federated.community", + "fuckreddit.tryp.digital", + "lemmy.ca", + "lemmy.cat", + "lemmy.ml", + "lemmygrad.ml", + "libranet.de", + "peertube.openstreetmap.fr", + "peertube.uno", + "poliverso.org", + "social.gl-como.it", + "social.lealternative.net", + ], + allowed: null, + blocked: null, + }, + }, }, { domain: "midwest.social", - name: "midwest.social", - description: - "A lemmy server for, but not limited to, leftists in the Midwest USA", - version: "0.16.3", - icon: "https://midwest.social/pictrs/image/Rbal22EuF8.png", - online_users: 1, - total_users: 122, - users_active_halfyear: 28, - users_active_month: 8, - open_registrations: true, - linked_instances_count: 13, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "midwest.social", + sidebar: + "# Rules\n\n1. No porn.\n2. No bigotry, hate speech.\n3. No ads / spamming.\n4. No conspiracies / QAnon / antivaxx sentiment\n\nPlease either use the web app or the Jerboa mobile app. Lemmur does not work very well at the moment.", + published: "2021-08-04T23:06:11.478061", + updated: "2022-05-12T01:25:15.775367", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://midwest.social/pictrs/image/Rbal22EuF8.png", + banner: "https://midwest.social/pictrs/image/mx5qNVtBHi.jpg", + description: + "A lemmy server for, but not limited to, leftists in the Midwest USA", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: + "Enter an email address above if you want to be notified when you are approved.\n\nWhy do you want to join this instance?\n\nWhy did you choose the username you did?\n", + private_instance: false, + actor_id: "https://midwest.social/", + last_refreshed_at: "2022-05-12T01:17:04.175958", + inbox_url: "https://midwest.social/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvmiuiRSt+vugPdIACwPz\nhjNq0sr/8O/WqOqa6Z7+y5Gj/kkSiPp0VkEQatzRcgydn9VLiqq3eqxx5uQT+v4n\nNbHdf2vez62WyxFw7TzTSPgyHtqpJ7/BC3mXXH8jHxLw+chNfboOB3oEaBPvqSi9\nqILe0apMceXFGFUeeCFiOeIDSifrpB5sy/2S0YsBy0woaFZmzL6M3gpSCTfqaGNH\n8xbnbNlVVlvSDf8pVaspFSHfy0HRmcfNQ/lru92gKzBSzx5rTNLQwbdmwHWUzO5T\nsc54AtBrhEK52VnQVVazuQmtW8VHKb+sCy7rsRsyj363/U5tkA+KDBXp+sSOMkyb\nvQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 122, + posts: 569, + comments: 527, + communities: 11, + users_active_day: 3, + users_active_week: 7, + users_active_month: 8, + users_active_half_year: 28, + }, + }, + admins: [ + { + person: { + id: 2, + name: "seahorse", + display_name: null, + avatar: + "https://midwest.social/pictrs/image/abc683d8-b47e-47d2-a12c-52cb48acb938.jpeg", + banned: false, + published: "2021-08-04T23:06:11.078538", + updated: "2022-03-18T23:03:49.458375", + actor_id: "https://midwest.social/u/seahorse", + bio: "I run the midwest.social instance. I'm also active on lemmy.ml. [@seahorse@lemmy.ml](https://lemmy.ml/u/seahorse) ", + local: true, + banner: null, + deleted: false, + inbox_url: "https://midwest.social/u/seahorse/inbox", + shared_inbox_url: "https://midwest.social/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 139, + post_score: 1174, + comment_count: 161, + comment_score: 696, + }, + }, + { + person: { + id: 11771, + name: "FaygoOfficial", + display_name: null, + avatar: null, + banned: false, + published: "2021-11-14T13:07:12.385636", + updated: "2022-05-01T13:06:40.233517", + actor_id: "https://midwest.social/u/FaygoOfficial", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://midwest.social/u/FaygoOfficial/inbox", + shared_inbox_url: "https://midwest.social/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1498, + person_id: 11771, + post_count: 227, + post_score: 687, + comment_count: 131, + comment_score: 454, + }, + }, + { + person: { + id: 45303, + name: "Redpandalovely", + display_name: "Redpandalovely ", + avatar: + "https://midwest.social/pictrs/image/58abad8a-7cdc-4537-b085-2b231dca44c3.jpeg", + banned: false, + published: "2022-02-09T19:53:42.926425", + updated: "2022-04-16T01:14:36.894346", + actor_id: "https://midwest.social/u/Redpandalovely", + bio: "OHIO", + local: true, + banner: null, + deleted: false, + inbox_url: "https://midwest.social/u/Redpandalovely/inbox", + shared_inbox_url: "https://midwest.social/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 3346, + person_id: 45303, + post_count: 73, + post_score: 578, + comment_count: 83, + comment_score: 276, + }, + }, + ], + online: 2, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "baraza.africa", + "beehaw.org", + "buckeyestate.social", + "community.nicfab.it", + "gtio.io", + "lemmy.ca", + "lemmy.lohn.in", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmygrad.ml", + "mander.xyz", + "slrpnk.net", + "sopuli.xyz", + ], + allowed: null, + blocked: [ + "wolfballs.com", + "narwhal.city", + "a.tide.tk", + "lotide.fbxl.net", + "dev.narwhal.city", + "exploding-heads.com", + "collapse.cat", + "elgiebety.pl", + ], + }, + }, }, { - domain: "gtio.io", - name: "Go Talk It Out", - description: "Politically-neutral forum for serious debate", - version: "0.16.3", - icon: "https://gtio.io/pictrs/image/32f393ce-2895-462c-8f9b-25c31d713a05.png", - online_users: 2, - total_users: 14, - users_active_halfyear: 8, - users_active_month: 7, - open_registrations: true, - linked_instances_count: 3, - require_application: true, + domain: "lemmy.eus", + site_info: { + site_view: { + site: { + id: 1, + name: "Lemmy.eus", + sidebar: + "**Ongi etorri** euskarazko web-foro libreetara [kaixo.lemmy.eus](https://kaixo.lemmy.eus/)!\n\nNetiketa arauak:\n1. Adeitsua izan. Jendea ongietorria sentitzea, denon onurarako da.\n2. Ez inor iraindu edo jazarri. Eduki eta jarrera intoleranteak debekatuta daude.\n3. Publizitaterik ez.\n4. Euskaraz aritu.\n5. Ezagutu [arau guztiak](https://kaixo.lemmy.eus/edukiak/netiketa/).\n\nKomunitate osoaren txata (biak lotuta daude):\n- Matrix: [#lemmyeus_komunitatea](https://matrix.to/#/#lemmyeus_komunitatea:sindominio.net)\n- Telegram: [@lemmyeus_komunitatea](https://t.me/lemmyeus_komunitatea)\n\nHarremanetan jartzeko: [info@lemmy.eus](mailto:info@lemmy.eus)", + published: "2020-11-28T17:58:52.225777", + updated: "2022-03-21T18:57:43.858852", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.eus/pictrs/image/R55fPm9RfM.png", + banner: null, + description: + "Euskarazko lehen web-foro irekiak. Software librea, fedibertsoa, euskalmemeak, literatura... (Basque language)", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: + "Instantzia honetan izen ematea mugatu behar izan dugu Lemmy sarean azkenaldian agertu diren zabor bidaltzaileei eta trollei aurre egiteko. Mesedez, azaldu *zergatik nahi duzun Lemmy.eus-en izena eman*. Eskariak ahalik azkarren artatzen saiatuko gara. Barkatu eragozpenak.", + private_instance: false, + actor_id: "https://lemmy.eus/", + last_refreshed_at: "2022-04-06T15:08:49.355348", + inbox_url: "https://lemmy.eus/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtw8r9JvH5IW08ueYFeng\n93Brv11/5ClS9j0RiMGJtARmJPCZy2rqMWqR7s/YOHexqhafp0cmNsdYuVpZVn04\nOXtTYPeenOdziPC3OzXRNQsy+MUmBG4L448w60LfItg3y7msUSnCM8X9yd0oii+U\nXvm4WuJrphl3ue/qo4O299fPy2o9NxK7hhYhGybgURT4sB9x8MxrmBpAvejkOdyy\n3zA3pOyK6K5w1ZWmcX9qmBxLDmj/bcD95lOhvdjNszfeYr+cLrHtkvhBeib2HGdo\n4IIjPn2QNe1Pz28oO1v60KQZTKUCtroQSBoZAc90aNTClAxmBEmuX9O0BjH+g7YL\nvQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 489, + posts: 739, + comments: 1245, + communities: 60, + users_active_day: 1, + users_active_week: 3, + users_active_month: 8, + users_active_half_year: 134, + }, + }, + admins: [ + { + person: { + id: 2, + name: "lemmy", + display_name: null, + avatar: "https://lemmy.eus/pictrs/image/cAMjXTlcAm.png", + banned: false, + published: "2020-11-28T17:58:52.131767", + updated: "2020-12-16T20:33:27.511569", + actor_id: "https://lemmy.eus/u/lemmy", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.eus/u/lemmy/inbox", + shared_inbox_url: "https://lemmy.eus/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 2, + post_score: 20, + comment_count: 1, + comment_score: 1, + }, + }, + { + person: { + id: 3, + name: "mikelgs", + display_name: null, + avatar: "https://lemmy.eus/pictrs/image/7LzDW8SgSk.jpg", + banned: false, + published: "2020-11-28T21:15:27.457232", + updated: "2021-12-16T14:56:36.968964", + actor_id: "https://lemmy.eus/u/mikelgs", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.eus/u/mikelgs/inbox", + shared_inbox_url: "https://lemmy.eus/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 9, + person_id: 3, + post_count: 58, + post_score: 193, + comment_count: 146, + comment_score: 189, + }, + }, + { + person: { + id: 4, + name: "desertorea", + display_name: null, + avatar: "https://lemmy.eus/pictrs/image/LVvCZQkbnv.jpg", + banned: false, + published: "2020-11-28T21:19:00.916209", + updated: "2020-12-04T10:55:56.785643", + actor_id: "https://lemmy.eus/u/desertorea", + bio: "📢 Aktibista eta 💻 blogari ahobizia 365 egun.\n\n🐧 Software librearen, 🧰 burujabetza teknologikoaren, 🛡️ pribatutasunaren, ✊ eskubide sozialen eta 💬 euskararen aldeko ekintzailea.\n\n🚽 Desprogramatzeko prest.", + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.eus/u/desertorea/inbox", + shared_inbox_url: "https://lemmy.eus/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 34, + person_id: 4, + post_count: 17, + post_score: 70, + comment_count: 21, + comment_score: 23, + }, + }, + { + person: { + id: 5, + name: "Txopi", + display_name: null, + avatar: "https://lemmy.eus/pictrs/image/7CsUsCbZoT.png", + banned: false, + published: "2020-11-28T22:23:56.476491", + updated: "2021-01-12T14:50:38.972241", + actor_id: "https://lemmy.eus/u/Txopi", + bio: "https://ikusimakusi.eus/", + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.eus/u/Txopi/inbox", + shared_inbox_url: "https://lemmy.eus/inbox", + matrix_user_id: "@txopi@sindominio.net", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 7, + person_id: 5, + post_count: 77, + post_score: 275, + comment_count: 91, + comment_score: 145, + }, + }, + { + person: { + id: 6, + name: "Porru", + display_name: null, + avatar: "https://lemmy.eus/pictrs/image/1kYWKFwwnv.jpg", + banned: false, + published: "2020-11-29T12:45:39.497225", + updated: "2021-10-17T11:42:38.860935", + actor_id: "https://lemmy.eus/u/Porru", + bio: "GNU/Linux erabiltzailea, musikaria, soinu teknikaria, itzultzailea, esperantista, antiespezista, anarkista ta holako etiketa gehio", + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.eus/u/Porru/inbox", + shared_inbox_url: "https://lemmy.eus/inbox", + matrix_user_id: "@porrumentzio:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 6, + person_id: 6, + post_count: 70, + post_score: 244, + comment_count: 117, + comment_score: 166, + }, + }, + { + person: { + id: 7, + name: "aldatsa", + display_name: null, + avatar: "https://lemmy.eus/pictrs/image/dTUkgNwac4.jpg", + banned: false, + published: "2020-11-29T17:45:47.911746", + updated: "2021-11-09T22:33:03.615335", + actor_id: "https://lemmy.eus/u/aldatsa", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.eus/u/aldatsa/inbox", + shared_inbox_url: "https://lemmy.eus/inbox", + matrix_user_id: "@aldatsa:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 5, + person_id: 7, + post_count: 86, + post_score: 267, + comment_count: 88, + comment_score: 136, + }, + }, + ], + online: 6, + version: "0.16.2", + my_user: null, + federated_instances: { + linked: [ + "anonsys.net", + "collapse.cat", + "f.freinetz.ch", + "forum.nobigtech.es", + "forum.nogafam.es", + "lemmy.eus", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmy.schuerz.at", + "mander.xyz", + "sopuli.xyz", + ], + allowed: null, + blocked: null, + }, + }, }, { domain: "federated.community", - name: "Federated.community", - description: "A public general-purpose Lemmy instance.", - version: "0.16.3", - icon: "https://federated.community/pictrs/image/50c9c066-d8c0-47a4-8860-c68b040f1a67.png", - online_users: 0, - total_users: 7, - users_active_halfyear: 7, - users_active_month: 7, - open_registrations: true, - linked_instances_count: 2, - require_application: false, + site_info: { + site_view: { + site: { + id: 1, + name: "Federated.community", + sidebar: null, + published: "2022-05-06T20:59:20.100868", + updated: "2022-05-07T15:50:25.561948", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://federated.community/pictrs/image/50c9c066-d8c0-47a4-8860-c68b040f1a67.png", + banner: + "https://federated.community/pictrs/image/5805879e-0adb-4667-bac1-eafe3b5ab774.png", + description: "A public general-purpose Lemmy instance.", + community_creation_admin_only: false, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://federated.community/", + last_refreshed_at: "2022-05-07T15:21:32.503250", + inbox_url: "https://federated.community/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy+k2CTB6GptGMiR84iLq\ng0xfGdWoaa//6ocIAPL14hBE5498BVv0FRnOsvOpWcq5ZLf4ax4LcvhZcjA77IrN\nup1SyUR1SbORbp6/jbL6rgEtnbXZDKNZOD4bEeO+H7UDNdrs2VOi3KjZ3eb4X3xg\nd8yj6S6zkpN/c+WiSgNpxMy4QASL2bARbu+hZ3Q3wD9KyFKQnDUj0/EloAMfvKCS\nmiTWwM/NYR4PEFxUINuvTliVtex9nTZujDR2ZQuh+2nyjpgYr/Ww5FqmxE0PIoKJ\n1NPM5IbEwZcoqsgPJAAWM8vagV3gaCe3w6V8pU2B7nmgQudP2vdSHJ4Sa3eNPkH0\n3QIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "cyborg", + }, + counts: { + id: 1, + site_id: 1, + users: 7, + posts: 10, + comments: 13, + communities: 5, + users_active_day: 2, + users_active_week: 7, + users_active_month: 7, + users_active_half_year: 7, + }, + }, + admins: [ + { + person: { + id: 2, + name: "admin", + display_name: null, + avatar: null, + banned: false, + published: "2022-05-06T20:57:34.054690", + updated: null, + actor_id: "https://federated.community/u/admin", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://federated.community/u/admin/inbox", + shared_inbox_url: "https://federated.community/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1, + post_score: 2, + comment_count: 0, + comment_score: 0, + }, + }, + { + person: { + id: 3, + name: "gme", + display_name: "George E.", + avatar: + "https://federated.community/pictrs/image/31115de3-48e5-4f8c-be1b-08ce4216f3de.jpeg", + banned: false, + published: "2022-05-06T21:13:53.610089", + updated: "2022-05-07T20:10:26.660820", + actor_id: "https://federated.community/u/gme", + bio: "Just a geek trying to make a positive difference in this world.\n\n**Pleroma:** [@gme@bofh.social](https://bofh.social/@gme)\\\n**Jabber/XMPP:** [gme@bofh.chat](xmpp://gme@bofh.chat)\n\n", + local: true, + banner: + "https://federated.community/pictrs/image/55e54d19-2ed7-4f96-b71a-96a86e9a2f8a.jpeg", + deleted: false, + inbox_url: "https://federated.community/u/gme/inbox", + shared_inbox_url: "https://federated.community/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 3, + post_score: 5, + comment_count: 5, + comment_score: 24, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["federated.community", "lemmy.ml"], + allowed: null, + blocked: null, + }, + }, + }, + { + domain: "gtio.io", + site_info: { + site_view: { + site: { + id: 1, + name: "Go Talk It Out", + sidebar: + "##### Rules\n1. be civil.\n2. be rational.\n3. don't troll other instances.\n\nPost titles should pose a debate topic. \nCite sources and avoid using [fallacies](https://en.wikipedia.org/wiki/List_of_fallacies#Formal_fallacies). \nReport violations of the rules! \n\n[icon credit](https://www.flaticon.com/free-icon/discussion_1935079)", + published: "2022-04-02T20:46:40.123971", + updated: "2022-04-19T15:28:43.267595", + enable_downvotes: false, + open_registration: true, + enable_nsfw: true, + icon: "https://gtio.io/pictrs/image/32f393ce-2895-462c-8f9b-25c31d713a05.png", + banner: null, + description: "Politically-neutral forum for serious debate", + community_creation_admin_only: true, + require_email_verification: false, + require_application: true, + application_question: + 'You don\'t need an account to participate if you have a lemmy account elsewhere! \n\n### Site Rules\n1. be civil.\n2. be rational.\n3. follow the rules of other instances when interacting there or you will be banned without warning!\n\nWhat debate topics are you interested in? \nWhat other public social media / fediverse accounts do you have? \n(you will not receive an "accepted" email so check back soon)', + private_instance: false, + actor_id: "https://gtio.io/", + last_refreshed_at: "2022-04-12T18:02:55.004397", + inbox_url: "https://gtio.io/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxStxaGkzG0hGmCVg2ScQ\nyd3Wpe0G0BP0egCtCehzTtdFSAvUggVTYemlOGRVLAhDgZPH/U9PTBLe5NOkuRg0\nczgFOLarQ1cC+3gUhGLwmmgWTConmvQsWSIUhVWIJhTdsehXdB8E5NiuLQvAR899\nZHENPiolgBFSxyLSZEk+EJ1uyj00ZlOD+RUwOoo5ng5HGGni0sWYKVgBykXXsnHu\ntCT716qaYcTA+ezSwLDGuKwKLh05S0d01PuGifHLE57862+0ZCETxhQ04Ozx8mVF\nT7Ct/9sQQbQwYIRlzeGxeHxaDejYDWZHd1Knc6k1lT41WGiAvh7ZvzDJFJIUIQ13\nkQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly", + }, + counts: { + id: 1, + site_id: 1, + users: 14, + posts: 13, + comments: 86, + communities: 6, + users_active_day: 0, + users_active_week: 3, + users_active_month: 7, + users_active_half_year: 8, + }, + }, + admins: [ + { + person: { + id: 2, + name: "BigWilly", + display_name: null, + avatar: null, + banned: false, + published: "2022-04-02T20:46:39.730792", + updated: null, + actor_id: "https://gtio.io/u/BigWilly", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://gtio.io/u/BigWilly/inbox", + shared_inbox_url: "https://gtio.io/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1, + post_score: 1, + comment_count: 1, + comment_score: 2, + }, + }, + { + person: { + id: 3, + name: "thann", + display_name: null, + avatar: + "https://gtio.io/pictrs/image/8bbd90b3-eeea-4b53-8937-1385884eae40.jpeg", + banned: false, + published: "2022-04-02T20:49:15.082885", + updated: "2022-04-19T18:01:30.849849", + actor_id: "https://gtio.io/u/thann", + bio: "https://lemmy.ml/u/Thann", + local: true, + banner: null, + deleted: false, + inbox_url: "https://gtio.io/u/thann/inbox", + shared_inbox_url: "https://gtio.io/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 2, + post_score: 5, + comment_count: 34, + comment_score: 71, + }, + }, + ], + online: 3, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["beehaw.org", "gtio.io", "lemmy.ml"], + allowed: null, + blocked: null, + }, + }, }, { domain: "mander.xyz", - name: "Mander", - description: "An instance dedicated to nature and science.", - version: "0.16.3", - icon: "https://mander.xyz/pictrs/image/2fc86ef3-797e-4bcd-bcca-e75cdf0959f9.png", - online_users: 1, - total_users: 76, - users_active_halfyear: 28, - users_active_month: 7, - open_registrations: true, - linked_instances_count: 23, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "Mander", + sidebar: + "\n\nWe follow Lemmy's [code of conduct](https://join-lemmy.org/docs/en/code_of_conduct.html). \n\nPlease be respectful to each other. \n\nThe main focus of this instance is the natural sciences. \n\nAs a member of the fediverse, you can create your account here and interact with any other federated community!\n", + published: "2021-12-19T00:53:57.527346", + updated: "2022-03-09T07:44:10.639680", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://mander.xyz/pictrs/image/2fc86ef3-797e-4bcd-bcca-e75cdf0959f9.png", + banner: + "https://mander.xyz/pictrs/image/288152cb-69ea-48dc-9b44-7135291458ee.png", + description: "An instance dedicated to nature and science.", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: + "To combat troll brigading and the spamming of ads, the registration to this instance is temporarily restricted. You can leave a short message stating why you would like to join this instance and I will accept your application as soon as possible. \n\nAt the moment, e-mail is not configured properly. The only way to check whether your account has been accepted is to try to log-in later. ", + private_instance: false, + actor_id: "https://mander.xyz/", + last_refreshed_at: "2022-04-08T22:46:22.199879", + inbox_url: "https://mander.xyz/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6sGwDA0k0dWzh1Dx78rV\njVjrWUHJlvn6ukK9ERgRYMRFcg8Tt8WVplTDygmcKdnpukX1vYzHWuXOpISiegPe\nc9gWvJf52dapYClq/dsRCEzPbKpQoNNL1w4AibWcIm1frsi5j931HcEthgAo5pDE\nvXEQL3tkKJyrTvYVaYvoISFrDcS0E0WNeNoDaiGOql67NngzYUDiCb6WJ7GaIv3M\n8kAeg9tFI0YPBk1/+GGLroO2+O5Js/EhA08ur9UvflIJbrIRo2SntJx04twcCsxQ\n9n+xYIR4EqOQW9oJ/1Ibg45Ls9EpaYFNmDNc6F87s9zwVBuXPvA7laOC4ZuWhpch\nbwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "zenburn", + }, + counts: { + id: 1, + site_id: 1, + users: 76, + posts: 148, + comments: 401, + communities: 31, + users_active_day: 2, + users_active_week: 6, + users_active_month: 7, + users_active_half_year: 28, + }, + }, + admins: [ + { + person: { + id: 2, + name: "Sal", + display_name: "Salamander", + avatar: + "https://mander.xyz/pictrs/image/ab03025b-9319-4be8-9a59-17d8ef766a60.png", + banned: false, + published: "2021-12-19T00:53:57.196566", + updated: "2022-04-09T09:21:13.402518", + actor_id: "https://mander.xyz/u/Sal", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://mander.xyz/u/Sal/inbox", + shared_inbox_url: "https://mander.xyz/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 104, + post_score: 350, + comment_count: 172, + comment_score: 545, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "baraza.africa", + "beehaw.org", + "collapse.cat", + "community.xmpp.net", + "enterprise.lemmy.ml", + "eope.xyz", + "fapsi.be", + "feddit.de", + "forum.purplerabbit.xyz", + "heapoverflow.ml", + "lemmy.161.social", + "lemmy.ca", + "lemmy.fediverse.town", + "lemmy.glasgow.social", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmygrad.ml", + "mander.xyz", + "midwest.social", + "slrpnk.net", + "sopuli.xyz", + "talk.thomcat.rocks", + "wolfballs.com", + ], + allowed: null, + blocked: null, + }, + }, }, { domain: "lemmy.perthchat.org", - name: "PerthChat", - description: "The Perth Lemmy Instance", - version: "0.16.3", - icon: "https://lemmy.perthchat.org/pictrs/image/d3728083-9d5f-4311-8c9b-d9dda43f7413.png", - online_users: 0, - total_users: 37, - users_active_halfyear: 26, - users_active_month: 6, - open_registrations: true, - linked_instances_count: 9, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "PerthChat", + sidebar: + "Perth's largest public Matrix + Lemmy service!\n\nCheck out perthchat.org, we have discord and telegram bridged too!\n\nAnyone can sign up, not only Australians.", + published: "2022-03-28T21:18:34.796771", + updated: "2022-04-15T04:58:39.625669", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.perthchat.org/pictrs/image/d3728083-9d5f-4311-8c9b-d9dda43f7413.png", + banner: + "https://lemmy.perthchat.org/pictrs/image/79577da9-f558-4c9b-aef9-d2f0818e0a2f.png", + description: "The Perth Lemmy Instance", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: + "To combat abuse, we have restricted user registration on this instance. Please answering the following:\n\n Why you would like to join lemmy?\n What communities are you planning to to participate in?\n How or why you chose the username you did?\n\nand/or have another user vouch for you by having a user \nDM [@camelia@lemmy.perthchat.org](https://lemmy.perthchat.org/u/camelia) or [@michael@lemmy.perthchat.org](https://lemmy.perthchat.org/u/michael) and state your desired username.\n\nWe will review your application ASAP.\n\nYou can contact us on Matrix for a faster reply:\nhttps://matrix.to/#/@michael:perthchat.org\nhttps://matrix.to/#/@camelia:perthchat.org", + private_instance: false, + actor_id: "https://lemmy.perthchat.org/", + last_refreshed_at: "2022-04-08T15:13:41.146342", + inbox_url: "https://lemmy.perthchat.org/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwcuBLybcELYlwWZKkQ1/\nwrBS72C9xi88Hh/3TvvHXg1JxxCZCUc5nDxWUbxJ9YgTx+g0jFdc7lXAiqBx04HE\ng+8fYaMjm3OzUDPmtHRgBvUH1HnvNfPtC3AGe9gB7cMyOdHv09DwyKOUhCu1GB4T\nU6kZD19sEBvsi/Dq2RNUY7JmTqM3PMd3/4M2fiwEgQOL8wWR8Gn+epGuN3GGw02V\nynx/YM7JmZEzHkMLFVYCaDxoMduSmaDBB418W5lXrsHk8WxWMOYowNPJvtOT2BuW\n+FlpkjPFNEHvcgMDGsQMc6PVokYcC+I3G+t+Ka9BS92od7UcPc1pFTp4DkaXDqhD\nzwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 37, + posts: 217, + comments: 242, + communities: 25, + users_active_day: 0, + users_active_week: 3, + users_active_month: 6, + users_active_half_year: 26, + }, + }, + admins: [ + { + person: { + id: 2, + name: "camelia", + display_name: null, + avatar: + "https://lemmy.perthchat.org/pictrs/image/07c1b231-bdd0-4263-8d19-917a96968c32.jpeg", + banned: false, + published: "2022-03-28T21:18:13.230566", + updated: "2022-03-29T21:11:31.813076", + actor_id: "https://lemmy.perthchat.org/u/camelia", + bio: "Mods are sleep, upload cats", + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.perthchat.org/u/camelia/inbox", + shared_inbox_url: "https://lemmy.perthchat.org/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 21, + post_score: 97, + comment_count: 21, + comment_score: 34, + }, + }, + { + person: { + id: 3, + name: "michael", + display_name: "Michael", + avatar: + "https://lemmy.perthchat.org/pictrs/image/b6dedc01-fb4d-4e76-aa9d-54ecb6fc9997.jpeg", + banned: false, + published: "2022-03-29T05:19:10.149753", + updated: "2022-03-30T07:13:11.590318", + actor_id: "https://lemmy.perthchat.org/u/michael", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.perthchat.org/u/michael/inbox", + shared_inbox_url: "https://lemmy.perthchat.org/inbox", + matrix_user_id: "@michael:perthchat.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 1, + post_score: 1, + comment_count: 5, + comment_score: 6, + }, + }, + ], + online: 1, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "beehaw.org", + "exploding-heads.com", + "fapsi.be", + "lemmy.ca", + "lemmy.ml", + "lemmygrad.ml", + "libranet.de", + "mander.xyz", + "slrpnk.net", + ], + allowed: null, + blocked: [ + "legbeard.xyz", + "wolfballs.com", + "lemmy.services.coupou.fr", + "lemmy.glasgow.social", + "narwhal.city", + "lotide.fbxl.net", + "a.tide.tk", + "b.tide.tk", + "c.tide.tk", + "dev.narwhal.city", + ], + }, + }, }, { domain: "slrpnk.net", - name: "SLRPNK", - description: "where solarpunks organize for a better world!", - version: "0.16.3", - icon: "https://slrpnk.net/pictrs/image/9d582815-3984-4996-9b10-b18706bebac1.png", - online_users: 2, - total_users: 35, - users_active_halfyear: 20, - users_active_month: 6, - open_registrations: true, - linked_instances_count: 7, - require_application: true, - }, - { - domain: "baraza.africa", - name: "Baraza", - description: - "A space to share and discusss Africa-related content. Karibu.", - version: "0.16.3", - icon: "https://baraza.africa/pictrs/image/qFpb6BEV2c.png", - online_users: 0, - total_users: 366, - users_active_halfyear: 68, - users_active_month: 4, - open_registrations: true, - linked_instances_count: 16, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "SLRPNK", + sidebar: + "**Rules:**\n- **be constructive**: there is no need of another internet space full of competition, negativity, rage and so on;\n- **no bigotry**, including racism, sexism, ableism, homophobia or xenophobia;\n- **be empathic**: emphaty is more rebellious than a middle finger;\n- **no porn and no gore**: let's keep this place easy to manage;\n- **no ads / spamming / flooding**, we don't want to buy/consume your commodified ideas;\n- **occasional self-promotion** by active members is fine.\n\nFor any community related question or to just test some function: [!meta@slrpnk.net](https://slrpnk.net/c/meta) \n\n*P.S. every generalistic community like ''art'' and ''italia'' has to be intended as ''solarpunk art'' and ''solarpunk italia'' and so on :)*", + published: "2022-03-22T20:03:46.471272", + updated: "2022-04-09T19:23:29.584570", + enable_downvotes: false, + open_registration: true, + enable_nsfw: false, + icon: "https://slrpnk.net/pictrs/image/9d582815-3984-4996-9b10-b18706bebac1.png", + banner: null, + description: "where solarpunks organize for a better world!", + community_creation_admin_only: true, + require_email_verification: false, + require_application: true, + application_question: + "To fight brigading (yes, we've already got some trolls lol), we’ve added this little questionnaire for user registration:\n- why would you like to join slrpnk.net ?\n- which communities (subs) would you most like to partecipate in?", + private_instance: false, + actor_id: "https://slrpnk.net/", + last_refreshed_at: "2022-04-08T15:12:20.827965", + inbox_url: "https://slrpnk.net/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqTZphnIC3fYOLNee7WXv\nC5p4HZPcWUQgrUgD/yF0IqamoqooZwkJ4sFH58o7chOyIpmpmfUJeUoMksOddtfl\nRLqLLguRb4NVNr2K8qQuvcIx8TD6pMG10JdVOvobPVVLMfDfmsLzwbgbE6WUWlK5\ngkS8X0gMKA0c1/r9JOERSWOUCpzMaUqNhCWKfS35OcdaJgpt9q/NnLZgE5jUl24N\nBCoVHpOCGDY6PBmXXJvpBgKXGWs6Xh8QM4yZSo0ww+PpR7F8dEb4W7dWti8NSk/6\nwIFmLQqRgBTC7psAqnZQ5fRPt241cIXZ2Rt/OeVVS3GLOOXwqRjdtvJKC7H7y7KS\nHwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 35, + posts: 71, + comments: 64, + communities: 21, + users_active_day: 1, + users_active_week: 3, + users_active_month: 6, + users_active_half_year: 20, + }, + }, + admins: [ + { + person: { + id: 2, + name: "ex_06", + display_name: null, + avatar: + "https://slrpnk.net/pictrs/image/98137211-457a-4062-85d4-f68c68086382.jpeg", + banned: false, + published: "2022-03-22T19:56:56.483839", + updated: "2022-03-31T19:45:24.279125", + actor_id: "https://slrpnk.net/u/ex_06", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://slrpnk.net/u/ex_06/inbox", + shared_inbox_url: "https://slrpnk.net/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 42, + post_score: 122, + comment_count: 36, + comment_score: 66, + }, + }, + ], + online: 3, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "feddit.it", + "heapoverflow.ml", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmygrad.ml", + "midwest.social", + "slrpnk.net", + ], + allowed: null, + blocked: null, + }, + }, }, { domain: "forum.nobigtech.es", - name: "Foro de NoBIGTech", - description: "Foro de NoBIGTech", - version: "0.16.3", - icon: "https://forum.nobigtech.es/pictrs/image/atwGqrgiHu.png", - online_users: 0, - total_users: 9, - users_active_halfyear: 5, - users_active_month: 4, - open_registrations: true, - linked_instances_count: 3, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "Foro de NoBIGTech", + sidebar: + "Foro de debate, ayuda y temas generales sobre soberanía y privacidad digital, y los servicios de nobigtech.es\n\nCódigo de conducta: https://www.nobigtech.es/terms/", + published: "2021-11-17T21:32:43.387256", + updated: "2022-04-23T21:46:32.405511", + enable_downvotes: true, + open_registration: true, + enable_nsfw: false, + icon: "https://forum.nobigtech.es/pictrs/image/atwGqrgiHu.png", + banner: null, + description: "Foro de NoBIGTech", + community_creation_admin_only: true, + require_email_verification: false, + require_application: true, + application_question: + "Especifique la razón por la que desea unirse a este foro de agregadores de enlaces en el Fediverso (Lemmy)", + private_instance: false, + actor_id: "https://forum.nobigtech.es/", + last_refreshed_at: "2022-05-16T04:00:10.543788", + inbox_url: "https://forum.nobigtech.es/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvLxXyUS1NVS2y+q0t2Im\n6uh5uaFzl8ZMIwmsdsz6dEF+SAz0cw8qjfqlzzrKk7zFNikRadP3Q7gxn6v9OV2K\nWau1zCubvD8I5CFKVc7auFwNLlrQfdj1XxsWcI/2ZZ7V6FL7goZFfvTF/jPJlqhX\nz64bMe9VBn5CiBRwkhv41Q9gS9PbJH9napUXWW5yOmKKwPN7vWwFY7frZ2lxMidn\nV6BHWtacgeE5bqIKABgfB/I6jdhkVoyukaNFTFFSLrFM3DCYPcI/5OMDSfI04hTD\naDJ4roeFRhMP4LylNnD8RlgHZk5zsLrYq4E4O5C/giQE2aqtMUx6qOoAOonVzCi3\nHQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 9, + posts: 92, + comments: 16, + communities: 1, + users_active_day: 0, + users_active_week: 0, + users_active_month: 4, + users_active_half_year: 5, + }, + }, + admins: [ + { + person: { + id: 34, + name: "admin", + display_name: "NoBIGTech", + avatar: + "https://forum.nobigtech.es/pictrs/image/I4W6nsyJN5.png", + banned: false, + published: "2021-11-17T21:31:15.400806", + updated: "2021-11-17T21:36:13.210670", + actor_id: "https://forum.nobigtech.es/u/admin", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://forum.nobigtech.es/u/admin/inbox", + shared_inbox_url: "https://forum.nobigtech.es/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 34, + post_count: 2, + post_score: 2, + comment_count: 7, + comment_score: 10, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["forum.nobigtech.es", "lemmy.eus", "lemmy.ml"], + allowed: null, + blocked: null, + }, + }, + }, + { + domain: "baraza.africa", + site_info: { + site_view: { + site: { + id: 1, + name: "Baraza", + sidebar: + "\nYou can view content as:\n- All - gathered from *all places* we are federating with.\n- Subscribed - gathered from the places *you* have subscribed to.\n- Local - gathered from *this instance* only. \n\nCommunities in this space can take whichever direction they wish, as long as they uphold these rules:\n\n1. No bigotry -- including racism, sexism, ableism, homophobia, or xenophobia. \n2. Be respectful -- this is a safe space where everyone and their ideas should be heard, just as they are also responsible for them.\n3. Be conscious -- while the community might answer some or all of your questions, low-effort questions that can be easily searched online are a waste of everyone's time. \n4. No pornography. \n5. No ads/spamming/soliciting or providing personal details like emails or phone numbers. \n\nThis instance is powered by Lemmy, the federated link-aggregator, and is connected to Mastodon, another fediverse implementation. \n\nFeel free to ask questions over at the [chat post](https://baraza.africa/post/137). ", + published: "2020-10-22T17:30:15.467638", + updated: "2022-04-08T13:04:52.822459", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://baraza.africa/pictrs/image/qFpb6BEV2c.png", + banner: null, + description: + "A space to share and discusss Africa-related content. Karibu.", + community_creation_admin_only: false, + require_email_verification: true, + require_application: true, + application_question: + "To stem the tide of spam accounts, we have started, as per v0.15.1, to request new sign ups to very briefly (20 words or less) mention why they want to join Baraza. This is not ideal, and we hope to keep improving the sign up process, and ideally remove this application step. If you do not get the email, check spam/junk folder for confirmation. \n\nSo, why do you want to join Baraza?", + private_instance: false, + actor_id: "https://baraza.africa/", + last_refreshed_at: "2022-05-04T11:50:33.694012", + inbox_url: "https://baraza.africa/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA76EVyZ3GOPEDlg8zz0Y8\n6cJjGE/kngDEne/j9Hm2lu9vLJ1hq/bIyTB79qvR8x/raAfKYYArCKm22JcNt3UT\nkJWEC+X6p3j0dju5+8q28B/H4LkMYFHLid1ug6QwD1HbsTCH5cvuPidacgxldoOI\n1mKA8nWWuK0wmQzcULu01ufHMtLNPNA4KmBo6pqKA2xPR8gXuRMGxRskBO9T+HY3\nru7ywGtLj2kjg0uFcE91SN7xXg3L+o96qlYHYgmWUGLNoT0C9q0sa1sdLF/EkFBb\nzT3OwdSN6EJFMvzf9IU5eFwrJhXR8siqD1z406rCkEV12DKSk0gDXNnDEax0Yarn\n6QIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly", + }, + counts: { + id: 1, + site_id: 1, + users: 366, + posts: 587, + comments: 310, + communities: 56, + users_active_day: 1, + users_active_week: 2, + users_active_month: 4, + users_active_half_year: 68, + }, + }, + admins: [ + { + person: { + id: 2, + name: "publictech", + display_name: "mtumishi", + avatar: "https://baraza.africa/pictrs/image/6CBMMp1eQf.jpg", + banned: false, + published: "2020-10-22T17:27:38.224853", + updated: "2021-11-28T00:48:25.380091", + actor_id: "https://baraza.africa/u/publictech", + bio: "A centralized web ain't worth fighting for. ", + local: true, + banner: null, + deleted: false, + inbox_url: "https://baraza.africa/u/publictech/inbox", + shared_inbox_url: "https://baraza.africa/inbox", + matrix_user_id: "@karanja:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 52, + post_score: 153, + comment_count: 59, + comment_score: 180, + }, + }, + { + person: { + id: 3, + name: "mkulima", + display_name: null, + avatar: "https://baraza.africa/pictrs/image/CSx2IMrJwc.png", + banned: false, + published: "2020-10-29T06:05:47.225651", + updated: "2021-11-28T06:24:35.172536", + actor_id: "https://baraza.africa/u/mkulima", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://baraza.africa/u/mkulima/inbox", + shared_inbox_url: "https://baraza.africa/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 21, + post_score: 61, + comment_count: 11, + comment_score: 30, + }, + }, + { + person: { + id: 5, + name: "mwalimu", + display_name: "Mwalimu", + avatar: "https://baraza.africa/pictrs/image/jsbZZFflWm.png", + banned: false, + published: "2020-10-29T06:21:49.890287", + updated: "2022-03-11T20:21:07.504885", + actor_id: "https://baraza.africa/u/mwalimu", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://baraza.africa/u/mwalimu/inbox", + shared_inbox_url: "https://baraza.africa/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 3, + person_id: 5, + post_count: 199, + post_score: 595, + comment_count: 128, + comment_score: 368, + }, + }, + { + person: { + id: 20, + name: "mvuvi", + display_name: null, + avatar: "https://baraza.africa/pictrs/image/Gvo3xqYEJb.png", + banned: false, + published: "2020-11-23T16:33:55.126963", + updated: "2021-11-28T05:52:59.814313", + actor_id: "https://baraza.africa/u/mvuvi", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://baraza.africa/u/mvuvi/inbox", + shared_inbox_url: "https://baraza.africa/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 17, + person_id: 20, + post_count: 26, + post_score: 53, + comment_count: 19, + comment_score: 45, + }, + }, + ], + online: 1, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "Heapoverflow.ml", + "ds9.lemmy.ml", + "feddit.de", + "lemmy.161.social", + "lemmy.ca", + "lemmy.cat", + "lemmy.eus", + "lemmy.glasgow.social", + "lemmy.ml", + "lemmygrad.ml", + "mastodon.ar.al", + "mastodon.social", + "midwest.social", + "octodon.social", + "sasa.africa", + "voyager.lemmy.ml", + ], + allowed: [ + "lemmy.ml", + "lemmygrad.ml", + "lemmy.cat", + "lemmy.glasgow.social", + "lemmy.161.social", + "lemmy.eus", + "mastodon.ar.al", + "octodon.social", + "mastodon.social", + "Heapoverflow.ml", + "feddit.de", + "midwest.social", + "sasa.africa", + ], + blocked: [], + }, + }, }, { domain: "lemmy.pt", - name: "Lemmy Portugal 🇵🇹", - description: - "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", - version: "0.16.3", - icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", - online_users: 0, - total_users: 92, - users_active_halfyear: 18, - users_active_month: 3, - open_registrations: true, - linked_instances_count: 6, - require_application: true, - }, - { - domain: "lemmy.pt", - name: "Lemmy Portugal 🇵🇹", - description: - "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", - version: "0.16.3", - icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", - online_users: 0, - total_users: 92, - users_active_halfyear: 18, - users_active_month: 3, - open_registrations: true, - linked_instances_count: 6, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "Lemmy Portugal 🇵🇹", + sidebar: + '## Bem-vindo(a)!\n\nEsta é a [Lemmy Portugal](https://lemmy.pt), uma instância de [Lemmy](https://join-lemmy.org) direcionada a utilizadores e comunidades Portuguesas, ou de Língua Portuguesa. \n\n*Fazemos parte dos [Serviços Radicais](https://servicosradicais.tech)!*\n\n---\n\n#### Regras\n\nPara o bom funcionamento deste espaço, existem regras e um código de conduta que deve ser sempre seguido.\n\n1. **Respeita todos e mantém uma atitude acolhedora.** Isto implica mão recorrer a insultos, humilhações, ataques pessoais, etc. Sê tolerante.\n2. **Publicação ou ameaças de publicação de informações privadas ([*doxxing*](https://pt.wikipedia.org/wiki/Doxing), mensagens diretas, etc) é estritamente proibido.**\n3. **Usa linguagem percetível por todos e uma gramática correta.** Este espaço pretende ser inclusivo, e isso só é possível se todos formos capazes de comunicar bem.\n4. **Nada de NSFW.**\n5. **Qualquer conteúdo de teor traumático, perturbador ou que conte o enredo de algum filme, série ou jogo deve ser marcado como tal e escondido (*spoiler*).**\n6. **É inaceitável tentar passar por uma outra pessoa.**\n\nPor fim, usa senso comum.\n\nO incumprimento de qualquer uma destas regras resultará num aviso, porém, caso o problema persista, o utilizador será banido.\n\n> ℹ️ *Estas regras serão expandidas e um documento de código de conduta redigido, na comunidade [Regras](https://lemmy.pt/c/regras), quando o Lemmy suportar melhores controlos de moderação para comunidades.*\n\n---\n\n#### Registo de contas e criação de comunidades\n\nDevido ao aparecimento de [*trolls*](https://pt.wikipedia.org/wiki/Trol_(internet)) e de contas automáticas que poluem a rede com conteúdo indesejado, o registo de novas contas foi restringido, sendo agora necessário não só um endereço de correio eletrónico, como o preenchimento de uma pequena "candidatura" que terá que ser aprovada por um administrador antes da conta ser ativada.\n\nPelo mesmo motivo, a criação de comunidades está sujeita a uma restrição semelhante. Será necessário fazer uma publicação na comunidade [Meta](https://lemmy.pt/c/meta), com título e corpo adequados, para requisitar a criação de uma nova comunidade. \n\nPor fim, é igualmente possível requisitar a posição de moderador numa das comunidades originais ou numa que não possua nenhum moderador ativo.\nEm qualquer dos casos, haverá um processo de avaliação antes da promoção, por motivos de segurança.\n\nPara mais informações, deves ler a barra lateral da comunidade [Meta](https://lemmy.pt/c/meta).\n\n---\n\n#### Matrix\n\nExiste uma sala na rede Matrix dedicado a esta instância de Lemmy. Junta-te a [`#tuga-lemmy:matrix.org`](https://matrix.to/#/#tuga-lemmy:matrix.org) para participares na conversa!\n\nExistem também outras salas portuguesas que podes ver aderindo ao espaço [`#espacotuga:matrix.org`](https://matrix.to/#/#espacotuga:matrix.org)\n\n---\n\n#### Traduzir o Lemmy\n\nSendo apologistas do movimento de software livre e da ideia de redes federadas, temos contribuído para o projecto através da tradução para Português. Este processo é realizado através da instância de Weblate (uma ferramenta de tradução, também ela livre) do projecto Lemmy, e que pode ser econtrada em https://weblate.yerbamate.ml. \nQualquer sugestão de tradução é bem-vinda!\n\nDiscussão sobre a tradução do projecto pode ser feita na sala de Matrix acima referida, ou, alternativamente, numa outra sala sobre tradução em geral, em [`#tuga-traducao:matrix.org`](https://matrix.to/#/#tuga-traducao:matrix.org)\n\n--- \n\n#### Ajudar a correr esta instância\n\nDe momento, correr a instância é bastante barato, visto que se encontra num servidor onde estão alojadas outras pequenas coisas, custando no total ~5€ por mês. Não prevejo uma atualização de plano num futuro próximo, visto que o Lemmy é bastante leve.\nAinda assim, fica aqui a página de LiberaPay onde é possível fazer um donativo: https://liberapay.com/NadaRadical \n~~Deprecado: https://liberapay.com/lemmy.pt/~~\n\n> **Atenção!** ⚠️ \n> Ninguém se deve sentir no dever de doar o quer que seja. A página existe para a eventualidade de alguém poder e querer muito ajudar. Por agora, consigo cobrir os custos do servidor sem problema, portanto não há que preocupar.\n\n---\n\n#### [WebTejo](https://webtejo.pt)\n\nEsta instância corre num servidor da WebTejo, uma empresa de alojamento web independente e nacional. Deem uma vista de olhos 😉 ', + published: "2021-09-10T19:37:20.934711", + updated: "2022-04-05T22:15:37.152023", + enable_downvotes: true, + open_registration: true, + enable_nsfw: false, + icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", + banner: null, + description: + "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", + community_creation_admin_only: true, + require_email_verification: true, + require_application: true, + application_question: + 'Esta medida serve para "filtrar" trolls e contas automáticas, pelo que não existe nenhum grande questionário. Basta responder à seguinte questão:\n\n> **Quem é o atual Presidente da República?**\n>\n> 1. António Guterres\n> 2. O vizinho do 3º Esq.\n> 3. Marcelo Rebelo de Sousa\n\nA confirmação da candidatura não deve demorar mais que um dia. \n\nAgradecemos a compreensão.', + private_instance: false, + actor_id: "https://lemmy.pt/", + last_refreshed_at: "2022-04-12T23:05:06.691827", + inbox_url: "https://lemmy.pt/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAn/5HTa3ioEIQF1/7E5mX\nGMiVSbP0OLS08s9pPoriIkTTAGw3Qotwu4zawmgL/dMVhmZ98Ut80+03p2eP+pCt\nJXVDwEvPKHwf3fp5poi3AhyRq9HbOeLqDswHkTMcZ7UueZIrEiM0vrycgAgwNOdS\nA5mZQbKrfxAVzBbNhX0f/J6Ww2OtF+PsE/EBjtZq5N/8kZKXi9YjuGarIH9ZJBeF\n0AD0/xMovNnNecHFOj5s3WEj5DXfIto+K3x+qL8YY62A2BI+z9YZw+ZOlDj+Qs9o\n8AXV/29vWCEtCeeEWOyg2S3MZsc7w20cvwvTVJ+cE2X4o29Zb1z/nRr3mP6LaRBl\nEwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 92, + posts: 315, + comments: 556, + communities: 29, + users_active_day: 0, + users_active_week: 1, + users_active_month: 3, + users_active_half_year: 18, + }, + }, + admins: [ + { + person: { + id: 2, + name: "tmpod", + display_name: "Tmpod", + avatar: "https://lemmy.pt/pictrs/image/gIPQUt3mxw.png", + banned: false, + published: "2021-09-10T19:37:20.367073", + updated: "2022-02-05T23:30:22.283193", + actor_id: "https://lemmy.pt/u/tmpod", + bio: "Estudante de Engenharia Informática apaixonado pela área; algures em Portugal.\n\nAdministrador da instância lemmy.pt.\n\n---\n\nComputer science student, passionate about the field; somewhere in Portugal.\n\nAdministrator of the lemmy.pt instance.\n\n---\n\nhttps://tmpod.dev", + local: true, + banner: "https://lemmy.pt/pictrs/image/iLIlqIIuaW.jpg", + deleted: false, + inbox_url: "https://lemmy.pt/u/tmpod/inbox", + shared_inbox_url: "https://lemmy.pt/inbox", + matrix_user_id: "@tmpod:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 44, + post_score: 268, + comment_count: 445, + comment_score: 1382, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "beehaw.org", + "feddit.de", + "kolektiva.media", + "lemmy.ml", + "lemmy.perthchat.org", + "sopuli.xyz", + ], + allowed: null, + blocked: ["narwhal.city", "jemmy.juggler.jp"], + }, + }, }, { domain: "community.nicfab.it", - name: "NicFab Community", - description: "NicFab Community", - version: "0.16.3", - icon: "https://community.nicfab.it/pictrs/image/cfef8df9-6bb5-4049-b7b0-5299814076d4.jpeg", - online_users: 2, - total_users: 6, - users_active_halfyear: 3, - users_active_month: 3, - open_registrations: true, - linked_instances_count: 4, - require_application: true, - }, - { - domain: "tabinezumi.net", - name: "たびねずみのみみ", - description: "日本語圏Lemmyインスタンスのひとつ", - version: "0.16.3", - icon: null, - online_users: 0, - total_users: 35, - users_active_halfyear: 6, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 10, - require_application: true, - }, - { - domain: "lemmy.juggler.jp", - name: "Juggler.jp Lemmyサービス", - description: null, - version: "0.16.1", - icon: "https://lemmy.juggler.jp/pictrs/image/v0TGrlnKGS.png", - online_users: 0, - total_users: 30, - users_active_halfyear: 11, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 14, - require_application: false, + site_info: { + site_view: { + site: { + id: 1, + name: "NicFab Community", + sidebar: + "Welcome to the **NicFab Community Lemmy instance**! Please be kind. All communities in this space should be at least related to Privacy.\n\nThis is a community space for projects and users interested in Privacy and Data protection.\n\nPlease abide by our [code of conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct/). \n\nTo report a CoC violation, message one of the admins.\n\n", + published: "2022-05-11T11:17:09.368040", + updated: "2022-05-12T17:59:12.888959", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://community.nicfab.it/pictrs/image/cfef8df9-6bb5-4049-b7b0-5299814076d4.jpeg", + banner: null, + description: "NicFab Community", + community_creation_admin_only: true, + require_email_verification: true, + require_application: true, + application_question: + "Please, explain why you want to join this community. ", + private_instance: false, + actor_id: "https://community.nicfab.it/", + last_refreshed_at: "2022-05-16T10:15:11.859556", + inbox_url: "https://community.nicfab.it/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzgF4VD/KyvuwdObTSV4a\nO1sGYCsOw8pdSNPgW4l6r36cBLHGWWVkkLozl7S+bnFmiWYNIE6j54TBY5BWvHD+\nuQMMLu+0EeD9sfiZFuvNasbEP+VrjMheM9WyOLO16R1/LrMHH3NpV9N1iivkATZ+\ndNyQIzWTSplGS7AyvauWAN9zbEkdj5srp4Y/y1hYBEJJPjwgMjn+YD6SHOAy7R3O\naIZD/QXrVwwC+QdXCp6325F4AQrA9kTFc93DKtCoGdhSa9tE771Ix77rg7BNZrrb\nZHtx4iVFxHbheXDUT9QQw6kNquBDu4xtOyI2XScGvS1NEekRqzRUajd4omPFYHvt\nXwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 6, + posts: 14, + comments: 7, + communities: 1, + users_active_day: 1, + users_active_week: 3, + users_active_month: 3, + users_active_half_year: 3, + }, + }, + admins: [ + { + person: { + id: 2, + name: "nicfab", + display_name: "nicfab", + avatar: + "https://community.nicfab.it/pictrs/image/8a175aa6-e6a2-43c5-9930-87a4d6ab87b7.png", + banned: false, + published: "2022-05-11T11:16:05.359549", + updated: "2022-05-11T11:24:08.056867", + actor_id: "https://community.nicfab.it/u/nicfab", + bio: "See here: https://notes.nicfab.it/en/pages/about/", + local: true, + banner: + "https://community.nicfab.it/pictrs/image/36ff7f56-dd0b-4bbd-9c20-5876ad04bd37.jpeg", + deleted: false, + inbox_url: "https://community.nicfab.it/u/nicfab/inbox", + shared_inbox_url: "https://community.nicfab.it/inbox", + matrix_user_id: "@nic:matrix.nicfab.it", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 12, + post_score: 26, + comment_count: 7, + comment_score: 11, + }, + }, + { + person: { + id: 3, + name: "valesapp", + display_name: null, + avatar: null, + banned: false, + published: "2022-05-11T11:32:47.223050", + updated: null, + actor_id: "https://community.nicfab.it/u/valesapp", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://community.nicfab.it/u/valesapp/inbox", + shared_inbox_url: "https://community.nicfab.it/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 1, + post_score: 4, + comment_count: 0, + comment_score: 0, + }, + }, + { + person: { + id: 123, + name: "filobianco", + display_name: null, + avatar: null, + banned: false, + published: "2022-05-13T12:57:31.572225", + updated: null, + actor_id: "https://community.nicfab.it/u/filobianco", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://community.nicfab.it/u/filobianco/inbox", + shared_inbox_url: "https://community.nicfab.it/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 79, + person_id: 123, + post_count: 1, + post_score: 2, + comment_count: 0, + comment_score: 0, + }, + }, + ], + online: 2, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "community.nicfab.it", + "community.xmpp.net", + "feddit.it", + "lemmy.ml", + ], + allowed: null, + blocked: null, + }, + }, }, { domain: "lm.korako.me", - name: "鴉は拠り所について語り合う", - description: "日本語話者向けLemmyインスタンスです", - version: "0.16.3-34-gbd9df83", - icon: null, - online_users: 0, - total_users: 20, - users_active_halfyear: 7, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 9, - require_application: true, - }, - { - domain: "buckeyestate.social", - name: "buckeyestate.social", - description: - "A lemmy server for, but not limited to, leftists of the state of Ohio", - version: "0.16.3", - icon: "https://buckeyestate.social/pictrs/image/a9b79b22-7346-40fc-b10c-87d486215cde.png", - online_users: 1, - total_users: 4, - users_active_halfyear: 2, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 3, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "鴉は拠り所について語り合う", + sidebar: + "のんびり語り合いましょう\\\nここはそんな場所です・・・\n\n**まずはこちらをご確認ください**\n- [運営方針やお知らせ](https://lm.korako.me/post/77)\n- [Lemmyの使い方](https://lm.korako.me/post/5923)\n\n**連絡先**\\\n[@karasu_sue@md.korako.me](https://md.korako.me/users/karasu_sue) ", + published: "2021-02-16T13:17:39.786201", + updated: "2022-05-11T15:09:01.838365", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: null, + banner: null, + description: "日本語話者向けLemmyインスタンスです", + community_creation_admin_only: false, + require_email_verification: true, + require_application: true, + application_question: + "**まずはこちらをご確認ください**\n- [運営方針やお知らせ](https://lm.korako.me/post/77)\n- [Lemmyの使い方](https://lm.korako.me/post/5923)\n\n確認してあなたがスパムではない場合はこちらで判断して申請を許可します。\\\nスパムと疑われた場合は許可は出せませんが、直接連絡をくれれば検討します。\n\n※事前に連絡をいただければスムーズに許可がでます\\\n**連絡先**\\\n[@karasu_sue@md.korako.me](https://md.korako.me/users/karasu_sue) \n\n運営方針等に同意することができるのであればその旨を日本語で回答お願いいたします。", + private_instance: false, + actor_id: "https://lm.korako.me/", + last_refreshed_at: "2022-05-16T03:01:04.838004", + inbox_url: "https://lm.korako.me/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5Lp8fFv2X4C6HbQRJRt/\nEUqxeA+S+4B/h3mqjq0Eyme54TpqXpynRcBaU9ZiT4OVpOT23iELzu7RJEBfeU0m\n++sCwRH5OxglU2D83I6LZuKQQJtBAC4uRVEDIkiEYKMBSPBZWQtTvIsgOPSka/9k\nMrGEpxcGqLdFlNyzOsZwKs2zNU4S3BtmhjAd5LevWEd/v0wGCVBEvDqVVU/8evbI\nrzOXAg2VTEvLE15xsNsWjmy7JnO+MDze6hK3cEaEFedSOCFqiggu9tUOJ1J1O9+d\nf85EHb+DoMSJ6p0vcsH/+AXXzS6L2Y9Im/u4ZZDTrYZ4ESXs2rxpTtqJlXDq7y0y\nyQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "minty", + }, + counts: { + id: 1, + site_id: 1, + users: 20, + posts: 7641, + comments: 130, + communities: 27, + users_active_day: 1, + users_active_week: 1, + users_active_month: 2, + users_active_half_year: 7, + }, + }, + admins: [ + { + person: { + id: 2, + name: "karasu_sue", + display_name: "鴉河雛@Lemmy", + avatar: "https://lm.korako.me/pictrs/image/tbSSc0VRe4.png", + banned: false, + published: "2021-02-16T13:17:39.698012", + updated: "2021-12-22T12:45:31.498979", + actor_id: "https://lm.korako.me/u/karasu_sue", + bio: "- [Mastodonアカウント (メイン)](https://md.korako.me/@karasu_sue)\n\nためになる情報と言うよりは、自分のメモ的な奴をじゃんじゃん登録していくと思いまする。", + local: true, + banner: "https://lm.korako.me/pictrs/image/Q6Pp7iQQ33.jpg", + deleted: false, + inbox_url: "https://lm.korako.me/u/karasu_sue/inbox", + shared_inbox_url: "https://lm.korako.me/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 373, + post_score: 484, + comment_count: 119, + comment_score: 125, + }, + }, + ], + online: 0, + version: "0.16.3-34-gbd9df83", + my_user: null, + federated_instances: { + linked: [ + "fedimovie.com", + "lemmy.cardina1.red", + "lemmy.fediverse.jp", + "lemmy.juggler.jp", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmy.shrieker.net", + "lm.korako.me", + "tabinezumi.net", + ], + allowed: null, + blocked: null, + }, + }, }, { domain: "fapsi.be", - name: "Fapsi", - description: - "This instance is for all the creative. No matter if you're a writer, author or illustrator.", - version: "0.16.3", - icon: "https://fapsi.be/pictrs/image/jUD7V242rr.png", - online_users: 1, - total_users: 160, - users_active_halfyear: 27, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 15, - require_application: false, - }, - { - domain: "info.prou.be", - name: "info.prou.be", - description: "infopoint virtual", - version: "0.16.1", - icon: "https://info.prou.be/pictrs/image/82e736ba-6dee-423b-b06b-b47f994ce6b6.png", - online_users: 0, - total_users: 15, - users_active_halfyear: 4, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 6, - require_application: true, - }, - { - domain: "lemmy.cat", - name: "Lemmy CAT", - description: "Cultura catalana", - version: "0.16.3", - icon: "https://lemmy.cat/pictrs/image/4iwqIfDlgI.png", - online_users: 0, - total_users: 77, - users_active_halfyear: 8, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 10, - require_application: true, - }, - { - domain: "lemmy.rollenspiel.monster", - name: "RollenspielMonster", - description: - "Eine deutschsprachige Instanz für Rollenspieler. Wir bieten einen platz für Rollenspiel, Pen & Paper, Tabletop, TCG und vieles mehr.", - version: "0.16.3", - icon: "https://lemmy.rollenspiel.monster/pictrs/image/040c05a3-ba7c-4e66-a225-5209dd4893f9.png", - online_users: 1, - total_users: 3, - users_active_halfyear: 2, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 2, - require_application: false, - }, - { - domain: "masr.social", - name: "Masr", - description: null, - version: "0.16.3", - icon: null, - online_users: 0, - total_users: 3, - users_active_halfyear: 2, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 3, - require_application: false, - }, - { - domain: "social.lealternative.net", - name: "Le Alternative lemmy", - description: - "Il social network di Le Alternative creato grazie a Lemmy", - version: "0.16.3", - icon: "https://social.lealternative.net/pictrs/image/93634af7-8633-49a4-9695-4a1823874acb.png", - online_users: 0, - total_users: 4, - users_active_halfyear: 2, - users_active_month: 2, - open_registrations: false, - linked_instances_count: 3, - require_application: true, - }, - { - domain: "stammtisch.hallertau.social", - name: "Stammtisch", - description: null, - version: "0.16.3", - icon: null, - online_users: 0, - total_users: 55, - users_active_halfyear: 19, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 9, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "Fapsi", + sidebar: + "###### Community guidelines:\n* No bigotry — including racism, sexism, ableism, homophobia, or xenophobia\n* No illegal content\n* No unmarked NSFW\n* No spamming / spam accounts\n* No extremism\n* No fake news\n* Be nice\n* Use English or German language!\n* Please try to avoid controversial topics like politics or religion\n\nPlease use a chatroom at [chat.bka.li](https://chat.bka.li) for small talk. \n\n---\n[Fapsi](https://fapsi.be) is offered by [BKA.li](https://bka.li). For support, please open a ticket at [support.bka.li](https://support.bka.li/index.php?a=add&catid=13) or send a mail to [support@bka.li](mailto:support@bka.li).\n\n--- \n[Terms](https://bka.li/tos) | [Imprint](https://bka.li/tos) | [Privacy Policy](https://bka.li/dataprivacy) | [FAQ](https://support.bka.li/knowledgebase.php?category=3) \n \nReasons for the instances on the blacklist can be found at https://fapsi.be/post/10597", + published: "2021-05-25T10:25:42.487218", + updated: "2022-04-08T15:55:02.011033", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://fapsi.be/pictrs/image/jUD7V242rr.png", + banner: "https://fapsi.be/pictrs/image/QcxBC6i44r.png", + description: + "This instance is for all the creative. No matter if you're a writer, author or illustrator.", + community_creation_admin_only: false, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://fapsi.be/", + last_refreshed_at: "2022-05-13T23:58:29.507149", + inbox_url: "https://fapsi.be/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuRyS/dC5EQhMZXhFRiFP\nOFCzdE46rqx8r4G2pOoMCqyVnWoXsUuPFsZZ+Ksxbirm37tRPXfgTFrQr+OoMlKq\n7PYeLcjpYBB/pZtMsntBL9w8+hZJbnFyBaVWpobd072DErR3nfJH+ti29NxqOsLB\nXPE75lCWuUPgYzQ40Km0y8fxvJnYkpDo0Z3uL2GVYARHzJ86dl1mdTPEagT6iaVj\noXKx9CsLu6myn4UUCcOet5QGVvcT7n1f99UtK0WAbj9842Tyi+cX/apocJ+vyCZh\nCFu0ewY5HfKg3bWLEXQ392UZvizki0+fGXfDKFDMPYY5iYlqg5bE39gVb0/R0EIv\nywIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "winternord", + }, + counts: { + id: 1, + site_id: 1, + users: 160, + posts: 317, + comments: 354, + communities: 9, + users_active_day: 0, + users_active_week: 2, + users_active_month: 2, + users_active_half_year: 27, + }, + }, + admins: [ + { + person: { + id: 2, + name: "kromonos", + display_name: "Kromonos", + avatar: "https://fapsi.be/pictrs/image/bt37rkHWFa.jpg", + banned: false, + published: "2021-05-25T10:25:42.146049", + updated: "2022-04-08T15:47:57.240959", + actor_id: "https://fapsi.be/u/kromonos", + bio: "Head of the Teleyal family \nWriter of the DnD story at https://teleyal.blog \nTZ: UTC+2 \nCharacters on the website are owned by me!\n\n[![Mastodon badge](https://drow.be/mastodon-badge)](https://drow.be/mastodon)", + local: true, + banner: "https://fapsi.be/pictrs/image/yl0wjQvMZq.png", + deleted: false, + inbox_url: "https://fapsi.be/u/kromonos/inbox", + shared_inbox_url: "https://fapsi.be/inbox", + matrix_user_id: "@kromonos:kde.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 231, + post_score: 595, + comment_count: 242, + comment_score: 824, + }, + }, + ], + online: 2, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "anonsys.net", + "beehaw.org", + "community.xmpp.net", + "feddit.de", + "heapoverflow.ml", + "lemmy.161.social", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmy.rollenspiel.monster", + "lemmy.schuerz.at", + "loma.ml", + "mander.xyz", + "midwest.social", + "sopuli.xyz", + "stammtisch.hallertau.social", + ], + allowed: null, + blocked: [ + "mastodon.art", + "gab.com", + "rage.love", + "slime.global", + "hackers.town", + "weirder.earth", + "tenforward.social", + "preview.goatpen.co", + "legbeard.xyz", + "wolfballs.com", + "mentalhealth.social", + "narwhal.city", + "lotide.fbxl.net", + "a.tide.tk", + "b.tide.tk", + "c.tide.tk", + "dev.narwhal.city", + "social.naln1.ca", + "treehouse.systems", + "merveilles.town", + "plural.cafe", + "mspsocial.net", + "tech.lgbt", + "gts.fedi.tech", + "soc.eena.me", + "sitedethib.com", + "ondergrond.org", + "goblin.technology", + "goblin.camp", + ], + }, + }, }, { domain: "elgiebety.pl", - name: "elgiebety", - description: null, - version: "0.16.3", - icon: null, - online_users: 0, - total_users: 4, - users_active_halfyear: 2, - users_active_month: 2, - open_registrations: true, - linked_instances_count: 3, - require_application: false, + site_info: { + site_view: { + site: { + id: 1, + name: "elgiebety", + sidebar: null, + published: "2021-12-12T12:33:27.780974", + updated: "2022-05-13T20:40:11.707136", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: null, + banner: null, + description: null, + community_creation_admin_only: false, + require_email_verification: false, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://elgiebety.pl/", + last_refreshed_at: "2022-05-14T12:37:38.331330", + inbox_url: "https://elgiebety.pl/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmpnEQPbuSCg03asNuKxN\nch/vqscTlG86d7rmkXnNUb+gIJ2cmnExGfoaWSX4pnp6XlrS8aX4IisyK906JodE\nUvDe6a8PwhukETjSui4KM1yTlzkADcv3LYE3XIe5DBYz9oBI45ds9IsOJ8SyqOng\nl4vyMObKXHGQmCsm0Hcdz3qZUXEs8qlHQzOV89ywtD21+7XTEaaPPSyJYjW1pxgY\nKp5jL6dToaAl4RtLBH71+CB45JmbuIbGIAoW0aTJhrzOUHyLIp1ccdmBPO+FSlsA\nfwSxB3bPRijvd5d1jqcKqfMlKMQ0nhfoI+YB6HIfDk8it3tV3sptjx4l7KE5N9jB\naQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "vaporwave-dark", + }, + counts: { + id: 1, + site_id: 1, + users: 4, + posts: 19, + comments: 4, + communities: 3, + users_active_day: 1, + users_active_week: 1, + users_active_month: 2, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "makarygo", + display_name: null, + avatar: null, + banned: false, + published: "2021-12-12T12:33:27.064604", + updated: "2022-05-14T11:12:54.492695", + actor_id: "https://elgiebety.pl/u/makarygo", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://elgiebety.pl/u/makarygo/inbox", + shared_inbox_url: "https://elgiebety.pl/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 18, + post_score: 32, + comment_count: 0, + comment_score: 0, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["elgiebety.pl", "lemmy.ml", "szmer.info"], + allowed: null, + blocked: null, + }, + }, }, { - domain: "lemmy.otakufarms.com", - name: "Otaku Farms", - description: - "Otaku Farms is a network of Fediverse instances created for the sole purpose of letting individuals express themselves.", - version: "0.16.3", - icon: "https://lemmy.otakufarms.com/pictrs/image/ekmeJ0BD8S.png", - online_users: 0, - total_users: 4, - users_active_halfyear: 4, - users_active_month: 1, - open_registrations: true, - linked_instances_count: 5, - require_application: false, + domain: "social.lealternative.net", + site_info: { + site_view: { + site: { + id: 1, + name: "Le Alternative lemmy", + sidebar: "# Regole\nÈ possibile soltanto parlare in italiano", + published: "2022-05-04T07:50:10.256494", + updated: "2022-05-09T09:16:28.749709", + enable_downvotes: true, + open_registration: false, + enable_nsfw: true, + icon: "https://social.lealternative.net/pictrs/image/93634af7-8633-49a4-9695-4a1823874acb.png", + banner: null, + description: + "Il social network di Le Alternative creato grazie a Lemmy", + community_creation_admin_only: true, + require_email_verification: false, + require_application: true, + application_question: "Perché vuoi iscriverti?", + private_instance: false, + actor_id: "https://social.lealternative.net/", + last_refreshed_at: "2022-05-04T07:50:10.255582", + inbox_url: "https://social.lealternative.net/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArviwOjfJ9eCU+/CGTOor\npRKbBndmFon2aH+TCjOSPTfZTxeX/vz2W6EpOEmmmKn7955WXrV7CjcoKVWy1gHa\nqp/8ayB3BWEhRZj6toMwo2uNwTjKPBUAP8UDJWhfToj0+5S6evyjkU5VURaQOuqx\ntLa1y/zHN4TqnV8Wd44EhUY/o05uP68K3jsKfntIVAu/T6EJd11YFs1+cwDcrMpL\n2+cVXKZlwwuehNMnO8QAgZpJWR7QjPAvsbJzAPI5KbnKSfT0N0xTsqwoS5UG/Zi5\nUX2cGMN3r6vqLg+UAGPXn5oBInuWE08PJ/1GOQ+kq9seBMHEuZpBGUIDMnb7AlJl\nNwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 4, + posts: 2, + comments: 0, + communities: 2, + users_active_day: 0, + users_active_week: 2, + users_active_month: 2, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "skariko", + display_name: null, + avatar: null, + banned: false, + published: "2022-05-04T07:45:23.436482", + updated: "2022-05-04T19:58:46.746189", + actor_id: "https://social.lealternative.net/u/skariko", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://social.lealternative.net/u/skariko/inbox", + shared_inbox_url: "https://social.lealternative.net/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1, + post_score: 2, + comment_count: 0, + comment_score: 0, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["feddit.it", "lemmy.ml", "social.lealternative.net"], + allowed: null, + blocked: null, + }, + }, }, { - domain: "lemmy.fediverse.jp", - name: "Fediverse.jp: Lemmy", - description: null, - version: "0.16.3", - icon: null, - online_users: 1, - total_users: 2, - users_active_halfyear: 1, - users_active_month: 1, - open_registrations: true, - linked_instances_count: 1, - require_application: false, + domain: "masr.social", + site_info: { + site_view: { + site: { + id: 1, + name: "Masr", + sidebar: null, + published: "2022-04-17T01:56:24.406153", + updated: "2022-04-17T02:14:04.470010", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: null, + banner: null, + description: null, + community_creation_admin_only: true, + require_email_verification: false, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://masr.social/", + last_refreshed_at: "2022-04-19T19:53:09.500280", + inbox_url: "https://masr.social/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3F0RqFrRGFjzRbBrCPDY\n2HR19DnBLXie/TKa6GxV4dJwh6ejWYd8mXIJy2wk04Zx6NJDGpOhBmLw9mQxmzXg\nJi9eleGCx6ZnU8c3DbZxMCnGD3D9ALsErk05AmEc2g7A6kYNgEI2lEPKJcOElKPb\ntZwF7WFAPyJHqKaSwwiwEIgcLSXrctuB5ew3oBUdsfRaXP5Oiwq9gBoelef3kukL\nYLmxO0f8UM2GRHw+Q8P6iiQXPjDb8MXS8sk/IOMdTOni/qOxmUV89z3V4lqDNvFs\nnjm9DiZfrhj3FTmRzII3KxmcsEkrfQkW0lamuYaZeakY15nBa/uYRj6MZ5P5GxIp\n0QIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly", + }, + counts: { + id: 1, + site_id: 1, + users: 3, + posts: 1, + comments: 31, + communities: 0, + users_active_day: 0, + users_active_week: 0, + users_active_month: 2, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "admoon", + display_name: null, + avatar: null, + banned: false, + published: "2022-04-17T01:56:24.036830", + updated: "2022-04-25T19:47:04.882021", + actor_id: "https://masr.social/u/admoon", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://masr.social/u/admoon/inbox", + shared_inbox_url: "https://masr.social/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 0, + post_score: 0, + comment_count: 0, + comment_score: 0, + }, + }, + { + person: { + id: 4, + name: "shabbee7", + display_name: "الشــبــيــح", + avatar: null, + banned: false, + published: "2022-04-17T02:11:36.757729", + updated: "2022-04-25T19:48:23.093533", + actor_id: "https://masr.social/u/shabbee7", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://masr.social/u/shabbee7/inbox", + shared_inbox_url: "https://masr.social/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 3, + person_id: 4, + post_count: 0, + post_score: 0, + comment_count: 16, + comment_score: 16, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["lemmy.ml", "lemmygrad.ml", "masr.social"], + allowed: null, + blocked: null, + }, + }, }, { - domain: "fuckreddit.tryp.digital", - name: "TRYP", - description: "Now 50% Prod!", - version: "0.16.3", - icon: "https://fuckreddit.tryp.digital/pictrs/image/52dc0c6c-71a4-40f9-a326-b51d54c95173.png", - online_users: 1, - total_users: 6, - users_active_halfyear: 2, - users_active_month: 1, - open_registrations: true, - linked_instances_count: 14, - require_application: true, + domain: "lemmy.juggler.jp", + site_info: { + site_view: { + site: { + id: 1, + name: "Juggler.jp Lemmyサービス", + sidebar: + "テストサーバだよ。データは気が向いた時に消すよ。\n\n- このサーバでは政治的な話題を取り扱いません。\n- このサーバは日本の法律や判例に従います。\n", + published: "2020-12-15T04:32:19.360061", + updated: "2021-01-27T00:04:06.936036", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.juggler.jp/pictrs/image/v0TGrlnKGS.png", + banner: null, + description: null, + community_creation_admin_only: false, + require_email_verification: false, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.juggler.jp/", + last_refreshed_at: "2022-03-16T11:42:54.954635", + inbox_url: "https://lemmy.juggler.jp/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp+7UxqYrLqoQSnDmkrcK\n5rXc+cETWnvQyQfeiX5CqxxkyfKSlHU+FtC7Q7NTn/k+TFnruEp3iNGYOYSUnUbH\nYKlmOLwxUZgMgPz+rh20xnIhiYDUD0H8C1wguBxRL5OqzAEQrMoZpk4ugvkxXziO\nTsSxS8F+ns8bfMJ55ahDFEF2+uG8hURAEoCgEOi0pjaGeu5Wph+hgffdiJhT8AyO\nnM8kQ3I1+1JV+GSx3kX42awf4q2klULCjBrqlZQIu5I8dVJt+NlVTK2OvwV5cGGs\nGnqBwhpYSnCQ9eCO7qIRlYauIULhZaiCinvgRPIw0hbuqR2ibGiAO83T04Fv/Zj8\nLQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 30, + posts: 307, + comments: 89, + communities: 18, + users_active_day: 0, + users_active_week: 1, + users_active_month: 2, + users_active_half_year: 11, + }, + }, + admins: [ + { + person: { + id: 2, + name: "juggler", + display_name: null, + avatar: null, + banned: false, + published: "2020-12-15T04:32:19.262706", + updated: null, + actor_id: "https://lemmy.juggler.jp/u/juggler", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.juggler.jp/u/juggler/inbox", + shared_inbox_url: "https://lemmy.juggler.jp/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 2, + post_score: 2, + comment_count: 0, + comment_score: 0, + }, + }, + ], + online: 0, + version: "0.16.1", + my_user: null, + federated_instances: { + linked: [ + "bar.southfox.me", + "baraza.africa", + "lem.ph3j.com", + "lemmy.0px.io", + "lemmy.161.social", + "lemmy.cardina1.red", + "lemmy.fediverse.jp", + "lemmy.juggler.jp", + "lemmy.ml", + "lemmy.shrieker.net", + "lemmygrad.ml", + "lm.korako.me", + "tabinezumi.net", + "wasurejio.link", + ], + allowed: null, + blocked: null, + }, + }, }, { - domain: "heapoverflow.ml", - name: "Heap Overflow", - description: - "A place to ask programming questions and share free resources", - version: "0.16.3", - icon: "https://heapoverflow.ml/pictrs/image/f910bf1c-215b-47c0-a9ff-d65f483c02a3.png", - online_users: 0, - total_users: 11, - users_active_halfyear: 1, - users_active_month: 1, - open_registrations: true, - linked_instances_count: 3, - require_application: true, + domain: "lemmy.cat", + site_info: { + site_view: { + site: { + id: 1, + name: "Lemmy CAT", + sidebar: + " [lemmy.cat](https://lemmy.cat) és una instància [Lemmy](https://join.lemmy.ml) per a les persones de cultura catalana. \n\nNormes:\n- No es permet cap mostra de racisme, xenofòbia o homofòbia.\n- Cal ser respectuós amb tothom. Tothom és benvingut.\n- Prohibida la pornografia.\n- Prohibida la publicitat. ", + published: "2020-12-10T08:59:13.928471", + updated: "2022-03-14T20:34:53.047724", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.cat/pictrs/image/4iwqIfDlgI.png", + banner: "https://lemmy.cat/pictrs/image/p63LCl9dD2.jpg", + description: "Cultura catalana", + community_creation_admin_only: false, + require_email_verification: true, + require_application: true, + application_question: + "Aquesta instància Lemmy és per als catalans. Digues perquè vols registrar-te, gràcies!", + private_instance: false, + actor_id: "https://lemmy.cat/", + last_refreshed_at: "2022-05-14T06:02:12.595699", + inbox_url: "https://lemmy.cat/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAs03L18yMWT6W3j2egHdO\nAYo2j1KENXrt+h5uOI5l7X7cPYzVlgMqGlR5D4S1WGumnWOJ9f+3kQWhAdDe/RfK\ngxsyOEcFqJ1o9dXAkdlILt7boQQzP6GK8nK8JeRViznK+HZK1RA/g1JHoKNQfDgr\nevQnxNy6NAwzr+GEtrzWoslE+UBW95XYfZHKKrMh8GBzvBYhKyNhO9GRBRorBRfb\nPzpfDHRi3+R+U1EUBe4894i4b0WX9biO043NxhiREB0Lkw+KnD3DKI7jddpZ3mQ5\ntWl3d+CNxOOlNQknzSVyHTwZDMAoaGKYeS9TdCuiGskyWpPSjheQF+i2930JjpSX\nOQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 77, + posts: 161, + comments: 114, + communities: 20, + users_active_day: 0, + users_active_week: 1, + users_active_month: 2, + users_active_half_year: 8, + }, + }, + admins: [ + { + person: { + id: 2, + name: "admin", + display_name: null, + avatar: null, + banned: false, + published: "2020-12-10T08:59:13.420079", + updated: null, + actor_id: "https://lemmy.cat/u/admin", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.cat/u/admin/inbox", + shared_inbox_url: "https://lemmy.cat/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 2, + post_score: 5, + comment_count: 1, + comment_score: 1, + }, + }, + { + person: { + id: 10, + name: "spla", + display_name: null, + avatar: "https://lemmy.cat/pictrs/image/xpmPaWDGuF.jpg", + banned: false, + published: "2020-12-10T09:18:05.089209", + updated: "2022-01-18T13:07:50.140151", + actor_id: "https://lemmy.cat/u/spla", + bio: "Loving Lemmyverse!", + local: true, + banner: "https://lemmy.cat/pictrs/image/ijNb6dUtZ0.jpg", + deleted: false, + inbox_url: "https://lemmy.cat/u/spla/inbox", + shared_inbox_url: "https://lemmy.cat/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 26, + person_id: 10, + post_count: 89, + post_score: 179, + comment_count: 84, + comment_score: 187, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "collapse.cat", + "community.xmpp.net", + "f.freinetz.ch", + "friendica.utzer.de", + "lemmy.ml", + "lemmy.perthchat.org", + "libranet.de", + "loma.ml", + "rollenspiel.group", + "sopuli.xyz", + ], + allowed: null, + blocked: ["legbeard.xyz"], + }, + }, }, { - domain: "foro.markoop.org", - name: "Foro de Markoop", - description: "Un océano de redes en cooperación", - version: "0.16.3", - icon: "https://foro.markoop.org/pictrs/image/528d7d7d-43ef-4ccc-b256-8a49b7d436a5.png", - online_users: 0, - total_users: 1, - users_active_halfyear: 1, - users_active_month: 1, - open_registrations: true, - linked_instances_count: 0, - require_application: false, + domain: "info.prou.be", + site_info: { + site_view: { + site: { + id: 1, + name: "info.prou.be", + sidebar: + "##### Objectius\n1. organitzar la **transformació** social radical\n2. fomentar **debats** informats i crítics\n3. compartir **contrainformació** d'actualitat\n4. arxivar **material formatiu**\n\n##### Valors\n* contra tota forma d'**opressió**\n* respecte mutu, **escolta** i assertivitat\n\n##### Limitacions\n* **territori**: instància centrada però no limitada a barcelona → catalunya → espanyes → mediterrani nord\n* **llengües**: ca/es/en. No podem moderar contingut que no entenem\n\n##### Funcionament\n* el **registre** va sota demanda. En la soŀlicitud, explica les teves motivacions i digues _«he passat per l'infopoint»_ perquè sapiguem que has llegit aquestes normes i que les comparteixes.\n* com a membre, pots crear **comunitats noves**\n\n::: spoiler copyleft\n* el contingut generat a info.prou.be s'assumeix lliure, sota la [llicència feminista de producció entre iguals](https://labekka.red/licencia-f2f/)\n* imatge original del [bosc de hambach](https://www.flickr.com/photos/hambacherforst/34670543161/)\n:::\n", + published: "2022-02-10T21:24:29.684411", + updated: "2022-02-12T13:49:10.793754", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://info.prou.be/pictrs/image/82e736ba-6dee-423b-b06b-b47f994ce6b6.png", + banner: + "https://info.prou.be/pictrs/image/d0a16160-9731-4456-9f2d-ee9a53d86687.png", + description: "infopoint virtual", + community_creation_admin_only: false, + require_email_verification: true, + require_application: true, + application_question: + "> Hola! \n> Escriu 2 línies explicant què t'agradaria fer aquí, si us plau . \n> Respondrem la soŀlicitud de seguida que puguem. \n> Salut!\n", + private_instance: false, + actor_id: "https://info.prou.be/", + last_refreshed_at: "2022-03-27T02:05:47.073940", + inbox_url: "https://info.prou.be/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzF4UgntRb6QVxOJqAjYe\nDsyMw5/9FZyb2KGU1iIabQ3MWq13H4z0lfzGDaGdMTVwACY5xCbXrnjbxqwWJmLk\nz/KFqbcouIuj05TBSqCmPUxmCWeJhI1EPj6wjuVwzqDWXLslo5t99FjR9AcYxvzd\naykCCECCPLoT3ygAQ4D8lsvhFFX9fJpHAnTl6rJIN0kcO/eSOjqmO4ncLl9Zg6V/\ntKCL7NqYOTnVGmosRNO1rIzN8A+WqaBBQsF6TIvytOBef/qXxXKteCFZF21CHNKX\n+LUBNImHTPQ+9x8XuyOICOoRZ+1iq0M8FpterkejIu7lKsqBVaeznm+ZAcobQ3p7\nuwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 15, + posts: 47, + comments: 16, + communities: 6, + users_active_day: 0, + users_active_week: 0, + users_active_month: 2, + users_active_half_year: 4, + }, + }, + admins: [ + { + person: { + id: 2, + name: "lemmy", + display_name: null, + avatar: null, + banned: false, + published: "2022-02-10T21:24:28.254631", + updated: null, + actor_id: "https://info.prou.be/u/lemmy", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://info.prou.be/u/lemmy/inbox", + shared_inbox_url: "https://info.prou.be/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1, + post_score: 2, + comment_count: 0, + comment_score: 0, + }, + }, + { + person: { + id: 3, + name: "fadelkon", + display_name: null, + avatar: null, + banned: false, + published: "2022-02-10T21:33:50.798877", + updated: null, + actor_id: "https://info.prou.be/u/fadelkon", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://info.prou.be/u/fadelkon/inbox", + shared_inbox_url: "https://info.prou.be/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 34, + post_score: 40, + comment_count: 16, + comment_score: 21, + }, + }, + ], + online: 0, + version: "0.16.1", + my_user: null, + federated_instances: { + linked: [ + "collapse.cat", + "foro.markoop.org", + "forum.nogafam.es", + "info.prou.be", + "lemmy.ml", + "szmer.info", + ], + allowed: null, + blocked: null, + }, + }, }, { - domain: "lemmy.rimkus.it", - name: "rimkus-corner", - description: "Fediverse for the Rimkus Clan", - version: "0.16.3", - icon: "https://lemmy.rimkus.it/pictrs/image/c9cb6ec8-9809-46ae-b75c-5ee023aa19ce.jpeg", - online_users: 0, - total_users: 2, - users_active_halfyear: 1, - users_active_month: 1, - open_registrations: true, - linked_instances_count: 4, - require_application: true, + domain: "stammtisch.hallertau.social", + site_info: { + site_view: { + site: { + id: 1, + name: "Stammtisch", + sidebar: + "Der dezentrale Stammtisch für die Hallertau auf Basis von lemmy.ml.\n\nRegeln\n\nSeids nett zueinander, gell?! Wer se ned zu benehmen weiß, fliegt. Ganz einfach. Aufbassn, wos du do schreibst.\n\nMia wuin koan Rassismus, koa Gewalt, koan Hass, koan Porn, Werbung höchstens für hayfidelity, Herbstschild, hayretic oder Hallertau.Social und reissts eich bitte zam, wenns Richtung Verschwörungstheorien gäd. Mia kennan gern drüber redn, oba ned überdreibn bidsche. Immer schee locker bleibn.", + published: "2021-01-18T11:00:26.709474", + updated: "2022-03-19T17:38:44.436486", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: null, + banner: + "https://stammtisch.hallertau.social/pictrs/image/TbUbi4vFwZ.jpg", + description: null, + community_creation_admin_only: false, + require_email_verification: true, + require_application: true, + application_question: null, + private_instance: false, + actor_id: "https://stammtisch.hallertau.social/", + last_refreshed_at: "2022-05-16T06:40:44.562976", + inbox_url: "https://stammtisch.hallertau.social/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp21pF9zke+JVsgkvDtsV\nn9KvURHKhMEur5m5B1T6qxsyZ3acpYAQmhTT0cMztJSHnEL28rJF3jPd6JJJhbpp\ndM3qF+aJ+BOjO55x0el0n7/NtKDXJC+UtBSWwNQ175n7tuft9PiGjLA7EseUgj/N\nhUj0bkA9QeW1ipPV/8KssihBFft5y8A+LdDChVCaQagpGu1tUX6uqQXtqMDLWlue\n5etQG75BC85gXAvQg7cFYgO9FaNzRFEvCVnGNw1HEomZy8jrjeAwE/cadIk9cfPD\nBc6xkXHak9qzj2RKmPKmgdAyB8aUmLWKMT6CCKXGUQFXeyOU6IlzzwTd7qLv0MzJ\n5QIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 55, + posts: 160, + comments: 46, + communities: 11, + users_active_day: 0, + users_active_week: 1, + users_active_month: 2, + users_active_half_year: 19, + }, + }, + admins: [ + { + person: { + id: 2, + name: "hayfilem", + display_name: "Stammtischef", + avatar: null, + banned: false, + published: "2021-01-18T11:00:26.613126", + updated: "2021-08-29T16:15:39.324626", + actor_id: "https://stammtisch.hallertau.social/u/hayfilem", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: + "https://stammtisch.hallertau.social/u/hayfilem/inbox", + shared_inbox_url: "https://stammtisch.hallertau.social/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 0, + post_score: 0, + comment_count: 1, + comment_score: 1, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "feddit.de", + "freindal.hallertau.social", + "hub.13ad.de", + "hub.hayfidelity.de", + "lemmy.ml", + "mainburg.hallertau.social", + "pirati.ca", + "stammtisch.hallertau.social", + "stubn.hallertau.social", + ], + allowed: [ + "lemmy.ml", + "feddit.de", + "stubn.hallertau.social", + "mainburg.hallertau.social", + "hub.13ad.de", + "hub.hayfidelity.de", + "freindal.hallertau.social", + "pirati.ca", + ], + blocked: null, + }, + }, + }, + { + domain: "tabinezumi.net", + site_info: { + site_view: { + site: { + id: 1, + name: "たびねずみのみみ", + sidebar: + "ここはゆっくりとした流れのインターネッツです。\\\n初めましての方はこちらへ↓\n- [総合案内](https://tabinezumi.net/post/94)\n- [Lemmyについての説明](https://tabinezumi.net/post/43)\n\nメンテナンスのお知らせ/履歴は[こちら](https://tabinezumi.net/post/93)または@nirari@nightly.fedibird.comを参考にしてください", + published: "2020-11-29T17:27:23.952938", + updated: "2022-04-10T20:58:13.850883", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: null, + banner: null, + description: "日本語圏Lemmyインスタンスのひとつ", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: + "管理者の判断により、予告なしに投稿の削除やアクセス禁止措置等を行うことがあります。\n例として以下の場合が該当します。\n- 法に違反する行為と判断したとき\n- 公序良俗に反する内容と判断したとき\n- 複数コミュニティ(他のLemmyインスタンスを含む)にわたって主に宣伝目的と思われる投稿をしたとき\n\nまた、当インスタンスは何らかの不具合等により事前予告なくサービスを終了する可能性があります。\nその場合のデータの喪失につき責任は負いかねます。\n\n以上につき了承の上で登録を希望する場合は下のフォームに「同意済み」と入力してください。", + private_instance: false, + actor_id: "https://tabinezumi.net/", + last_refreshed_at: "2022-04-10T20:22:58.293613", + inbox_url: "https://tabinezumi.net/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4LECOATuQe59sneG7Evc\nZgfT+qrZMdEvfb9KyJmW9crkPaW5byaMA0W/HMquqeajYBveWzA93kKK4WGQBBad\nJfR0PkdqkY/effKnsnLUnw3C5+uCAGVeLfkFaYQb0aG8R3dYBqag5xp04B57Fail\nEkqWwoH8ey6Twx8cBo3z6UwcxkwMsntpoKeyHryBqBg01qYkKCw6tshbb8scbDGd\ndtmme3mozF67t4shgflYEqtuF1U9LHdwUx48emovcMiND4TZMCIME8NYNqa0CZ1q\nyRFi6zT5W7cthbZ2llEybs4kinQKjNPwRu236mx+ZtGH87FC6NF88NijZoYpBmZN\nSQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "minty", + }, + counts: { + id: 1, + site_id: 1, + users: 35, + posts: 320, + comments: 107, + communities: 26, + users_active_day: 1, + users_active_week: 1, + users_active_month: 2, + users_active_half_year: 6, + }, + }, + admins: [ + { + person: { + id: 2, + name: "nirari", + display_name: "二ノ倉ちどり(Lemmy)", + avatar: "https://tabinezumi.net/pictrs/image/UKKvqojRKc.jpg", + banned: false, + published: "2020-11-29T17:17:12.928863", + updated: "2021-11-30T07:53:05.866816", + actor_id: "https://tabinezumi.net/u/nirari", + bio: "にのくらちどり/Chidori Ninokura\n \nLemmyサーバー“たびねずみのみみ”(tabinezumi.net)の管理人です。\n\nこのユーザーをフォローすることはできません。tabinezumi.netに関するお知らせを見たいときは\n[@nirari@nightly.fedibird.com](https://nightly.fedibird.com/@nirari)か[たびねずみインフォメーション](https://tabinezumi.net/c/main)(コミュニティ/グループ)のフォローを推奨します。", + local: true, + banner: "https://tabinezumi.net/pictrs/image/swaR4yHSFA.png", + deleted: false, + inbox_url: "https://tabinezumi.net/u/nirari/inbox", + shared_inbox_url: "https://tabinezumi.net/inbox", + matrix_user_id: "@nirari:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 8, + person_id: 2, + post_count: 196, + post_score: 435, + comment_count: 53, + comment_score: 79, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "group.pullopen.xyz", + "groups.qoto.org", + "lem.ph3j.com", + "lemmy.0px.io", + "lemmy.cardina1.red", + "lemmy.fediverse.jp", + "lemmy.juggler.jp", + "lemmy.ml", + "lm.korako.me", + "tabinezumi.net", + ], + allowed: null, + blocked: null, + }, + }, + }, + { + domain: "lemmy.rollenspiel.monster", + site_info: { + site_view: { + site: { + id: 1, + name: "RollenspielMonster", + sidebar: + "# Regeln\n\n- Keine Fanatismus - einschließlich Rassismus, Sexismus, Behindertenfeindlichkeit, Homophobie oder Fremdenfeindlichkeit.\n- Sei respektvoll. Jeder sollte sich hier willkommen fühlen.\n- Keine Pornos.\n- Keine Werbung / Spamming.\n\n## Weiterführende Links\n\n- [Charta](https://rollenspiel.monster/charta)\n- [Nutzungsbedingugnen](https://rollenspiel.monster/terms)\n- [Impressum](https://rollenspiel.monster/imprint)\n- [Datenschutzerklärung](https://rollenspiel.monster/privacy)\n- [Spenden](https://rollenspiel.monster/donate)", + published: "2022-04-14T18:13:59.830117", + updated: "2022-04-15T10:27:33.795221", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.rollenspiel.monster/pictrs/image/040c05a3-ba7c-4e66-a225-5209dd4893f9.png", + banner: + "https://lemmy.rollenspiel.monster/pictrs/image/bb5c9566-a03c-4100-9c5d-77440256ab42.png", + description: + "Eine deutschsprachige Instanz für Rollenspieler. Wir bieten einen platz für Rollenspiel, Pen & Paper, Tabletop, TCG und vieles mehr.", + community_creation_admin_only: false, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.rollenspiel.monster/", + last_refreshed_at: "2022-05-16T02:47:43.751316", + inbox_url: "https://lemmy.rollenspiel.monster/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzF0EQRk8TThadI3zToMi\nIPgyQ6qbiJYbFnq5KfcWu5Boz7BiyN/U68BRnIS6o0nk1T/vjN0glBnc2Fd1FFP8\nAeg/cUuRMAEinwEkYsJUgTpPd6aGdpR9IgAXHDukfgGWHlL2xS2SPDpKeJw3J5fz\nk75jbIwZRMIV1mt1r6ohilE0LsKypXHKKydYHWi0T2CW0N4qr4H8CYdxbFJVh6zL\nN2knHrnahx8NSRP8WDHhArMk737Wh1CAMi6eueJMhDpRMI6A5kpq+0pFWiyekVbU\npPxfu9TLuBC0lCr+WkZPQN42WnZlaJ4Eq3mdWc+lWP6JBEqTNujk0R5VDxMtdZvl\nXwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 3, + posts: 16, + comments: 18, + communities: 7, + users_active_day: 0, + users_active_week: 1, + users_active_month: 2, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "Tealk", + display_name: "Tealk", + avatar: + "https://lemmy.rollenspiel.monster/pictrs/image/f32e7df9-60d1-4da1-9a88-05c1fda304a7.png", + banned: false, + published: "2022-04-14T18:13:41.657050", + updated: "2022-04-19T06:17:02.534078", + actor_id: "https://lemmy.rollenspiel.monster/u/Tealk", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.rollenspiel.monster/u/Tealk/inbox", + shared_inbox_url: "https://lemmy.rollenspiel.monster/inbox", + matrix_user_id: "@tealk:tchncs.de", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 16, + post_score: 25, + comment_count: 17, + comment_score: 22, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["feddit.de", "lemmy.ml"], + allowed: null, + blocked: [ + "caw.ai", + "collapse.cat", + "cyber-news.fr", + "elgiebety.pl", + "exploding-heads.com", + "forum.nobigtech.es", + "goldandblack.us.to", + "info.prou.be", + "group.lt", + "gtio.io", + "legbeard.xyz", + "lem.ph3j.com", + "lemmy.cat", + "lemmy.coupou.fr", + "lemmy.eus", + "lemmy.fediverse.jp", + "lemmy.juggler.jp", + "lemmy.kaouenn-noz.fr", + "lemmy.mesh.party", + "lemmy.otakufarms.com", + "lemmy.pt", + "lemmy.services.coupou.fr", + "lemmy.shrieker.net", + "lemmy.tedomum.net", + "lemmy.vip", + "lemmy.wiredentrypoint.xyz", + "lemmygrad.ml", + "lm.korako.me", + "mandacaru.caatinga.digital", + "szmer.info", + "tabinezumi.net", + "www.cyber-news.fr", + "wolfballs.com", + "a.tide.tk", + "b.tide.tk", + "c.tide.tk", + "dev.narwhal.city", + "lotide.fbxl.net", + "narwhal.city", + "lotide.exopla.net.eu.org", + ], + }, + }, + }, + { + domain: "buckeyestate.social", + site_info: { + site_view: { + site: { + id: 1, + name: "buckeyestate.social", + sidebar: + "1. No porn\n2. No hate speech/bigotry\n3. No QAnon, antivax, or conspiracy theories", + published: "2022-03-25T14:55:35.670127", + updated: "2022-03-26T12:41:06.835185", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://buckeyestate.social/pictrs/image/a9b79b22-7346-40fc-b10c-87d486215cde.png", + banner: null, + description: + "A lemmy server for, but not limited to, leftists of the state of Ohio", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: + "Why do you want to join this instance?\n\nWhat did you choose your username?\n", + private_instance: false, + actor_id: "https://buckeyestate.social/", + last_refreshed_at: "2022-05-12T01:13:54.006226", + inbox_url: "https://buckeyestate.social/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxHFepeiN/4yEptiRt7Va\nNBQhe3h++On8TWXORQk7hldJdgVC1ohqE2uMJyOQmD7oDwQSRPxFrEQDsIB/T3dw\nFhpd4CFBJhb2JWm/eaQmKGlERU7ZppMWjzlp+ItmuMCgvvwSCa8gVmrh0hi+PfjM\n/UZOOHvTDMOsiOXC1seFqBxMbORZg1tmE8C4YbwayDeEj/Nn7ZNfiWp8EHmyviap\nB7f3oz1MlpO5U3MGnjSBw3MmTb7J7E3aL20JnN3i0Expvxdhn8oo5+0ZR2eyworh\nhYNsFSVdTJGnRZtyDQWBR2B3FFp0GXZKG0si0BYJwMYQtbvyHRhHeBZx/8q9u5a/\ntQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 4, + posts: 17, + comments: 6, + communities: 1, + users_active_day: 0, + users_active_week: 0, + users_active_month: 2, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "seahorseohio", + display_name: null, + avatar: null, + banned: false, + published: "2022-03-25T14:55:35.241069", + updated: "2022-05-05T16:40:24.081180", + actor_id: "https://buckeyestate.social/u/seahorseohio", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://buckeyestate.social/u/seahorseohio/inbox", + shared_inbox_url: "https://buckeyestate.social/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 14, + post_score: 98, + comment_count: 4, + comment_score: 12, + }, + }, + { + person: { + id: 8, + name: "Redpandalovely", + display_name: null, + avatar: null, + banned: false, + published: "2022-03-25T16:20:32.947167", + updated: "2022-04-21T22:43:13.039893", + actor_id: "https://buckeyestate.social/u/Redpandalovely", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://buckeyestate.social/u/Redpandalovely/inbox", + shared_inbox_url: "https://buckeyestate.social/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 7, + person_id: 8, + post_count: 3, + post_score: 9, + comment_count: 2, + comment_score: 4, + }, + }, + ], + online: 1, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["beehaw.org", "lemmy.ml", "midwest.social"], + allowed: null, + blocked: ["wolfballs.com", "exploding-heads.com", "collapse.cat"], + }, + }, }, { domain: "lemmy.schuerz.at", - name: "lemmy.schuerz.at", - description: null, - version: "0.16.3", - icon: null, - online_users: 1, - total_users: 40, - users_active_halfyear: 2, - users_active_month: 1, - open_registrations: false, - linked_instances_count: 16, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "lemmy.schuerz.at", + sidebar: + "Leider haben sich viele Spammer angemeldet, und Lemmy bietet noch keine Möglichkeit, die Registrierung zu regulieren... Daher habe ich jetzt die Registrierung wieder geschlossen. \n\nFür Registrierung bitte um eine Nachricht an mailto:registrierung-lemmy@schuerz.at \n\n![](https://lemmy.schuerz.at/pictrs/image/8Dinj9DGBd.png)\n\nDas ist ein deutsprachiger Lemmy, welcher sich vorerst hauptsächlich mit den Themen Eisenbahn und Modellbahn beschäftigt. \n\nDieses Lemmy ist privat und in meiner Freizeit betrieben. \nWenn du einen Account hier haben möchtest, bitte ich um ein [Email an den Admin](mailto:admin@schuerz.at?subject=Bitte%20um%20Lemmy-Account)\n\n\nEs gibt keine Garantie für den Betrieb oder die Integrität der Daten. \nInhalte die nicht den Regeln entsprechen, werden gelöscht, was auch ohne Vorwarnung geschehen kann. Gleiches kann mit dem Verfasser solcher Inhalte auch geschehen. \n\nErwünschte und unerwünschte Inhalte:\n\nWas bei mir nicht toleriert wird, sind Rassismus, Extremismus, Homophobie, Verschwörungstheorien, Hetze und Diskriminierung gegen und von Menschen aufgrund ihrer Herkunft, Aussehen, Religion, Behinderung oder sonstigem. Wenn du solchen Mist posten möchtest, setz dir eine eigene Instanz auf.\n\nEinzig gegen selbstgewählte Dummheit und Ignoranz darf man sich schon auch einmal auslassen. \n\nEs ist geplant, meine Instanz von der Userzahl eher klein zu halten, was die Themen und Beiträge aber nicht betreffen soll. Meine Instanz dient vorwiegend mir selbst und eventuell Familie und ein paar Freunden und Vereinsmitgliedern als Tor in die föderierte Lemmy-Welt. \n\nSo ein Lemmy ist mit Docker überhaupt [sehr leicht installiert](https://join.lemmy.ml/docs/en/administration/install_docker.html).\n\nIch wünsche viel Vergnügen und spannenden Austausch", + published: "2021-02-18T11:54:33.537402", + updated: "2022-01-19T12:48:35.909816", + enable_downvotes: true, + open_registration: false, + enable_nsfw: true, + icon: null, + banner: null, + description: null, + community_creation_admin_only: true, + require_email_verification: true, + require_application: true, + application_question: + "Ein wenig Geschichte. Vor den Habsburgern gab es eine Zeit ohne Kaiser auf dem Gebiet des Herzogtums Österreich. Wie nannten man das Herrscherhaus, das vor dieser Zeit knapp 200 Jahre hier das Sagen hatte?", + private_instance: false, + actor_id: "https://lemmy.schuerz.at/", + last_refreshed_at: "2022-05-16T03:56:53.648062", + inbox_url: "https://lemmy.schuerz.at/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1Zk35HRDnkfVazWpC1kh\nHU6UUwIp/WqQt4DScEvoBpRylrbFV7+/nMMonBudiuuDDW/2ve/T7glNxfYSJ7Ev\nUS/ZtH2DiFfQXoBz924bIT9Ky4EQ3Oz2hpiMZjqkIUPb4n/meabT0NIaf3+IcdoG\naIn1Utnyj8/mOCj24XLi/93ZuswRw5gU4nUXs4lXxWbUHjLO0nwKJ4YVhky13BzB\nP0XJCGjeKhBowenafjiH/4FMwg3w5upZexqwthR682PbE4THrrt8TGCCRs71i2B2\nvMYomoUUpFT7deLDJmYuGNixaLdu7RFX/FJ7lGqb57Na0p4XUuvUq9RG6sOlw6km\nZQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 40, + posts: 165, + comments: 167, + communities: 12, + users_active_day: 1, + users_active_week: 1, + users_active_month: 1, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "admin", + display_name: null, + avatar: null, + banned: false, + published: "2021-02-18T11:54:33.445687", + updated: "2021-02-18T12:05:13.148290", + actor_id: "https://lemmy.schuerz.at/u/admin", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.schuerz.at/u/admin/inbox", + shared_inbox_url: "https://lemmy.schuerz.at/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 0, + post_score: 0, + comment_count: 0, + comment_score: 0, + }, + }, + { + person: { + id: 3, + name: "jakob", + display_name: "Jakob", + avatar: "https://lemmy.schuerz.at/pictrs/image/p88Fm5NNij.jpg", + banned: false, + published: "2021-02-18T11:55:48.509627", + updated: "2021-04-23T07:22:18.674556", + actor_id: "https://lemmy.schuerz.at/u/jakob", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.schuerz.at/u/jakob/inbox", + shared_inbox_url: "https://lemmy.schuerz.at/inbox", + matrix_user_id: " @jakob:schuerz.at", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 134, + post_score: 320, + comment_count: 157, + comment_score: 248, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "community.xmpp.net", + "ds9.lemmy.ml", + "feddit.de", + "friendica.schuerz.at", + "kino.schuerz.at", + "lemmy.161.social", + "lemmy.glasgow.social", + "lemmy.ml", + "lemmy.perthchat.org", + "libranet.de", + "loma.ml", + "mander.xyz", + "rollenspiel.group", + "soc.schuerz.at", + "sopuli.xyz", + "stammtisch.hallertau.social", + ], + allowed: null, + blocked: ["wolfballs.com", "elgiebety.pl"], + }, + }, }, { - domain: "lemmy.wiredentrypoint.xyz", - name: "Wiredentrypoint", - description: null, - version: "0.16.1", - icon: "https://lemmy.wiredentrypoint.xyz/pictrs/image/826b6251-bf21-41b4-b8f2-7a39a0b09313.png", - online_users: 0, - total_users: 1, - users_active_halfyear: 1, - users_active_month: 1, - open_registrations: false, - linked_instances_count: 4, - require_application: false, + domain: "lemmy.otakufarms.com", + site_info: { + site_view: { + site: { + id: 1, + name: "Otaku Farms", + sidebar: + "The current Fediverse instances that makeup the entirety of Otaku Farms.\n\n- Pleroma instance can be found [here](https://otakufarms.com).\n- Peertube instance can be found [here](https://peertube.otakufarms.com).\n- Plume instance can be found [here](https://plume.otakufarms.com).", + published: "2021-11-28T03:07:28.577878", + updated: "2022-05-02T07:57:34.417167", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.otakufarms.com/pictrs/image/ekmeJ0BD8S.png", + banner: + "https://lemmy.otakufarms.com/pictrs/image/PNzQohs55g.jpg", + description: + "Otaku Farms is a network of Fediverse instances created for the sole purpose of letting individuals express themselves.", + community_creation_admin_only: false, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.otakufarms.com/", + last_refreshed_at: "2022-05-02T07:52:34.300300", + inbox_url: "https://lemmy.otakufarms.com/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA7bXiMp2/d+xgwekYjbgX\n+H+4k6ZaMlJ0lJnASSEvvGlnVXeipFyYmw30fVThFwRF53wGhnr+qO2htL0QsslE\n8oyytdl2De20JjJdGEw65uvX14QZ7EjsIzbDAcCNOj3l0hTpm2BST655Lsn5syFK\nu6qfjz1SM+3jIxEaLUtb6rvkhnkdbrRWu4zztFNW0OianjtKVbBYqcKRRmoUlz1+\nTt4UZnAYe3KDmbpnqp3jee2UyVz62xiBm5Gy/TtrWy0bdxKEj49+IP9Dhid4gGVu\nd8k/hCinjOIgUFwKT48ZVTF9nJVjiWDiQ6k7HUwiWWDYoOIU1cw+ElW38Uzqs42d\nVQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly", + }, + counts: { + id: 1, + site_id: 1, + users: 4, + posts: 18, + comments: 1, + communities: 8, + users_active_day: 1, + users_active_week: 1, + users_active_month: 1, + users_active_half_year: 4, + }, + }, + admins: [ + { + person: { + id: 2, + name: "auraman", + display_name: "Elijah the Auraman", + avatar: + "https://lemmy.otakufarms.com/pictrs/image/LHd9FQEEZH.jpg", + banned: false, + published: "2021-11-28T03:07:27.876781", + updated: "2022-02-24T07:14:28.579101", + actor_id: "https://lemmy.otakufarms.com/u/auraman", + bio: "CEO and Founder of Otaku Farms.\nJust your average manga and comic book reviewer.", + local: true, + banner: + "https://lemmy.otakufarms.com/pictrs/image/IWBM0aAA3f.jpg", + deleted: false, + inbox_url: "https://lemmy.otakufarms.com/u/auraman/inbox", + shared_inbox_url: "https://lemmy.otakufarms.com/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1, + post_score: 1, + comment_count: 1, + comment_score: 1, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "gtio.io", + "lemmy.ml", + "lemmy.otakufarms.com", + "lm.korako.me", + "wolfballs.com", + ], + allowed: null, + blocked: null, + }, + }, }, { - domain: "lemmy.mesh.party", - name: "Mesh.Party", - description: "A Lemmy instance for mesh network denizens.", - version: "0.16.3", - icon: "https://lemmy.mesh.party/pictrs/image/3653fdce-1fdc-4514-aceb-38c6ba29006c.png", - online_users: 1, - total_users: 9, - users_active_halfyear: 2, - users_active_month: 1, - open_registrations: true, - linked_instances_count: 5, - require_application: false, + domain: "foro.markoop.org", + site_info: { + site_view: { + site: { + id: 1, + name: "Foro de Markoop", + sidebar: + "Markoop es un proyecto estratégico de **cultura libre** para una digitalización cualitativa en entornos cooperativos. \n\nA través de Markoop, exploramos, creamos e implementamos herramientas y contenidos basados en software y licencias libres para poner en valor la cultura libre y prácticas para tejer redes sociales en una economía más humana, sostenible y cooperativa alentando la reflexión, soberanía y madurez digital.\n\nSi quieres unirte seguro que tienes algo que aportar, échale un vistazo al manifiesto y netiqueta.\n\n\n", + published: "2022-05-08T18:49:54.346218", + updated: "2022-05-09T12:42:16.621895", + enable_downvotes: false, + open_registration: true, + enable_nsfw: false, + icon: "https://foro.markoop.org/pictrs/image/528d7d7d-43ef-4ccc-b256-8a49b7d436a5.png", + banner: + "https://foro.markoop.org/pictrs/image/6b99e57d-d130-4fa2-907e-6f5104c486cd.png", + description: "Un océano de redes en cooperación", + community_creation_admin_only: true, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://foro.markoop.org/", + last_refreshed_at: "2022-05-09T14:00:26.223866", + inbox_url: "https://foro.markoop.org/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApKlh+5xEYsCIb2x1hPzW\nU7Gd0+FMxZW/Lr2dQ9dSPSCMd25rsc7APylXtkB+l7/jfPRXp6Nub4gJ6ye1AfN6\n/E2HqsT3ou3HF/O6jX1oOSGIWQazubXxA0e6jV79TJs+hnyTqMvx9XJWz0pigCN1\nflKQIPsf+relseIpPmCJYiU+G8tPpgamlRN8yNthYiEHrVtP7M6hpfOH2idPFHq5\nncdTKTD3cvELSIIPiU+dIdT7MgJd5IPIfHoRUZXz+VsdyqhB4riqYa913z0X/Q51\nuYUE/X/WXCmXVTi37KwZjHnDOTscrALAYcAM5KKyH29QgO8qg+SmQAwwhF8gjUTF\n2wIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "minty", + }, + counts: { + id: 1, + site_id: 1, + users: 1, + posts: 2, + comments: 0, + communities: 5, + users_active_day: 1, + users_active_week: 1, + users_active_month: 1, + users_active_half_year: 1, + }, + }, + admins: [ + { + person: { + id: 2, + name: "admin", + display_name: null, + avatar: null, + banned: false, + published: "2022-05-08T18:49:53.483122", + updated: null, + actor_id: "https://mydomain.ml/u/admin", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://mydomain.ml/u/admin/inbox", + shared_inbox_url: "https://mydomain.ml/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 2, + post_score: 2, + comment_count: 0, + comment_score: 0, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: null, + }, + }, + { + domain: "fuckreddit.tryp.digital", + site_info: { + site_view: { + site: { + id: 1, + name: "TRYP", + sidebar: null, + published: "2022-04-01T17:14:11.255355", + updated: "2022-04-24T11:15:41.419446", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://fuckreddit.tryp.digital/pictrs/image/52dc0c6c-71a4-40f9-a326-b51d54c95173.png", + banner: + "https://fuckreddit.tryp.digital/pictrs/image/1c8a890a-b39a-4d8b-b7a8-b66299e93a69.jpeg", + description: "Now 50% Prod!", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: "# Why here?", + private_instance: false, + actor_id: "https://fuckreddit.tryp.digital/", + last_refreshed_at: "2022-05-14T01:01:03.316123", + inbox_url: "https://fuckreddit.tryp.digital/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0V7eVj3VfjcdBPpeH183\ngZ+E7OD/rnUiJlJZfRrIltuuJmP3hVKiOy67f1xpR6Qggu7/9fzwqMOVEIEK7RRM\nB4SAvImm0oIP3bK4R7cn20XFT0ASPyBH9CwvBIYSREFWcSjFkWrQ539AvBUivsWo\n0dEdba2BBT+qECarf5l5dSJ6YaaUOlj4DguLDLw6cA76fl5tgMlWmB8+vLOz3h4u\n1VVuRZI7kvr+brkV2LH5dpYX7Wk63a+Xf1UPL2+DhVCtGKyoD+cYq0KA/L2HQFV9\nR1mpZziK9gE+DtcIBtmKh0FurrvJN6QlrCUhAp+sHg2mF6VF52T4R2ShAjE+oJjC\niwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly", + }, + counts: { + id: 1, + site_id: 1, + users: 6, + posts: 12, + comments: 70, + communities: 3, + users_active_day: 0, + users_active_week: 1, + users_active_month: 1, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "Tryp", + display_name: "Tryp", + avatar: + "https://fuckreddit.tryp.digital/pictrs/image/8191774c-0521-4be5-a04e-70a1d958ddcc.png", + banned: false, + published: "2022-04-01T17:10:16.494997", + updated: "2022-04-24T11:17:26.761802", + actor_id: "https://fuckreddit.tryp.digital/u/Tryp", + bio: "DMTryptaminesX from Reddit. \n\n[Join The Garden ](https://discord.gg/srrH8BBMWK) for reviews on popular botanical vendors. ", + local: true, + banner: + "https://fuckreddit.tryp.digital/pictrs/image/fe595752-6d17-43d7-ae26-85b0950a7d0c.jpeg", + deleted: false, + inbox_url: "https://fuckreddit.tryp.digital/u/Tryp/inbox", + shared_inbox_url: "https://fuckreddit.tryp.digital/inbox", + matrix_user_id: "@dmtryptamines:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 11, + post_score: 43, + comment_count: 67, + comment_score: 178, + }, + }, + ], + online: 4, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "beehaw.org", + "buckeyestate.social", + "feddit.de", + "gtio.io", + "heapoverflow.ml", + "lemmy.ca", + "lemmy.mesh.party", + "lemmy.ml", + "lemmy.perthchat.org", + "mander.xyz", + "midwest.social", + "slrpnk.net", + "sopuli.xyz", + "verity.fail", + ], + allowed: null, + blocked: [], + }, + }, + }, + { + domain: "heapoverflow.ml", + site_info: { + site_view: { + site: { + id: 1, + name: "Heap Overflow", + sidebar: + "[General programming discussion](https://lemmy.ml/c/programming), \n[Additional resources](https://heapoverflow.ml/c/learn_programming@lemmy.ml), [challenges](https://projecteuler.net/archives)\n\nTo post or comment:\n1. Create an account on [another lemmy instance](https://join-lemmy.org/instances) \n2. Then search for the community url like [here](https://lemmy.ml/search/q/https%3A%2F%2Fheapoverflow.ml%2Fc%2Fpython/type/All/sort/TopAll/listing_type/All/community_id/0/creator_id/0/page/1)\n\n\n**RULES:**\n1. No politics\n2. No flaming / trolling\n3. No proprietary BS\n4. Stay on topic\n\nPlease keep questions & examples short! \n\nAll content is **[Public Domain](https://unlicense.org/)** unless otherwise specified. \nOnly [CC0](https://creativecommons.org/publicdomain/zero/1.0/legalcode), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/), or [CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/) alternate licenses are allowed.\n\nNo affiliation with StackOverflow.com", + published: "2022-01-21T18:50:07.074200", + updated: "2022-05-06T20:44:47.693536", + enable_downvotes: true, + open_registration: true, + enable_nsfw: false, + icon: "https://heapoverflow.ml/pictrs/image/f910bf1c-215b-47c0-a9ff-d65f483c02a3.png", + banner: null, + description: + "A place to ask programming questions and share free resources", + community_creation_admin_only: true, + require_email_verification: false, + require_application: true, + application_question: + "You don't need an account here to participate! \nI suggest joining [lemmy.ml](https://lemmy.ml) but if you want an account here, that's cool too. \nTo combat spam, just briefly tell me what your favorite languages are and maybe link your git repos =]", + private_instance: false, + actor_id: "https://heapoverflow.ml/", + last_refreshed_at: "2022-04-14T20:37:15.207808", + inbox_url: "https://heapoverflow.ml/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA49o/7I00UxbL6HWZtL4G\nrfdgMJAOL0CYOI4LLNTRc9utTcursPwJGe3GOwOgwBCq7zFkx7x6dHQ1JmjdTxLh\nuh7+gEFeY3c1sFLqgj8lTQJIemvTINOvh3zWZRBT/9FRLyojgfV2ytn/AWpanWHB\nxGJPShMGPOjHokiIVgMdqKB6OXttzVpTJx91ERLTtJsixrDRYwPdiaSlj3nbvPsr\ngFJ/TDobjeqBLyY8ujVMq2V62f/L9Wj/KMgVNXgqjQXHQxUjK+/P2LNrmjxZdhDs\nw1zcBK1Dg6uL0HM9sBRuVTIUCN8/uLUaZiNYiaKSzjbHGz/Tlout6Fr2v2YWehNh\nawIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly-mono", + }, + counts: { + id: 1, + site_id: 1, + users: 11, + posts: 0, + comments: 26, + communities: 16, + users_active_day: 0, + users_active_week: 1, + users_active_month: 1, + users_active_half_year: 1, + }, + }, + admins: [ + { + person: { + id: 2, + name: "thann", + display_name: null, + avatar: + "https://heapoverflow.ml/pictrs/image/ba342abb-4ed8-403c-9139-387d1b91fa83.jpeg", + banned: false, + published: "2022-01-21T18:50:06.448286", + updated: "2022-04-14T23:01:38.496786", + actor_id: "https://heapoverflow.ml/u/thann", + bio: "https://lemmy.ml/u/Thann \nhttps://gitlab.com/thann \nhttps://github.com/thann ", + local: true, + banner: null, + deleted: false, + inbox_url: "https://heapoverflow.ml/u/thann/inbox", + shared_inbox_url: "https://heapoverflow.ml/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 0, + post_score: 0, + comment_count: 26, + comment_score: 50, + }, + }, + ], + online: 1, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["feddit.de", "heapoverflow.ml", "lemmy.ml"], + allowed: null, + blocked: null, + }, + }, + }, + { + domain: "lemmy.rimkus.it", + site_info: { + site_view: { + site: { + id: 1, + name: "rimkus-corner", + sidebar: null, + published: "2022-04-23T10:53:28.240014", + updated: "2022-04-25T13:40:05.749191", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.rimkus.it/pictrs/image/c9cb6ec8-9809-46ae-b75c-5ee023aa19ce.jpeg", + banner: null, + description: "Fediverse for the Rimkus Clan", + community_creation_admin_only: false, + require_email_verification: true, + require_application: true, + application_question: + "To join this server, you need to fill out this application, and wait to be accepted.", + private_instance: false, + actor_id: "https://lemmy.rimkus.it/", + last_refreshed_at: "2022-05-15T05:02:47.462847", + inbox_url: "https://lemmy.rimkus.it/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAurSBxAtPutAe08Yay2UF\nzcznTV4tiIgsp/GB1GlRUk7HpKhzoZboJQKGrg2X+YFk5OdwMgXIXp5tEZh55UFx\nPH68ynfLEgE6g0qB2fdOQ4NSWsxFKAWIqkPLT2Kfp/2VcYxKAh8FmjVL/bOvktwZ\nIKD/7I7Vlwybd4LhFV+qNjuAWMAwqt1sKQZ6PtuOHf2K4mAbe3Mzl4sBq71OlE3z\naMwShpYZHdSgR4/4cUSRT9o4vdYoknnBR5Af86PrRQ+Kt1IYTocWCgeqaxmX5hbO\nzrlxN/moJm9/XtPLxsGl1HCwijb6PBIXkONUkgR+LA8R3GWsF3E4+Z39+f2FTNI8\nfQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 2, + posts: 9, + comments: 7, + communities: 1, + users_active_day: 0, + users_active_week: 1, + users_active_month: 1, + users_active_half_year: 1, + }, + }, + admins: [ + { + person: { + id: 2, + name: "lemadmin", + display_name: null, + avatar: null, + banned: false, + published: "2022-04-23T10:53:27.116727", + updated: "2022-04-24T07:57:05.222955", + actor_id: "https://lemmy.rimkus.it/u/lemadmin", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.rimkus.it/u/lemadmin/inbox", + shared_inbox_url: "https://lemmy.rimkus.it/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 0, + post_score: 0, + comment_count: 0, + comment_score: 0, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "community.xmpp.net", + "feddit.de", + "lemmy.ml", + "lemmy.rollenspiel.monster", + ], + allowed: null, + blocked: [ + "legbeard.xyz", + "wolfballs.com", + "lemmy.services.coupou.fr", + "lemmy.glasgow.social", + "narwhal.city", + "lotide.fbxl.net", + "a.tide.tk", + "b.tide.tk", + "c.tide.tk", + "dev.narwhal.city", + "mandacaru.caatinga.digital", + "lemmy.juggler.jp", + "exploding-heads.com", + "collapse.cat", + "elgiebety.pl", + "lemmy.tedomum.net", + "lemmy.mesh.party", + "wiredentrypoint.xyz", + "verity.fail", + ], + }, + }, }, { domain: "lemmy.shrieker.net", - name: "美食レミー", - description: null, - version: "0.16.3", - icon: null, - online_users: 0, - total_users: 2, - users_active_halfyear: 1, - users_active_month: 1, - open_registrations: false, - linked_instances_count: 0, - require_application: false, + site_info: { + site_view: { + site: { + id: 1, + name: "美食レミー", + sidebar: null, + published: "2021-12-08T07:05:57.214388", + updated: "2021-12-09T20:19:48.864788", + enable_downvotes: true, + open_registration: false, + enable_nsfw: true, + icon: null, + banner: null, + description: null, + community_creation_admin_only: true, + require_email_verification: false, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.shrieker.net/", + last_refreshed_at: "2022-05-13T07:21:38.792130", + inbox_url: "https://lemmy.shrieker.net/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqKFx+n6CHEdP5X5LzxPb\nBWniHYCqd9UKgclZqEYPp4211PbcKocAsl09hwyoKu4yfFgdocyL0mCYZrPig387\n5TQ2l9r6onb7XcE/XZZcZ1dniv7AxIbrT6LmMm+e4hQKLssmjDfse/XNCJeH6d8I\nSacP/ZFvVaM+hUhjUCgEqYxIcy751aDsZLKeKy98e7NqzWPVFuYPDzSjLhnwhVaF\nsD6oV8LdEFX0RFivNLfdN+qVgxXfiw04LYBRf7Mbv02UqCKHEwdyelkOLoEkasQE\n1yp0Rnw+kCfXMHT5bqiOwrNoBMyFuX0f+CZVsX5qAEQogy5PSMtA3WBRQO94e4Sj\nDwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 2, + posts: 1604, + comments: 0, + communities: 2, + users_active_day: 1, + users_active_week: 1, + users_active_month: 1, + users_active_half_year: 1, + }, + }, + admins: [ + { + person: { + id: 2, + name: "lemmy", + display_name: null, + avatar: null, + banned: false, + published: "2021-12-08T07:05:56.239791", + updated: null, + actor_id: "https://dev18.b-shock.local/u/lemmy", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://dev18.b-shock.local/u/lemmy/inbox", + shared_inbox_url: "https://dev18.b-shock.local/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 0, + post_score: 0, + comment_count: 0, + comment_score: 0, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: null, + }, }, { - domain: "lem.ph3j.com", - name: "lem.ph3j.com", - description: null, - version: "0.16.3", - icon: null, - online_users: 0, - total_users: 1, - users_active_halfyear: 0, - users_active_month: 0, - open_registrations: false, - linked_instances_count: 7, - require_application: false, + domain: "lemmy.mesh.party", + site_info: { + site_view: { + site: { + id: 1, + name: "Mesh.Party", + sidebar: + 'This lemmy instance is accessible via clearnet and Yggdrasil (though it currently requires clearnet DNS).\n\nFeel free to create communities centered around mesh/decentralized/tech/selfhosting/mesh-hosting, or simply use this instance to access the lemmyverse from Yggdrasil.\n\n#### Rules\n1. No bigotry, racism, sexism, ableism, homophobia, or xenophobia\n2. No sexually explicit content, use NSFW for anything else not ~"kid friendly"\n3. No botting/spamming\n4. Typical forum etiquette applies, be respectful, etc.\n\n#### Licenses\n* Logo from Twemoji', + published: "2022-01-09T20:49:02.104493", + updated: "2022-01-27T03:27:57.757483", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.mesh.party/pictrs/image/3653fdce-1fdc-4514-aceb-38c6ba29006c.png", + banner: null, + description: "A Lemmy instance for mesh network denizens.", + community_creation_admin_only: false, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.mesh.party/", + last_refreshed_at: "2022-04-26T01:15:36.314262", + inbox_url: "https://lemmy.mesh.party/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQgbNKLrVXWqhHkiAEwj\n6/xvZXKfuVqpdTfrbHGutZfpyP/XOpkt3eUv+kpfaZBBriPXQPuqsB5WVOLd7IaO\nUSupZEqOvI7vNKlJ+iolRpK/EvAa6JQNW3gKDVfqiK8WH5B4GTZ4KYiRmjSAD5TB\nZjoFGfF7lHcuUWRIde3h8I25xASj7yAzqTAQBrHTq/A7ZQvAetVwsw0kfzuB0Jba\nRwnRn8je4uf+x7ZHWTcgwnPcOcyopMeSWwuiEB3hrwihxKAG5DEPiTi0NW4ymigB\nd6tIyzqtQu0LhDmJNmNH7C/9xCxsZUCdcFBzZfXVdzVQIfalU4juiSnX8IYFch2/\nwwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 9, + posts: 8, + comments: 14, + communities: 2, + users_active_day: 0, + users_active_week: 0, + users_active_month: 1, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "admin", + display_name: null, + avatar: null, + banned: false, + published: "2022-01-09T20:49:01.408649", + updated: null, + actor_id: "https://lemmy.mesh.party/u/admin", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.mesh.party/u/admin/inbox", + shared_inbox_url: "https://lemmy.mesh.party/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1, + post_score: 1, + comment_count: 0, + comment_score: 0, + }, + }, + { + person: { + id: 3, + name: "Stephen304", + display_name: null, + avatar: null, + banned: false, + published: "2022-01-10T00:11:38.382067", + updated: "2022-01-14T22:55:59.338334", + actor_id: "https://lemmy.mesh.party/u/Stephen304", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.mesh.party/u/Stephen304/inbox", + shared_inbox_url: "https://lemmy.mesh.party/inbox", + matrix_user_id: "@Stephen304:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 7, + post_score: 28, + comment_count: 14, + comment_score: 22, + }, + }, + ], + online: 1, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "f.freinetz.ch", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmygrad.ml", + "midwest.social", + ], + allowed: null, + blocked: ["legbeard.xyz", "wolfballs.com"], + }, + }, + }, + { + domain: "Heapoverflow.ml", + site_info: { + site_view: { + site: { + id: 1, + name: "Heap Overflow", + sidebar: + "[General programming discussion](https://lemmy.ml/c/programming), \n[Additional resources](https://heapoverflow.ml/c/learn_programming@lemmy.ml), [challenges](https://projecteuler.net/archives)\n\nTo post or comment:\n1. Create an account on [another lemmy instance](https://join-lemmy.org/instances) \n2. Then search for the community url like [here](https://lemmy.ml/search/q/https%3A%2F%2Fheapoverflow.ml%2Fc%2Fpython/type/All/sort/TopAll/listing_type/All/community_id/0/creator_id/0/page/1)\n\n\n**RULES:**\n1. No politics\n2. No flaming / trolling\n3. No proprietary BS\n4. Stay on topic\n\nPlease keep questions & examples short! \n\nAll content is **[Public Domain](https://unlicense.org/)** unless otherwise specified. \nOnly [CC0](https://creativecommons.org/publicdomain/zero/1.0/legalcode), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/), or [CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/) alternate licenses are allowed.\n\nNo affiliation with StackOverflow.com", + published: "2022-01-21T18:50:07.074200", + updated: "2022-05-06T20:44:47.693536", + enable_downvotes: true, + open_registration: true, + enable_nsfw: false, + icon: "https://heapoverflow.ml/pictrs/image/f910bf1c-215b-47c0-a9ff-d65f483c02a3.png", + banner: null, + description: + "A place to ask programming questions and share free resources", + community_creation_admin_only: true, + require_email_verification: false, + require_application: true, + application_question: + "You don't need an account here to participate! \nI suggest joining [lemmy.ml](https://lemmy.ml) but if you want an account here, that's cool too. \nTo combat spam, just briefly tell me what your favorite languages are and maybe link your git repos =]", + private_instance: false, + actor_id: "https://heapoverflow.ml/", + last_refreshed_at: "2022-04-14T20:37:15.207808", + inbox_url: "https://heapoverflow.ml/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA49o/7I00UxbL6HWZtL4G\nrfdgMJAOL0CYOI4LLNTRc9utTcursPwJGe3GOwOgwBCq7zFkx7x6dHQ1JmjdTxLh\nuh7+gEFeY3c1sFLqgj8lTQJIemvTINOvh3zWZRBT/9FRLyojgfV2ytn/AWpanWHB\nxGJPShMGPOjHokiIVgMdqKB6OXttzVpTJx91ERLTtJsixrDRYwPdiaSlj3nbvPsr\ngFJ/TDobjeqBLyY8ujVMq2V62f/L9Wj/KMgVNXgqjQXHQxUjK+/P2LNrmjxZdhDs\nw1zcBK1Dg6uL0HM9sBRuVTIUCN8/uLUaZiNYiaKSzjbHGz/Tlout6Fr2v2YWehNh\nawIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly-mono", + }, + counts: { + id: 1, + site_id: 1, + users: 11, + posts: 0, + comments: 26, + communities: 16, + users_active_day: 0, + users_active_week: 1, + users_active_month: 1, + users_active_half_year: 1, + }, + }, + admins: [ + { + person: { + id: 2, + name: "thann", + display_name: null, + avatar: + "https://heapoverflow.ml/pictrs/image/ba342abb-4ed8-403c-9139-387d1b91fa83.jpeg", + banned: false, + published: "2022-01-21T18:50:06.448286", + updated: "2022-04-14T23:01:38.496786", + actor_id: "https://heapoverflow.ml/u/thann", + bio: "https://lemmy.ml/u/Thann \nhttps://gitlab.com/thann \nhttps://github.com/thann ", + local: true, + banner: null, + deleted: false, + inbox_url: "https://heapoverflow.ml/u/thann/inbox", + shared_inbox_url: "https://heapoverflow.ml/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 0, + post_score: 0, + comment_count: 26, + comment_score: 50, + }, + }, + ], + online: 1, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["feddit.de", "heapoverflow.ml", "lemmy.ml"], + allowed: null, + blocked: null, + }, + }, + }, + { + domain: "lemmy.wiredentrypoint.xyz", + site_info: { + site_view: { + site: { + id: 1, + name: "Wiredentrypoint", + sidebar: null, + published: "2022-03-25T13:36:10.127624", + updated: "2022-03-25T16:17:47.720022", + enable_downvotes: true, + open_registration: false, + enable_nsfw: true, + icon: "https://lemmy.wiredentrypoint.xyz/pictrs/image/826b6251-bf21-41b4-b8f2-7a39a0b09313.png", + banner: null, + description: null, + community_creation_admin_only: true, + require_email_verification: false, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.wiredentrypoint.xyz/", + last_refreshed_at: "2022-03-25T14:20:54.034816", + inbox_url: "https://lemmy.wiredentrypoint.xyz/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4qyJS70Kw/sspYmb9YSs\nx/k/BeYiBYrAX4QKj7pyjoyIUbqt0glDx3+R7y3OrNrVsAXjDLGYjHOpzxKZafDO\n9ZUa3vdi879px247tPiSQw7FgQrHMtVD0A7NGLeA02QLtKInZN9cMU7K2nO0YqFe\nKjkCb3vBHkd30TYPE/J4Zq3m0ZYmu5+I+EOXSIo+fhvHWZmjp9GS1ChS+4blF1je\n2LWMSuCJUHbhgKU7UqD82AI18ZPVmfQRVdqOaWngLUW6zgSQz2b5F3+aiySdsv/9\nRjjYT4miPRULGX7EmRZ8jVMZ+rO6uRxMb76G5NwvQaltxqPF30jcYbmiRUE2yyy+\nDQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly", + }, + counts: { + id: 1, + site_id: 1, + users: 1, + posts: 5, + comments: 24, + communities: 0, + users_active_day: 0, + users_active_week: 0, + users_active_month: 1, + users_active_half_year: 1, + }, + }, + admins: [ + { + person: { + id: 2, + name: "axeltherabbit", + display_name: null, + avatar: + "https://lemmy.wiredentrypoint.xyz/pictrs/image/b6c79296-ac29-4679-a324-373eea8852a1.jpeg", + banned: false, + published: "2022-03-25T13:35:29.536095", + updated: "2022-03-25T13:39:23.050948", + actor_id: "https://lemmy.wiredentrypoint.xyz/u/axeltherabbit", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: + "https://lemmy.wiredentrypoint.xyz/u/axeltherabbit/inbox", + shared_inbox_url: "https://lemmy.wiredentrypoint.xyz/inbox", + matrix_user_id: "@axel:wiredentrypoint.xyz", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 5, + post_score: 30, + comment_count: 24, + comment_score: 47, + }, + }, + ], + online: 0, + version: "0.16.1", + my_user: null, + federated_instances: { + linked: [ + "ds9.lemmy.ml", + "feddit.de", + "lemmy.ml", + "lemmy.wiredentrypoint.xyz", + ], + allowed: null, + blocked: null, + }, + }, + }, + { + domain: "lemmy.fediverse.jp", + site_info: { + site_view: { + site: { + id: 1, + name: "Fediverse.jp: Lemmy", + sidebar: null, + published: "2022-04-14T16:58:34.040562", + updated: "2022-04-19T23:49:44.568206", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: null, + banner: null, + description: null, + community_creation_admin_only: true, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.fediverse.jp/", + last_refreshed_at: "2022-05-16T11:05:13.335338", + inbox_url: "https://lemmy.fediverse.jp/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuqBz7aD19QqcI27b9tiZ\n6ydYf59rDemzobCLQzM+dJvfWfywkFMSGoAhemxDlftTTquQXIrvg1PNSDJRkwNB\nG9X65+AxDaPi0+ZJhiXR5MIuK9uTb92gJZaPSLbqpd7zpvJzv+JEaPfEtF076qHb\ncV5m3ZHLWmu48OjMQrhlVrLu5o6bjAmcGlbvPddsyapO84n+zmq5/hbn0LCHeYw+\nJ45dfviZNJjmcDQKRnApoCIIuTDjyFHk0UNPrWEOMhKBa77VT0wncxm8Tb9BkXY2\nbwa8PwZO+idrT5SKkpBhjAElFAtC3+9qT+f4Kj7xqZXCpskjW1z3DilpGF7VDD9w\nJQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 2, + posts: 1, + comments: 0, + communities: 2, + users_active_day: 0, + users_active_week: 0, + users_active_month: 1, + users_active_half_year: 1, + }, + }, + admins: [ + { + person: { + id: 2, + name: "admin", + display_name: null, + avatar: null, + banned: false, + published: "2022-04-14T16:58:33.455080", + updated: null, + actor_id: "https://lemmy.fediverse.jp/u/admin", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.fediverse.jp/u/admin/inbox", + shared_inbox_url: "https://lemmy.fediverse.jp/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1, + post_score: 3, + comment_count: 0, + comment_score: 0, + }, + }, + ], + online: 1, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["lemmy.fediverse.jp"], + allowed: null, + blocked: null, + }, + }, }, { domain: "verity.fail", - name: "Verity Fail", - description: null, - version: "0.16.0", - icon: null, - online_users: 0, - total_users: 19, - users_active_halfyear: 8, - users_active_month: 0, - open_registrations: true, - linked_instances_count: 45, - require_application: true, + site_info: { + site_view: { + site: { + id: 1, + name: "Verity Fail", + sidebar: null, + published: "2021-04-17T18:52:18.860875", + updated: "2022-02-18T23:14:45.276111", + enable_downvotes: true, + open_registration: true, + enable_nsfw: false, + icon: null, + banner: null, + description: null, + community_creation_admin_only: true, + require_email_verification: true, + require_application: true, + application_question: null, + private_instance: false, + actor_id: "https://verity.fail/", + last_refreshed_at: "2022-05-08T21:03:43.328814", + inbox_url: "https://verity.fail/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAywdH8PSioJciCLx+tRWd\nx7qP/GrsoN73+DPP0N1nhVFBibKn+hRyrZ+D7Ev7wtgkgayCM06uoXVJv/tUtfU7\nme76W0+KqSOh9dOCqyGt5E/vEwZfeyRZ/Ks8utULk5Ky52tNF0Q5eFYW2xsVs4Hf\nVfUXo3bpp07/Uc8cccxZs9zZzjmu1DVVlID5xNxcwESO052DKxe+92v3wP0jFhQR\nX6dI8ekGm5ieivrEmqmozgSW9AF+oIkRSatyqTtrDWZXLV6c+rRqDyCLHXqxePGB\nGLay7miUJSet+hDYGhGPp0gUbxOmL8nxXq+OZbk3rMdka1A8WpWuw+BWs8uEOLy3\nKwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 19, + posts: 49, + comments: 3, + communities: 2, + users_active_day: 0, + users_active_week: 0, + users_active_month: 0, + users_active_half_year: 8, + }, + }, + admins: [ + { + person: { + id: 2, + name: "lambert", + display_name: null, + avatar: null, + banned: false, + published: "2021-04-17T18:52:18.474374", + updated: "2021-04-28T09:12:07.977390", + actor_id: "https://verity.fail/u/lambert", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://verity.fail/u/lambert/inbox", + shared_inbox_url: "https://verity.fail/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 2, + post_score: 0, + comment_count: 3, + comment_score: 3, + }, + }, + ], + online: 0, + version: "0.16.0", + my_user: null, + federated_instances: { + linked: [ + "anonsys.net", + "baraza.africa", + "beehaw.org", + "collapse.cat", + "ds9.lemmy.ml", + "enterprise.lemmy.ml", + "eope.xyz", + "f.freinetz.ch", + "fapsi.be", + "feddit.de", + "forum.nogafam.es", + "forum.purplerabbit.xyz", + "framatube.org", + "friendica.utzer.de", + "h3h3.club", + "heapoverflow.ml", + "kallutatud.info", + "lemmy.161.social", + "lemmy.2labz.com", + "lemmy.ca", + "lemmy.cat", + "lemmy.eus", + "lemmy.fediverse.town", + "lemmy.jdelcampo.eu", + "lemmy.lohn.in", + "lemmy.mesh.party", + "lemmy.ml", + "lemmy.odat.xyz", + "lemmy.odium.pro", + "lemmy.pt", + "lemmy.schuerz.at", + "lemmy.tmpod.dev", + "lemmygrad.ml", + "libranet.de", + "mandacaru.caatinga.digital", + "mander.xyz", + "mentano.org", + "meowrr.com", + "midwest.social", + "purplerabbit.xyz", + "sopuli.xyz", + "stammtisch.hallertau.social", + "szmer.info", + "tilvids.com", + "vote.casually.cat", + ], + allowed: [ + "anonsys.net", + "baraza.africa", + "beehaw.org", + "collapse.cat", + "ds9.lemmy.ml", + "enterprise.lemmy.ml", + "eope.xyz", + "f.freinetz.ch", + "fapsi.be", + "feddit.de", + "forum.nogafam.es", + "forum.purplerabbit.xyz", + "framatube.org", + "friendica.utzer.de", + "h3h3.club", + "heapoverflow.ml", + "kallutatud.info", + "lemmy.161.social", + "lemmy.2labz.com", + "lemmy.ca", + "lemmy.cat", + "lemmy.eus", + "lemmy.fediverse.town", + "lemmy.jdelcampo.eu", + "lemmy.lohn.in", + "lemmy.mesh.party", + "lemmy.odat.xyz", + "lemmy.odium.pro", + "lemmy.pt", + "lemmy.schuerz.at", + "lemmy.tmpod.dev", + "lemmygrad.ml", + "libranet.de", + "mandacaru.caatinga.digital", + "mander.xyz", + "mentano.org", + "meowrr.com", + "midwest.social", + "purplerabbit.xyz", + "sopuli.xyz", + "stammtisch.hallertau.social", + "szmer.info", + "tilvids.com", + "verity.fail", + "vote.casually.cat", + ], + blocked: [ + "legbeard.xyz", + "wolfballs.com", + "lemmy.services.coupou.fr", + "lemmy.glasgow.social", + "narwhal.city", + "lotide.fbxl.net", + "a.tide.tk", + "b.tide.tk", + "c.tide.tk", + ], + }, + }, + }, + { + domain: "lem.ph3j.com", + site_info: { + site_view: { + site: { + id: 1, + name: "lem.ph3j.com", + sidebar: null, + published: "2021-01-07T15:38:18.527692", + updated: "2021-02-23T07:08:56.873799", + enable_downvotes: false, + open_registration: false, + enable_nsfw: false, + icon: null, + banner: null, + description: null, + community_creation_admin_only: false, + require_email_verification: false, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lem.ph3j.com/", + last_refreshed_at: "2022-05-11T10:25:00.051711", + inbox_url: "https://lem.ph3j.com/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwWVlgX3NMHCjZhWphKAf\nZxel6uGWWhWiGf5kXk9qgwQek5jlqeb9d/hDGzsjug3+AorL16OV6HlM0yNXrTGQ\na2+af1+oqDKVltVri6u1kGFDcSzLQ/CtN/Wwxr4Tk2mGQS0NSStyJuA7QcDMoDdO\n9cRh+6rs1M3zbb5eO9GlmsiGbuElmJ009f5h/krKvX50IS58VtGONA792gSk8TQU\njsyq2SUVMHjs20L0qQI9F/hnxBKbdAvDImNQ0mMg06mkO7iZ+pKKR3nkOTPZL2I+\nql1lduXvJa6fq53MW+5DGqWbsqgd38TBGtr037Rn73YaoLiMsPn8P/EOLvMS5GSD\nYQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 1, + posts: 3, + comments: 9, + communities: 1, + users_active_day: 0, + users_active_week: 0, + users_active_month: 0, + users_active_half_year: 0, + }, + }, + admins: [ + { + person: { + id: 2, + name: "sumiyaki", + display_name: "sumiyaki", + avatar: + "https://lem.ph3j.com/pictrs/image/72369c56-dbf0-452c-bf19-40b945e9a39a.jpeg", + banned: false, + published: "2021-01-07T15:38:18.356846", + updated: "2022-04-09T02:20:35.955873", + actor_id: "https://lem.ph3j.com/u/sumiyaki", + bio: "@sumiyaki@plr.ph3j.com", + local: true, + banner: null, + deleted: false, + inbox_url: "https://lem.ph3j.com/u/sumiyaki/inbox", + shared_inbox_url: "https://lem.ph3j.com/inbox", + matrix_user_id: "@smyk:mat.ph3j.com", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 3, + post_score: 4, + comment_count: 9, + comment_score: 10, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "lem.ph3j.com", + "lemmy.0px.io", + "lemmy.cardina1.red", + "lemmy.juggler.jp", + "lemmy.ml", + "lm.korako.me", + "tabinezumi.net", + ], + allowed: null, + blocked: null, + }, + }, }, ], }, diff --git a/update_submodules.sh b/update_submodules.sh index 9dca948..a6ec471 100755 --- a/update_submodules.sh +++ b/update_submodules.sh @@ -11,11 +11,6 @@ git fetch weblate git merge weblate/main git push -popd -pushd ../lemmy-instance-stats -./update.sh -popd - git submodule update --remote git add joinlemmy-translations git add lemmy-translations From 83ff230d1fd6ac63783e0902d908d69f394b2d79 Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Mon, 23 May 2022 12:10:21 +0200 Subject: [PATCH 6/9] Revert "Redesign instance list" This reverts commit 702d1651b6ba57367ae1b4cb9e6f664339668419. --- src/assets/css/main.css | 34 ++---------------- src/shared/components/instances.tsx | 56 ++++++++++++++--------------- 2 files changed, 29 insertions(+), 61 deletions(-) diff --git a/src/assets/css/main.css b/src/assets/css/main.css index 9d5b530..e84e0a3 100644 --- a/src/assets/css/main.css +++ b/src/assets/css/main.css @@ -14,12 +14,6 @@ webkit-box-shadow: unset; box-shadow: unset; border: 1px solid var(--color-darkGrey) !important; - padding: 10px; - margin: 10px 0 10px 0; - height: 100px; - display: flex; - flex-direction: row; - align-items: center; } .stylized { font-family: "CaviarDreams", Fallback, sans-serif; @@ -38,29 +32,11 @@ p { font: 1.2em/1.62 sans-serif; } -.join-icon { - width: 80px; - height: 80px; +.join-banner { + width: 100%; + height: 100px; object-fit: scale-down; } -.join-text { - display: inline-block; - margin: 0 10px 0 10px; - display: flex; - flex-direction: column; - flex: 1; -} -.join-header { - display: flex; - flex-direction: row; -} -.join-title { - margin: 0px; - flex: 1; -} -.join-desc { - font-size: 0.9em; -} .app-banner { width: 100%; height: 300px; @@ -89,7 +65,3 @@ img { margin-top: 7px; background-color: #333; } - -.button-yellow { - background-color: #b5932e !important; -} \ No newline at end of file diff --git a/src/shared/components/instances.tsx b/src/shared/components/instances.tsx index 5fee813..4ff12af 100644 --- a/src/shared/components/instances.tsx +++ b/src/shared/components/instances.tsx @@ -62,46 +62,42 @@ export class Instances extends Component { renderList(header: string, instances: any[]) { return (
- - - -
-

{header}

- - {instances.map(instance => { - const site = instance.site_info.site_view.site; - const counts = instance.site_info.site_view.counts; - return ( -
- -
-
-

{site.name}

+

{header}

+
+ {instances.map(i => ( +
+
+
+

{i.domain}

+

- {numToSI(counts.users_active_month)} {i18n.t("users")} /{" "} + {numToSI(i.users_active_month)} {i18n.t("users")} /{" "} {i18n.t("month")} -

-

{site.description}

+
- {site.require_application ? ( - + +
+ +
+
+

{i.description}

+
- ); - })} + +
+ ))}
); From 1b5d006cea10b534c2255d7ba64a9e4828146172 Mon Sep 17 00:00:00 2001 From: Nutomic Date: Mon, 23 May 2022 19:12:06 +0000 Subject: [PATCH 7/9] Use drone cron for automatic crawl and build (#104) --- .drone.yml | 10 ++++++++++ .gitmodules | 3 +++ crawl.mjs | 2 +- lemmy-stats-crawler | 1 + 4 files changed, 15 insertions(+), 1 deletion(-) create mode 160000 lemmy-stats-crawler diff --git a/.drone.yml b/.drone.yml index 81776dc..57321dc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -29,6 +29,16 @@ steps: commands: - yarn build:dev + - name: run instance crawl + image: node:14-alpine + commands: + # libpq and openssl can probably be removed after lemmy dep is upgraded to 0.16.4+ + - apk add cargo pkgconfig openssl openssl-dev libpq libpq-dev + - yarn crawl + when: + event: + - cron + - name: make release build and push to docker hub image: plugins/docker settings: diff --git a/.gitmodules b/.gitmodules index 4d5221e..aeb7abe 100644 --- a/.gitmodules +++ b/.gitmodules @@ -14,3 +14,6 @@ path = lemmy-js-client url = https://github.com/LemmyNet/lemmy-js-client branch = main +[submodule "lemmy-stats-crawler"] + path = lemmy-stats-crawler + url = https://yerbamate.ml/LemmyNet/lemmy-stats-crawler.git diff --git a/crawl.mjs b/crawl.mjs index 3d5a46a..b3e2680 100644 --- a/crawl.mjs +++ b/crawl.mjs @@ -21,7 +21,7 @@ try { const run = spawn("cargo", ["run", "--", "--start-instances", all_recommended, "--exclude-instances", recommended_instances.exclude], { - cwd: "../lemmy-stats-crawler", + cwd: "lemmy-stats-crawler", encoding : 'utf8' }); let savedOutput = ''; diff --git a/lemmy-stats-crawler b/lemmy-stats-crawler new file mode 160000 index 0000000..d11febc --- /dev/null +++ b/lemmy-stats-crawler @@ -0,0 +1 @@ +Subproject commit d11febc7e80ae7ea37bd57f00163d71e4b48a918 From 2fa8f68cc05673c8f31ddc736d6c5cd865ded420 Mon Sep 17 00:00:00 2001 From: Nutomic Date: Tue, 24 May 2022 13:11:20 +0000 Subject: [PATCH 8/9] Fix drone cron build --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 57321dc..f6fac38 100644 --- a/.drone.yml +++ b/.drone.yml @@ -51,5 +51,5 @@ steps: password: from_secret: docker_password when: - ref: - - refs/tags/* + event: + - cron From a2d4b0713bbff8465accbda5ee1cb6182dff2f22 Mon Sep 17 00:00:00 2001 From: Nutomic Date: Wed, 25 May 2022 16:36:34 +0000 Subject: [PATCH 9/9] Fix instance listing (#107) --- src/shared/components/instances.tsx | 73 +- src/shared/instance_stats.ts | 5817 ++++++++++++++------------- 2 files changed, 2954 insertions(+), 2936 deletions(-) diff --git a/src/shared/components/instances.tsx b/src/shared/components/instances.tsx index 4ff12af..fd42ed5 100644 --- a/src/shared/components/instances.tsx +++ b/src/shared/components/instances.tsx @@ -64,40 +64,49 @@ export class Instances extends Component {

{header}

- {instances.map(i => ( -
-
-
-

{i.domain}

-

- - {numToSI(i.users_active_month)} {i18n.t("users")} /{" "} - {i18n.t("month")} - -

+ {instances.map(instance => { + let domain = instance.domain; + let users_active_month = + instance.site_info.site_view.counts.users_active_month; + let description = instance.site_info.site_view.site.description; + let icon = instance.site_info.site_view.site.icon; + let require_application = + instance.site_info.site_view.site.require_application; + return ( +
+
+
+

{domain}

+

+ + {numToSI(users_active_month)} {i18n.t("users")} /{" "} + {i18n.t("month")} + +

+
+
+
+
-
-
- +
+

{description}

+
-
-

{i.description}

- -
- ))} + ); + })}
); diff --git a/src/shared/instance_stats.ts b/src/shared/instance_stats.ts index 9e8c693..87f7a8e 100644 --- a/src/shared/instance_stats.ts +++ b/src/shared/instance_stats.ts @@ -1,12 +1,12 @@ export const instance_stats = { stats: { crawled_instances: 47, - online_users: 303, - total_users: 27799, - users_active_day: 397, - users_active_week: 757, - users_active_month: 1446, - users_active_halfyear: 4438, + online_users: 274, + total_users: 28080, + users_active_day: 349, + users_active_week: 693, + users_active_month: 1361, + users_active_halfyear: 4341, instance_details: [ { domain: "lemmygrad.ml", @@ -33,24 +33,24 @@ export const instance_stats = { "To combat bigrading, we have restricted user registration on this instance. Please write a short description containing:\n\n* Why you would like to join?\n\n* What left tendency would you call yourself? ( Marxist / Marxist-Leninist, etc)\n\n* What communities you would most like to participate in, and\n\n* How or why you chose the username you did.\n\nWe use these questions to screen for and discourage spammers and trolls. We will try our best to review your application as soon as possible.", private_instance: false, actor_id: "https://lemmygrad.ml/", - last_refreshed_at: "2022-05-07T19:37:05.129908", + last_refreshed_at: "2022-05-17T14:58:30.360092", inbox_url: "https://lemmygrad.ml/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA26sJZUl+p0sJT58a7SMe\nRwbqR9QCV91ObRj/V7kqITXmwEkDWyPAMPMDNbh4Amk2q2CjhuISjy3C/SwJkG4W\npWnr1u5tyMLFvJ8x0W/vpkIbdqWNstE4BzJB4Y/6MaCR5YuxRmEZ6+xCoOA2M5LZ\nPXlXGv2IxO0TSau5o+1i2ARfY86mdR/0iCQzrXvIfsaH0YdQ5MtatVkMk+/RSRZP\nhvI+g4Yv6KEVi5Gf9cplttfF6NYB9wY5CpyfyPis0QzWIEvVI2z9MKoLSQzFadi7\nmswoVzy5pbaESPHcmtllTLy7zeN3vF4Xv1Pd+8DUKK56x54IRnG7DxOL3Tsiwlg1\n1QIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxofbx83PHr0GJlrfvWzu\nHrqJvNZ4BZF1sQ8ihgzxIBP5HGCzsPjsl2s6nKWf6dhh6LyzybSaUeoF9ynCw0co\ncph1+Q8IsceRxlX7Uep+n0G13p+Pfy6USsCgFgYU5LPjeCUH1GTpNPaSl63mL1LA\nCaS5YV3LiVqhyng/0waU8YlaIghe2ctbSZMucNiosbaLFltp4iJDZ0jhu6QMjPfy\nZJKtI8/R8fPpot0R9zNDI/+99xlSLviWh2ZstGg1psMbC+T5lkUvyIYwG1JfDVCY\noyt82wS1Tbl1sedgGBpfYcrjr+uWOsOMKivdkQtYrZYsq29MFPg3GFKYWBljJKZa\nsQIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "litely-red", }, counts: { id: 1, site_id: 1, - users: 6492, - posts: 26424, - comments: 99631, - communities: 428, - users_active_day: 164, - users_active_week: 299, - users_active_month: 550, - users_active_half_year: 1237, + users: 6522, + posts: 27137, + comments: 103862, + communities: 435, + users_active_day: 153, + users_active_week: 284, + users_active_month: 532, + users_active_half_year: 1265, }, }, admins: [ @@ -78,10 +78,10 @@ export const instance_stats = { counts: { id: 1, person_id: 2, - post_count: 3049, - post_score: 40209, - comment_count: 4116, - comment_score: 22457, + post_count: 3082, + post_score: 41396, + comment_count: 4192, + comment_score: 23328, }, }, { @@ -110,10 +110,10 @@ export const instance_stats = { counts: { id: 3, person_id: 4, - post_count: 57, - post_score: 1957, + post_count: 58, + post_score: 2007, comment_count: 74, - comment_score: 924, + comment_score: 926, }, }, { @@ -142,10 +142,10 @@ export const instance_stats = { counts: { id: 5, person_id: 6, - post_count: 326, - post_score: 3008, - comment_count: 1564, - comment_score: 9837, + post_count: 327, + post_score: 3021, + comment_count: 1567, + comment_score: 9903, }, }, { @@ -173,9 +173,9 @@ export const instance_stats = { id: 32, person_id: 36, post_count: 245, - post_score: 2929, - comment_count: 1217, - comment_score: 7144, + post_score: 2936, + comment_count: 1221, + comment_score: 7185, }, }, { @@ -233,9 +233,9 @@ export const instance_stats = { id: 771, person_id: 1007, post_count: 531, - post_score: 4363, + post_score: 4364, comment_count: 734, - comment_score: 3266, + comment_score: 3268, }, }, { @@ -262,10 +262,10 @@ export const instance_stats = { counts: { id: 775, person_id: 1011, - post_count: 332, - post_score: 4837, - comment_count: 653, - comment_score: 3141, + post_count: 333, + post_score: 4855, + comment_count: 659, + comment_score: 3210, }, }, { @@ -293,9 +293,9 @@ export const instance_stats = { id: 856, person_id: 1098, post_count: 126, - post_score: 1752, - comment_count: 1789, - comment_score: 10210, + post_score: 1753, + comment_count: 1818, + comment_score: 10597, }, }, { @@ -304,15 +304,15 @@ export const instance_stats = { name: "Based_grandma69", display_name: "Zoee", avatar: - "https://lemmygrad.ml/pictrs/image/25f23be4-3ec2-4368-9808-7a67bf679179.png", + "https://lemmygrad.ml/pictrs/image/d95a3677-a193-404c-8417-19d366560c17.jpeg", banned: false, published: "2022-01-11T19:09:45.530904", - updated: "2022-04-08T02:55:08.959356", + updated: "2022-05-23T05:17:36.957140", actor_id: "https://lemmygrad.ml/u/Based_grandma69", bio: "Perpetuating the stereotype that I exist", local: true, banner: - "https://lemmygrad.ml/pictrs/image/d962b4f9-0d8e-4b25-9be3-4bb6ae1e6fb8.jpeg", + "https://lemmygrad.ml/pictrs/image/beb26d46-dc75-45a8-ba7a-3b682575fbe2.png", deleted: false, inbox_url: "https://lemmygrad.ml/u/Based_grandma69/inbox", shared_inbox_url: "https://lemmygrad.ml/inbox", @@ -324,15 +324,15 @@ export const instance_stats = { counts: { id: 9158, person_id: 85310, - post_count: 37, - post_score: 1537, - comment_count: 165, - comment_score: 1423, + post_count: 40, + post_score: 1661, + comment_count: 177, + comment_score: 1546, }, }, ], - online: 121, - version: "0.16.3", + online: 107, + version: "0.16.4-rc.9", my_user: null, federated_instances: { linked: [ @@ -356,11 +356,17 @@ export const instance_stats = { "lemmy.schuerz.at", "libranet.de", "mander.xyz", + "masr.social", "slrpnk.net", "sopuli.xyz", ], allowed: null, - blocked: ["legbeard.xyz", "wolfballs.com"], + blocked: [ + "legbeard.xyz", + "wolfballs.com", + "freefedifolk.com", + "lemmy.odat.xyz", + ], }, }, }, @@ -389,24 +395,24 @@ export const instance_stats = { "To combat bigrading, we have restricted user registration on this instance. Please write a short description containing:\n\n* Why you would like to join Lemmy.ml\n\n* What communities you would most like to participate in, and\n\n* How or why you chose the username you did.\n\nWe use these questions to screen for and discourage spammers and trolls. We will try our best to review your application as soon as possible.", private_instance: false, actor_id: "https://lemmy.ml/", - last_refreshed_at: "2022-05-13T16:38:55.455202", + last_refreshed_at: "2022-05-16T18:59:29.318302", inbox_url: "https://lemmy.ml/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8L6zYMBkF5FqgCM/5Ska\nhvJ5SOgqgXbgdTSisFfZD3jETDvQUGIUMHIHaXtZ9CZWViF57oFG952fObVkuR6P\nS81eIOnq26v1Q7LzP3WFKswvMM9qV5/fo+DE1pxAnKun43BaEUnDt1Nr3CUTL0VU\nRzrG87D9fqO6W3XCCrJ8y4Lw6t1/tutAUIfKomS2RzdS6nKRZMnC1LfIY93BdQ2r\nCGt1WByuJKHlRTd3COqQ56KmcyHcUSTTCWttmEO2dnnSjDOy5il07/suVlKDvHTl\nGcxPNuNegoWZgRxRYnXWRFRvRSaIB7V5S3c5E9GzvXzt2Un+oANtONz7tbngdt1g\nwQIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwyfRkdzsBLHIR14Jvaac\nwGHa1nCMJOt3s5ZCpYOF8XkSmHwnsLfZkLgpsc2CUYGO4HdhF3ZyxpEE1KHxqCrM\ncyrBql9Z5UorVyW6OhvyDnb1p9iBlWs3Aung+b10TkRSshmj3c1hC0HIN0Y6bV64\nafXQVOX8MuVEfYVU4u2y+M03Fe5n6oSRHjJJ1xY9fzmDiS+soXiSrduJBWevrb6O\nfwJQs9YmBtgWQkkNTQ5Mbdol7rBCIwyimYU9sOpbSad89/NGnXjd1ibwX+gQtUxj\na6nuraaiWFuMZidxpTJmCgyQqEtXoMFTb4/2M50ttJQQhphGr8JLrt2kxouggKr0\ndwIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "browser", }, counts: { id: 1, site_id: 1, - users: 16874, - posts: 56609, - comments: 112422, - communities: 2830, - users_active_day: 166, - users_active_week: 284, - users_active_month: 542, - users_active_half_year: 1909, + users: 16928, + posts: 57318, + comments: 113822, + communities: 2838, + users_active_day: 115, + users_active_week: 234, + users_active_month: 490, + users_active_half_year: 1767, }, }, admins: [ @@ -435,9 +441,9 @@ export const instance_stats = { id: 1, person_id: 34, post_count: 421, - post_score: 7985, - comment_count: 3764, - comment_score: 16474, + post_score: 7992, + comment_count: 3766, + comment_score: 16506, }, }, { @@ -464,10 +470,10 @@ export const instance_stats = { counts: { id: 415, person_id: 7769, - post_count: 5462, - post_score: 36988, - comment_count: 3669, - comment_score: 15416, + post_count: 5538, + post_score: 37693, + comment_count: 3718, + comment_score: 15692, }, }, { @@ -496,9 +502,9 @@ export const instance_stats = { id: 479, person_id: 7857, post_count: 48, - post_score: 291, - comment_count: 122, - comment_score: 486, + post_score: 325, + comment_count: 123, + comment_score: 511, }, }, { @@ -527,8 +533,8 @@ export const instance_stats = { person_id: 8169, post_count: 352, post_score: 4754, - comment_count: 1967, - comment_score: 8917, + comment_count: 1972, + comment_score: 8933, }, }, { @@ -587,12 +593,12 @@ export const instance_stats = { person_id: 11563, post_count: 54, post_score: 451, - comment_count: 1550, - comment_score: 4521, + comment_count: 1551, + comment_score: 4534, }, }, ], - online: 104, + online: 92, version: "0.16.3", my_user: null, federated_instances: { @@ -716,24 +722,24 @@ export const instance_stats = { "Cześć, ze względu na atak trolli, jesteśmy zmuszeni chwilowo ręcznie zatwierdzać rejestracje nowych kont. Robimy to na bieżąco, więc w większości wypadków nie trzeba będzie długo czekać. \nWspólnymi siłami chcemy tworzyć bezpieczną i przyjazną przestrzeń. Dziękujemy za wyrozumiałość!\n\nProsimy napisz nam dwa zdania, co cię tu sprowadza?", private_instance: false, actor_id: "https://szmer.info/", - last_refreshed_at: "2022-05-10T19:40:03.085758", + last_refreshed_at: "2022-05-24T20:10:50.815922", inbox_url: "https://szmer.info/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1Qjtp9QUqEFQukN7fwF0\nRR2KVT950YsQsJOJM58fz7VZn5nsww7TzAA0QTSD2ZurKbTPwJfa7bYCPa1FPP8z\nJ9zweX6L81JqRMZH6gVm3Zz2TLePK6nQKb7VHnPfVjktqNmBETddRpB6flIH4Krm\n86LMyoqa9aq4VqJWbcPqTtRnzpXzGXofY6/alhUYbsNImhefWmqRdbeNsUQJ5ZCp\nofqQw1av1mVy2CVdyDu+Kg+hBF5dvCGnsRbi9A1wq1HyVZGqhQu2Y7oQ18Qj6K+c\nwIVXC4qbRvLN4K88trQQd39suwMWRB8nduJ0qN7aFdSfdQEU/xEjOT7EoPRyXFHA\nXQIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzE1yUS6HG8DQIm0iawHh\nT+b/+VWjlpEK33/Tt28GvgDr5w+qOW00Yt3py36Lz3aYUiWV08ktNvQybMjGCz9Z\nRC1yKYpMbzN+Dgw/R1YEyVF5TqhxOCNLeDX08eeYIgpa7+t+KL595ErJ5V76vE5R\n1b3eYiQsFikW96f//UXan9bDICJ0uoVrS5QI0T6CEhHCzVtMIng0bDj9PP6YHNH8\nJylihu2rR4hvWA97oSY7qt4CZsvuhfkwnKd038rxAvZ/IuNmPJT7ud+WwMr1cIpU\nADst+4j9e9s63cWErcNQ8/HbXwSP8jMnn7LTgE16KJ/ihMqH4MyxFIXi/HIFiCmc\n8wIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "browser", }, counts: { id: 1, site_id: 1, - users: 1241, - posts: 17493, - comments: 14980, + users: 1245, + posts: 17832, + comments: 15104, communities: 197, - users_active_day: 15, - users_active_week: 37, - users_active_month: 76, - users_active_half_year: 317, + users_active_day: 19, + users_active_week: 35, + users_active_month: 66, + users_active_half_year: 305, }, }, admins: [ @@ -761,14 +767,14 @@ export const instance_stats = { counts: { id: 105, person_id: 112, - post_count: 32, - post_score: 286, + post_count: 34, + post_score: 289, comment_count: 57, comment_score: 134, }, }, ], - online: 18, + online: 19, version: "0.16.3", my_user: null, federated_instances: { @@ -789,6 +795,474 @@ export const instance_stats = { }, }, }, + { + domain: "feddit.it", + site_info: { + site_view: { + site: { + id: 1, + name: "Feddit.it", + sidebar: + "#### Cos'è Fedd**it**\nFedd**it** è l'alternativa italiana a Reddit, basata sul software [Lemmy](https://www.lealternative.net/2022/04/06/cose-lemmy/), uno dei progetti più interessanti del [fediverso](https://framatube.org/w/9dRFC6Ya11NCVeYKn8ZhiD?subtitle=it).\n\n#### Informazioni\nQuesto server di **Lemmy** è gestito da [Poliverso](https://poliverso.org/) e [Le Alternative](https://www.lealternative.net/).\n\n#### Regole\n\n🇮🇹 In questo server è necessario scrivere principalmente utilizzando la lingua italiana.\n\n🛎 Attualmente prima di poter aprire una comunità è necessaria l'approvazione degli amministratori [@poliverso@feddit.it](https://feddit.it/u/poliverso) o [@skariko@feddit.it](https://feddit.it/u/skariko). Potete aprire una richiesta [cliccando qui](https://feddit.it/c/main), spiegando di cosa parlerà la comunità e come sarà gestita.\n\n📜 Ogni comunità sceglierà in autonomia le sue regole, i suoi moderatori e le sue esigenze. Non sarà tuttavia possibile aprire comunità con contenuti pornografici, illegali o con discriminazioni razziali o di genere.\n\n🚯 Le comunità politiche dovranno accettare e sottoscrivere una clausola sull'antifascismo.\n\n⛔️ Lo spam, i bot e i messaggi ripetuti o molesti saranno rimossi a prescindere dalle regole della comunità.\n\n♻️ Le comunità che non riusciranno ad auto-moderarsi verranno richiamate dagli admin e se non sarà possibile trovare una soluzione verranno eliminate.\n\n#### Come si mantiene Feddit?\n\nÈ un progetto indipendente e senza pubblicità, se volete potete aiutare la gestione di questo server con una piccola [donazione ricorrente su LiberaPay](https://liberapay.com/Feddit-it) oppure con una [donazione una tantum su Ko-Fi](https://ko-fi.com/fedditit).\n\nGrazie! 🧡", + published: "2022-05-05T07:40:35.127186", + updated: "2022-05-19T08:09:36.733654", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://feddit.it/pictrs/image/64fddac4-ef09-44e4-ba91-280ece81605a.png", + banner: null, + description: + "L'alternativa italiana e decentralizzata a Reddit, benvenutǝ!", + community_creation_admin_only: true, + require_email_verification: false, + require_application: true, + application_question: "Perché vuoi registrarti a Fedd**it**?", + private_instance: false, + actor_id: "https://feddit.it/", + last_refreshed_at: "2022-05-16T20:53:29.221243", + inbox_url: "https://feddit.it/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAven+bVzDIEDBqAaq9/Cr\noVdPQcTzfuVuOqCpUyws3EU/gxWS10CLGlbfpguNhwAoJD3kMxe497RV15/HCxeW\nuvUA68WBgkaBSgytZ5sr0gses7nDK1FBJue0ULezCujCn3j1eEX6wo4HgOjvX8ej\nIUaGH0MbTbZs4Dof3B6K1eM/I52QD3PE30xioHu58kMIM7xNWWjyrXKcrxBr+kPY\nyIePJimgtA8bIH1kW9LxxTWuey53CUaQf4mzDteva3zCsAUmdR2mOBf8b8S5TtTv\nzkgNKdY1lUWLfpmB5MhzLM8a0+wb+8q3zljpQ8dJwksuqXRSbgmMzJE7L5JqqhRD\nlQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 96, + posts: 190, + comments: 402, + communities: 19, + users_active_day: 15, + users_active_week: 38, + users_active_month: 44, + users_active_half_year: 44, + }, + }, + admins: [ + { + person: { + id: 2, + name: "skariko", + display_name: null, + avatar: + "https://feddit.it/pictrs/image/2dea2df0-6019-4123-8322-af8072b863d3.jpeg", + banned: false, + published: "2022-05-05T07:32:10.201268", + updated: "2022-05-18T20:22:43.220478", + actor_id: "https://feddit.it/u/skariko", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://feddit.it/u/skariko/inbox", + shared_inbox_url: "https://feddit.it/inbox", + matrix_user_id: "@skariko:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 35, + post_score: 100, + comment_count: 85, + comment_score: 149, + }, + }, + { + person: { + id: 3, + name: "poliverso", + display_name: null, + avatar: + "https://feddit.it/pictrs/image/c3400417-90bd-44a7-9cc1-7371115ad112.png", + banned: false, + published: "2022-05-05T08:01:16.635627", + updated: "2022-05-17T08:54:31.222581", + actor_id: "https://feddit.it/u/poliverso", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://feddit.it/u/poliverso/inbox", + shared_inbox_url: "https://feddit.it/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 22, + post_score: 71, + comment_count: 62, + comment_score: 134, + }, + }, + ], + online: 12, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "beehaw.org", + "buckeyestate.social", + "community.nicfab.it", + "community.xmpp.net", + "ds9.lemmy.ml", + "enterprise.lemmy.ml", + "fapsi.be", + "feddit.de", + "feddit.it", + "federated.community", + "forum.friendi.ca", + "fuckreddit.tryp.digital", + "lemmy.ca", + "lemmy.cat", + "lemmy.ml", + "lemmygrad.ml", + "libranet.de", + "peertube.openstreetmap.fr", + "peertube.uno", + "poliverso.org", + "slrpnk.net", + "social.gl-como.it", + "social.lealternative.net", + "tube.rebellion.global", + ], + allowed: null, + blocked: null, + }, + }, + }, + { + domain: "sopuli.xyz", + site_info: { + site_view: { + site: { + id: 1, + name: "Sopuli", + sidebar: + "![](https://sopuli.xyz/pictrs/image/V70PisIEg4.png)\nSuomalaisen pyörittämä yleinen instanssi - kaikki ovat tänne tervetulleita!\n\n# Rules\n1. Remember the human! (no harassment, threats, etc.)\n2. No racism or other discrimination\n3. No Nazis, QAnon or conspiracy whackos (extremists in general) and no endorsement of them\n4. No porn\n5. No ads\n6. No spam\n\n# Säännöt\n1. Muista ihminen! (ei häirintää, uhkailua, jne)\n2. Ei rasismia tai muuta syrjintää\n3. Ei natseja, QAnonia tai salaliittohörhöjä (ääriliikkeitä ylipäänsä) eikä heidän tukemista\n4. Ei pornoa\n5. Ei mainoksia\n6. Ei roskapostia\n\n\n[Matrix Space](https://matrix.to/#/!SJfHjWlTugnKyonyQi:matrix.org?via=matrix.org)\n\n[FAQ / UKK](https://sopuli.xyz/post/13531)", + published: "2021-02-01T15:25:18.304303", + updated: "2022-05-23T06:35:20.508604", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://sopuli.xyz/pictrs/image/AjMQEWabkH.png", + banner: null, + description: + "A general-purpose instance run by a Finn - everyone is welcome here!", + community_creation_admin_only: false, + require_email_verification: true, + require_application: true, + application_question: "Tell about yourself!\n\nKerro itsestäsi! ", + private_instance: false, + actor_id: "https://sopuli.xyz/", + last_refreshed_at: "2022-05-06T18:08:59.178283", + inbox_url: "https://sopuli.xyz/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx2fvMKV4z7QJr6E5uU69\nhHrdRTyPbjygzAKGBpvjfsbJOoWQ4cXPP8E+UCfNJ/Ig1LDFRSKnJtW0DoOUdsiE\n81tXrE72aR5fYi2PdCpUM11lxAKhyDMCqoZSCaFesKMU5619bSg94EJ21wlyXk9U\npg29zCEUwCUR9tsaNNslQgzenESwnVSZJdAFd8f4mDF1A5RPxpS3GTYYCrSpoLLt\nxJOOEjOL8ldhXuHgD5mC+OuNl8DZlKjg/jXgzS2IKq3ASAu8TJKpa36BlwgofD7H\nppxdWubRS1kEqWIKRnm1007LK2PR7rif47iqdw/0L+kBEMtKc9dZAgP21ACjmoNv\nSQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly", + }, + counts: { + id: 1, + site_id: 1, + users: 444, + posts: 1879, + comments: 1495, + communities: 62, + users_active_day: 6, + users_active_week: 13, + users_active_month: 39, + users_active_half_year: 108, + }, + }, + admins: [ + { + person: { + id: 2, + name: "QuentinCallaghan", + display_name: "QuentinCallaghan", + avatar: "https://sopuli.xyz/pictrs/image/rRggnpdFz4.jpg", + banned: false, + published: "2021-02-01T15:24:32.478651", + updated: "2022-04-02T18:28:53.800647", + actor_id: "https://sopuli.xyz/u/QuentinCallaghan", + bio: "Finnish guy\n\nFounder and admin of sopuli.xyz\n\nMastodon: [Rynach@mstdn.io](https://mstdn.io/@Rynach)\n\nMatrix: @ rynach:matrix.org", + local: true, + banner: null, + deleted: false, + inbox_url: "https://sopuli.xyz/u/QuentinCallaghan/inbox", + shared_inbox_url: "https://sopuli.xyz/inbox", + matrix_user_id: "@rynach:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1322, + post_score: 6128, + comment_count: 477, + comment_score: 1875, + }, + }, + { + person: { + id: 3, + name: "Ninmi", + display_name: "Ninmi", + avatar: "https://sopuli.xyz/pictrs/image/hoCbpyb8uW.jpg", + banned: false, + published: "2021-02-04T11:41:03.883114", + updated: "2022-04-11T15:54:35.811440", + actor_id: "https://sopuli.xyz/u/Ninmi", + bio: "A bit of an idealist and fond of empathy. \nCan respond in English, Suomi and broken 日本語.", + local: true, + banner: null, + deleted: false, + inbox_url: "https://sopuli.xyz/u/Ninmi/inbox", + shared_inbox_url: "https://sopuli.xyz/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 123, + post_score: 429, + comment_count: 278, + comment_score: 921, + }, + }, + ], + online: 3, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "baraza.africa", + "beehaw.org", + "ds9.lemmy.ml", + "enterprise.lemmy.ml", + "eope.xyz", + "fapsi.be", + "feddit.de", + "gtio.io", + "heapoverflow.ml", + "lemmy.161.social", + "lemmy.ca", + "lemmy.ml", + "lemmy.otakufarms.com", + "lemmy.perthchat.org", + "lemmy.schuerz.at", + "loma.ml", + "mander.xyz", + "meowrr.com", + "midwest.social", + "slrpnk.net", + "stammtisch.hallertau.social", + "tabinezumi.net", + "vote.casually.cat", + "voyager.lemmy.ml", + ], + allowed: null, + blocked: [ + "wolfballs.com", + "narwhal.city", + "lemmygrad.ml", + "a.tide.tk", + "goldandblack.us.to", + ], + }, + }, + }, + { + domain: "wolfballs.com", + site_info: { + site_view: { + site: { + id: 1, + name: "Wolfballs", + sidebar: + "Recent Announcements will be on the side bar.\n\nWolf balls leadership is strongly anti-nazi and anti-fascism and will fight hate speech with better speech\n\n# Rules\n\n1. No illegal content\n2. No porn spam in default community\n3. Please no slurs in community names. Think of something creative. Communities in the community list cannot be hidden from unlogged in users. \n4. Communities should not be created for one time questions. Communities are intended to serve as long standing moderated spaces. Where the moderation rules are primarily governed by that communities moderator/s. If no participation has occurred in a community for 30 days an admin may delete it. (If this rule is a problem, feel free to propose a different solution)\n5. No threatening lawsuits\n6. Partial nudity is NSFW. Not marking a NSFW post as NSFW three times can result in a site wide ban.\n7. No threatening to kill people or groups of people.\n8. No vote manipulation. Especially when coupled with an attempt to form a narrative, for example post something offensive, artificially boost it so you can claim on other platforms we are \"Alt-Right\" or some other trash \n9. No spam posting antisemetic content. Racist stuff should be at minimum labeled nsfw. If a community becomes mostly racist content it will be hidden from users not subscribed. We will list communities that have been hidden for this reason on the side bar so users can find them. \n\n\n# Faq\n\n **Do you ban words?**\n\nno\n\n**How do you define a women**\n\nA women is defined as x chromosomes and no tallywhacker i.e probably not you\n\n**A certain post made me feel bad, what should I do?**\n\nIf it is illegal, hit the report button.\n\nIf it hurt your feelings i'm sorry.\n\n**Where Can I suggest Features?**\n\nhttps://wolfballs.com/c/development\n\n**Is this site Racist**\n\nNo\n\n**Is this site biggoted?**\n\nVery much the opposite. We are tolerant here. To understand what is tolerance see this post here https://wolfballs.com/post/5294\n\nwolfballs maintains that God made all man kind equal in his eyes. Man and women. There is nothing in between either. \n\nWe are striving to maintain a high level of freedom. Actions may be taken against super offensive communities. Be assured we won't be adding fact check labels ever\n\n**You deleted my comment or post in a community. This isn't fReEsPeEcH**\n\nThis is a community of communities. Each community can moderate their community how they feel best. That includes deleting comments and post. Your right to shit post doesn't trump someone else's right to create a space their voice can be properly heard. If you want pure free speech where you just say what ever you want try a pleroma instance. That is a better format for freespeech absolutest. \n \n**Do you encourage racism?**\n\nNo, we encourage everyone to love each other no matter their skin color. We are striving for freedom of thought and discussion. That gets messy. Banning is a slippery slope and we don't do it without taking a very detailed hard look into how it effects everyone's freedom to think and communicate. Feel free to raise concerns in the default forum.\n\n**How could you post Vaccine Missinformation. Isn't that dangerous? Won't that cause this death of literally 10's of billions of people? My parents almost died from covid and watch fox news. How could you?**\n\nFor more information on why the risk benifit may be what you think [Watch this](https://rumble.com/vqx3kb-the-pfizer-inoculations-do-more-harm-than-good.html)\n\nOr if you prefer, [read up](https://rwmalonemd.substack.com/) on what the inventor of the mrna vaccine has to say about it. [Or watch his Rogan interview](https://open.spotify.com/episode/3SCsueX2bZdbEzRtKOCEyT?si=MEyYUOSZSJ-Ki3wCHY0zGA)\n\n**Where can I find the UI customizations?**\n\nThey are not much but I keep them here https://git.freefedifolk.com/chuzuchi/wolfballs-ui\n\n**Recent Announcements:**\n\nhttps://wolfballs.com/post/14442\n\nhttps://wolfballs.com/post/12615\n\nhttps://wolfballs.com/post/6838\n\nhttps://wolfballs.com/post/5365\n\nhttps://wolfballs.com/post/4702\n\nhttps://wolfballs.com/post/3309\n\nhttps://wolfballs.com/post/3196", + published: "2021-10-09T22:34:10.057117", + updated: "2022-05-24T17:13:51.293168", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://wolfballs.com/pictrs/image/b88fceda-94dd-4816-8b84-f55f4ae2b0e6.png", + banner: + "https://wolfballs.com/pictrs/image/c6fcbc8e-491e-45f1-98a8-bf025795598d.jpeg", + description: + "A decentralized federated community of freedom fighting meme farmers ", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: "How many genders are there?", + private_instance: false, + actor_id: "https://wolfballs.com/", + last_refreshed_at: "2022-05-18T17:43:59.233733", + inbox_url: "https://wolfballs.com/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA17TrfaNPd148reSQ03dJ\nJUFQmMsyOeKz3COnZuvSRAqu6g8QDMpC4rpmXIz+d+uHtRkcx6fnf0+vwpe/ocGF\n9oI1Skr1oVcygmY5fczuX+zzDNMfKA3xQ/yFqoTR1oV1+JlLRgJdW/rEtGFs/cuO\nfiZ+TJODrBQ7W7rOnYmxhU4LzN8gBlZegoGDchQq+odXX+IY3httn3f97Ejv+zym\nFQ/9/paT4YYf6Rj88RVbgdw/ZCsfbpM5sUHh1ANiDWTzPA5wed2ffYEp7nCyjMmr\nOcklBjHrNrqxkEjKGVlqEHwRrlTOeqrmA0CFPHVQbDZbde35JE39Rx33Ko6uI6ND\nSwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "cyborg", + }, + counts: { + id: 1, + site_id: 1, + users: 275, + posts: 11197, + comments: 15305, + communities: 192, + users_active_day: 11, + users_active_week: 18, + users_active_month: 33, + users_active_half_year: 126, + }, + }, + admins: [ + { + person: { + id: 2, + name: "masterofballs", + display_name: "Masterofballs", + avatar: "https://wolfballs.com/pictrs/image/BXRqriWv6P.jpg", + banned: false, + published: "2021-10-09T22:33:32.506678", + updated: "2022-04-20T20:47:32.233188", + actor_id: "https://wolfballs.com/u/masterofballs", + bio: "Ancient Eastern Demon. Sealed by the late emperor with a blood seal during the Zhou Dynasty. Masterofballs was accidentally released from his prison under Tiananmen square in 1989. \n\nNow free to spread his Chaos across the fediverse.\n\nFavorite foods: Raw Donkey meat and rice wine. \n", + local: true, + banner: null, + deleted: false, + inbox_url: "https://wolfballs.com/u/masterofballs/inbox", + shared_inbox_url: "https://wolfballs.com/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 2187, + post_score: 6493, + comment_count: 2717, + comment_score: 5317, + }, + }, + { + person: { + id: 10, + name: "wigglehard", + display_name: "Wiggle Hard", + avatar: + "https://wolfballs.com/pictrs/image/1d9af1f4-5de4-4de1-b559-bbca9d97131c.jpeg", + banned: false, + published: "2021-10-20T16:38:40.254724", + updated: "2022-02-26T14:39:51.604706", + actor_id: "https://wolfballs.com/u/wigglehard", + bio: "Christian MAGA trucker, site admin, creator of freeforum. Get involved in local politics, take it all back from the ground up. Share wolfballs on other sites", + local: true, + banner: + "https://wolfballs.com/pictrs/image/13b54f57-9737-4d58-875f-9d391a9e6cdc.jpeg", + deleted: false, + inbox_url: "https://wolfballs.com/u/wigglehard/inbox", + shared_inbox_url: "https://wolfballs.com/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 9, + person_id: 10, + post_count: 2385, + post_score: 7094, + comment_count: 1475, + comment_score: 2987, + }, + }, + { + person: { + id: 33, + name: "BearBalls", + display_name: null, + avatar: null, + banned: false, + published: "2021-10-30T00:28:46.483327", + updated: null, + actor_id: "https://wolfballs.com/u/BearBalls", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://wolfballs.com/u/BearBalls/inbox", + shared_inbox_url: "https://wolfballs.com/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 32, + person_id: 33, + post_count: 28, + post_score: 81, + comment_count: 77, + comment_score: 185, + }, + }, + ], + online: 4, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "a.tide.tk", + "anonsys.net", + "baraza.africa", + "exploding-heads.com", + "gtio.io", + "legbeard.xyz", + "lemmy.shrieker.net", + "libranet.de", + "loma.ml", + "lotide.fbxl.net", + "mander.xyz", + "narwhal.city", + "social.hannebrook.info", + ], + allowed: null, + blocked: [ + "lemmy.ml", + "lemmygrad.ml", + "sopuli.xyz", + "https://scholar.social", + "pawoo.net", + "mastodon.social", + "donotban.com", + "mastodon.cc", + "mastodon.green", + "nerdculture.de", + "freefedifolk.com", + "social.teci.world", + "redliberal.com", + "pawoo.net", + ], + }, + }, + }, { domain: "feddit.de", site_info: { @@ -813,24 +1287,24 @@ export const instance_stats = { "📢 Leider gibt es derzeit ein erhöhtes Spam-Aufkommen, daher haben wir uns entschieden, neue Konten *vorübergehend* von Hand freizuschalten. \\\nDies sollte i.d.R. nicht länger als ein paar Stunden dauern.\n\n🤖 Um Bots auszusortieren, verrate uns doch kurz etwas über dich, das Fediverse, oder wie du auf feddit gestoßen bist!", private_instance: false, actor_id: "https://feddit.de/", - last_refreshed_at: "2022-05-05T15:09:13.753077", + last_refreshed_at: "2022-05-23T18:09:43.977805", inbox_url: "https://feddit.de/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw8TiPm2RkahljM19+LnP\nhmff6BI85HS3GhsEaerruiB8/H7GF1Rwf06824M8glyNzPHCBsJ6GHzVApH3HrFm\nYRIzlgpgsr2XqVnh+hdnZLYgW28InToZkpcTtlpoiw/IvInqnW2khyjuYEcd/gWg\ndNiSyMgX6SkOevL6nTFNjU9M5KSqlYSdsj9sRHAFrwcMMefJH++wc+iSGoa0Hk8k\nYEgePYtw8j7n8balhTv7X6PLNjZLeQug9mc46G+orLbPX3/pE0lkcGLDrLQHWXAO\nfdmci3yAOBHKHEzbmD8093DYae6BrYBC2TZPF05nIw2NRnWXRaRZPQVG3gbEWWaf\n/QIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArs77vUPYyYH9Ag6Mz54/\nOT6B1wQMl0CLfI/5no5si+1NBk4AnfigicoTm4pW3320bFXz5TIcmfBzIoGZ6rBZ\n3XUz1EFdPrE85NgI0AHeMA1nrsoqGlmb5IwokUcxBwPEADUgU9wc4IY/9x7X1r9Y\nKLqaqbyQa1yXMDODHSBSR0FvJLEdOdm9kQMQgLuvwX4wDgZlI2YBY7h/ZBz39szY\nDd2dqXmwYmbH8cxIuTAIImZXF5VJi+62pmhr7VgNZT68oac7lEd3cvBr3CtUFL1U\nYhArM0W+AeeXeeCBN3THoMfijze/tpBfTl1YAAwSXXfKIoceSUoVMQwTWiM51QAN\nlwIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "browser", }, counts: { id: 1, site_id: 1, - users: 224, - posts: 2527, - comments: 3339, - communities: 82, - users_active_day: 9, - users_active_week: 18, - users_active_month: 34, - users_active_half_year: 74, + users: 225, + posts: 2623, + comments: 3418, + communities: 83, + users_active_day: 7, + users_active_week: 14, + users_active_month: 30, + users_active_half_year: 73, }, }, admins: [ @@ -858,14 +1332,14 @@ export const instance_stats = { counts: { id: 1, person_id: 2, - post_count: 427, - post_score: 1459, - comment_count: 261, - comment_score: 727, + post_count: 439, + post_score: 1500, + comment_count: 266, + comment_score: 743, }, }, ], - online: 7, + online: 9, version: "0.16.3", my_user: null, federated_instances: { @@ -942,519 +1416,142 @@ export const instance_stats = { }, }, { - domain: "sopuli.xyz", + domain: "lemmy.ca", site_info: { site_view: { site: { id: 1, - name: "Sopuli", + name: "Lemmy dot C.A.", sidebar: - "![](https://sopuli.xyz/pictrs/image/V70PisIEg4.png)\nSuomalaisen pyörittämä yleinen instanssi - kaikki ovat tänne tervetulleita!\n\n# Rules\n1. Remember the human! (no harassment, threats, etc.)\n2. No racism or other discrimination\n3. No Nazis, QAnon or conspiracy whackos (extremists in general) and no endorsement of them\n4. No porn\n5. No ads\n6. No spam\n\n# Säännöt\n1. Muista ihminen! (ei häirintää, uhkailua, jne)\n2. Ei rasismia tai muuta syrjintää\n3. Ei natseja, QAnonia tai salaliittohörhöjä (ääriliikkeitä ylipäänsä) eikä heidän tukemista\n4. Ei pornoa\n5. Ei mainoksia\n6. Ei roskapostia\n\n\n[Matrix Space](https://matrix.to/#/!SJfHjWlTugnKyonyQi:matrix.org?via=matrix.org)\n\n[FAQ / UKK](https://sopuli.xyz/post/13531)", - published: "2021-02-01T15:25:18.304303", - updated: "2022-05-16T09:11:18.392517", + '### Welcome to Lemmy.CA!\n\n"Lemmy dot C.A." is so named due to it running the Lemmy software (see the links in the very bottom right for more info), being part of the Lemmy side of [the Fediverse](https://en.wikipedia.org/wiki/Fediverse), and it\'s (somewhat) geared toward Canucks, hosted in Canuckistan, and run by a Canuck. It is, however, not at all restricted to Canucks, or Canuck culture/topics/etc. All are welcome!\n\n#### We have some rules here:\n\n- No bigotry - including racism, sexism, ableism, homophobia, or xenophobia. [Code of Conduct](https://join-lemmy.org/docs/en/code_of_conduct.html).\n- Be respectful. Everyone should feel welcome here.\n- No porn.\n- No Ads / Spamming.\n\n(Much of this is all based on the well-established groundwork of the Lemmy home instance, [lemmy.ml](https://lemmy.ml))', + published: "2020-12-12T23:59:08.349434", + updated: "2022-03-02T04:39:00.184279", enable_downvotes: true, open_registration: true, enable_nsfw: true, - icon: "https://sopuli.xyz/pictrs/image/AjMQEWabkH.png", + icon: "https://lemmy.ca/pictrs/image/AX0BZv78yT.png", banner: null, description: - "A general-purpose instance run by a Finn - everyone is welcome here!", + "A canadian-run community, geared towards canadians, but all are welcome!", community_creation_admin_only: false, - require_email_verification: true, - require_application: false, - application_question: null, - private_instance: false, - actor_id: "https://sopuli.xyz/", - last_refreshed_at: "2022-05-06T18:08:59.178283", - inbox_url: "https://sopuli.xyz/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx2fvMKV4z7QJr6E5uU69\nhHrdRTyPbjygzAKGBpvjfsbJOoWQ4cXPP8E+UCfNJ/Ig1LDFRSKnJtW0DoOUdsiE\n81tXrE72aR5fYi2PdCpUM11lxAKhyDMCqoZSCaFesKMU5619bSg94EJ21wlyXk9U\npg29zCEUwCUR9tsaNNslQgzenESwnVSZJdAFd8f4mDF1A5RPxpS3GTYYCrSpoLLt\nxJOOEjOL8ldhXuHgD5mC+OuNl8DZlKjg/jXgzS2IKq3ASAu8TJKpa36BlwgofD7H\nppxdWubRS1kEqWIKRnm1007LK2PR7rif47iqdw/0L+kBEMtKc9dZAgP21ACjmoNv\nSQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "darkly", - }, - counts: { - id: 1, - site_id: 1, - users: 415, - posts: 1847, - comments: 1437, - communities: 61, - users_active_day: 6, - users_active_week: 18, - users_active_month: 30, - users_active_half_year: 98, - }, - }, - admins: [ - { - person: { - id: 2, - name: "QuentinCallaghan", - display_name: "QuentinCallaghan", - avatar: "https://sopuli.xyz/pictrs/image/rRggnpdFz4.jpg", - banned: false, - published: "2021-02-01T15:24:32.478651", - updated: "2022-04-02T18:28:53.800647", - actor_id: "https://sopuli.xyz/u/QuentinCallaghan", - bio: "Finnish guy\n\nFounder and admin of sopuli.xyz\n\nMastodon: [Rynach@mstdn.io](https://mstdn.io/@Rynach)\n\nMatrix: @ rynach:matrix.org", - local: true, - banner: null, - deleted: false, - inbox_url: "https://sopuli.xyz/u/QuentinCallaghan/inbox", - shared_inbox_url: "https://sopuli.xyz/inbox", - matrix_user_id: "@rynach:matrix.org", - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 1308, - post_score: 6069, - comment_count: 474, - comment_score: 1863, - }, - }, - { - person: { - id: 3, - name: "Ninmi", - display_name: "Ninmi", - avatar: "https://sopuli.xyz/pictrs/image/hoCbpyb8uW.jpg", - banned: false, - published: "2021-02-04T11:41:03.883114", - updated: "2022-04-11T15:54:35.811440", - actor_id: "https://sopuli.xyz/u/Ninmi", - bio: "A bit of an idealist and fond of empathy. \nCan respond in English, Suomi and broken 日本語.", - local: true, - banner: null, - deleted: false, - inbox_url: "https://sopuli.xyz/u/Ninmi/inbox", - shared_inbox_url: "https://sopuli.xyz/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 2, - person_id: 3, - post_count: 122, - post_score: 418, - comment_count: 267, - comment_score: 890, - }, - }, - ], - online: 5, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: [ - "baraza.africa", - "beehaw.org", - "ds9.lemmy.ml", - "enterprise.lemmy.ml", - "eope.xyz", - "fapsi.be", - "feddit.de", - "gtio.io", - "heapoverflow.ml", - "lemmy.161.social", - "lemmy.ca", - "lemmy.ml", - "lemmy.otakufarms.com", - "lemmy.perthchat.org", - "lemmy.schuerz.at", - "loma.ml", - "mander.xyz", - "meowrr.com", - "midwest.social", - "slrpnk.net", - "stammtisch.hallertau.social", - "tabinezumi.net", - "vote.casually.cat", - "voyager.lemmy.ml", - ], - allowed: null, - blocked: [ - "wolfballs.com", - "narwhal.city", - "lemmygrad.ml", - "a.tide.tk", - "goldandblack.us.to", - ], - }, - }, - }, - { - domain: "community.xmpp.net", - site_info: { - site_view: { - site: { - id: 1, - name: "XMPP Community", - sidebar: - "Welcome to the XMPP Community Lemmy instance! Please be kind. All communities in this space should be at least tangentially related to XMPP.\n\nPlease abide by our [code of conduct][coc]. To report a CoC violation, message one of the admins.\n\n[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)][coc] \n\n[coc]: https://www.contributor-covenant.org/version/2/1/code_of_conduct/", - published: "2022-04-11T15:23:46.791420", - updated: "2022-04-19T18:00:51.173869", - enable_downvotes: false, - open_registration: true, - enable_nsfw: false, - icon: "https://community.xmpp.net/pictrs/image/35c85076-7971-4e2a-b5d1-18ef437366ff.png", - banner: null, - description: - "A community space for projects and users of the Extensible Messaging and Presence Protocol (XMPP).", - community_creation_admin_only: true, require_email_verification: false, require_application: true, application_question: - "Hi there, to prevent spam please tell us why you want to join this instance and what XMPP communities you're a part of (if any); thanks!", + "To combat brigading, we have restricted user registration on this instance. Please write a short description containing:\n\n* Why you would like to join [lemmy.ca](https://lemmy.ca/)\n* What communities you would most like to participate in\n* How or why you chose the username you did\n\nWe use these questions to screen for and discourage spammers and trolls. We will try our best to review your application as soon as possible.", private_instance: false, - actor_id: "https://community.xmpp.net/", - last_refreshed_at: "2022-04-11T15:23:46.789062", - inbox_url: "https://community.xmpp.net/site_inbox", + actor_id: "https://lemmy.ca/", + last_refreshed_at: "2022-05-19T17:24:35.986141", + inbox_url: "https://lemmy.ca/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5VrbqJ41eBtkinlu+zn+\nXsTo1XczhfrsMYBdrM7CFjTe9Ls3xBj4fCbYW6oHDfqkceHGObs7xHizqRCbAHp1\njY6y8B9P9mI8EXjmRXdhViUVyJ3nVJMqT5TgxErsifXl1TKenOooz5fA0jRyDKY7\ny39uaI78U4NS2cjeQ88OxhC6KBVAXpWT1GDoSWbb/4O9Mmpv0s/yHw7ZmF8U6dHP\nNvO+DPahqd5fhAggWtQT9d5jjWossAcQaJdzJo67VIksqYOMPFkEgDHthSpCVsH0\nWOEfNhmdN0QfO0SYenzmJ9aOXqMfuPDaosNqf84E60vgVefpM+nypPViXULsIS0F\nHwIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt3mzlVlMkgfYRfR27jzD\nkjDmT+exa7qMoj+wKZSgwX96fXH7JxiGhRwsIFoMAZjL/No6eD+BcpZ8UARs66dQ\nJEH7x6XIIy7qbCQyS6197XjfOD5+uCStcjhcli+LSTmTYGkr69WCAgs4aqTHY5L0\nf+NHBigB3zpHbejvqH+pNeB75Y+e3iFuCmKq8cgH7zvCFig66tBvhPeWNw69+ug4\nknxOoNxmU9CJTt2oWx8x/COGHV1zI7GtdFYOtdWAF8hMDjz6sniU6SZBt0/6YchH\nKbG07SVf/xZioIowi1TYdXFolbdtheHoaasbKxqCnDRS8f6Tnelgihow0lRyDUnu\nxQIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "browser", }, counts: { id: 1, site_id: 1, - users: 56, - posts: 73, - comments: 82, - communities: 16, - users_active_day: 1, - users_active_week: 2, - users_active_month: 29, - users_active_half_year: 35, + users: 330, + posts: 735, + comments: 971, + communities: 65, + users_active_day: 3, + users_active_week: 6, + users_active_month: 15, + users_active_half_year: 100, }, }, admins: [ { person: { id: 3, - name: "samwhited", - display_name: null, - avatar: - "https://community.xmpp.net/pictrs/image/1cc71dcc-f5fe-46b8-aa15-1e1fba4c8d80.jpeg", + name: "kinetix", + display_name: "Kinetix", + avatar: "https://lemmy.ca/pictrs/image/Y2exKgUpg8.png", banned: false, - published: "2022-04-12T17:03:31.067980", - updated: "2022-04-13T13:36:52.647774", - actor_id: "https://community.xmpp.net/u/samwhited", - bio: null, + published: "2020-12-13T00:14:53.385865", + updated: "2021-02-09T20:37:12.039880", + actor_id: "https://lemmy.ca/u/kinetix", + bio: "lemmy.ca admin and general fediverse lurker\n\nOther accounts:\n- [Peertube](https://video.mycrowd.ca/accounts/kinetix/video-channels)\n- [Pleroma](https://mycrowd.ca/kinetix)\n- [Friendica](https://social.isurf.ca/profile/kinetix)", local: true, banner: null, - deleted: true, - inbox_url: "https://community.xmpp.net/u/samwhited/inbox", - shared_inbox_url: "https://community.xmpp.net/inbox", - matrix_user_id: null, + deleted: false, + inbox_url: "https://lemmy.ca/u/kinetix/inbox", + shared_inbox_url: "https://lemmy.ca/inbox", + matrix_user_id: "@kinetix:matrix.isurf.ca", admin: true, bot_account: false, ban_expires: null, }, counts: { - id: 2, + id: 3, person_id: 3, - post_count: 4, - post_score: 10, - comment_count: 2, - comment_score: 4, + post_count: 66, + post_score: 199, + comment_count: 259, + comment_score: 580, }, }, { person: { - id: 4, - name: "pep", - display_name: null, - avatar: - "https://community.xmpp.net/pictrs/image/9b98d86f-6b87-4fce-b136-bf3a580b3eec.png", - banned: false, - published: "2022-04-12T17:51:00.738194", - updated: "2022-04-12T19:44:11.702667", - actor_id: "https://community.xmpp.net/u/pep", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://community.xmpp.net/u/pep/inbox", - shared_inbox_url: "https://community.xmpp.net/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 3, - person_id: 4, - post_count: 4, - post_score: 12, - comment_count: 13, - comment_score: 24, - }, - }, - { - person: { - id: 6, - name: "MattJ", - display_name: null, - avatar: - "https://community.xmpp.net/pictrs/image/1beec86e-06ee-41d0-b11c-86f9429bc89f.png", - banned: false, - published: "2022-04-12T18:55:19.449672", - updated: "2022-04-14T16:03:30.589780", - actor_id: "https://community.xmpp.net/u/MattJ", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://community.xmpp.net/u/MattJ/inbox", - shared_inbox_url: "https://community.xmpp.net/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 5, - person_id: 6, - post_count: 0, - post_score: 0, - comment_count: 5, - comment_score: 8, - }, - }, - { - person: { - id: 143, - name: "sam", - display_name: "Sam", - avatar: - "https://community.xmpp.net/pictrs/image/08401dfb-64ce-4576-884a-83af94513265.jpeg", - banned: false, - published: "2022-04-13T13:37:13.506336", - updated: "2022-04-17T17:29:58.031639", - actor_id: "https://community.xmpp.net/u/sam", - bio: "I work on the Mellium project and sometimes on XEPs. Bike mechanic during the day, but also sometimes freelance software development and censorship circumvention.\n\n**Hire me:** https://willowbark.org/", - local: true, - banner: null, - deleted: false, - inbox_url: "https://community.xmpp.net/u/sam/inbox", - shared_inbox_url: "https://community.xmpp.net/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 102, - person_id: 143, - post_count: 30, - post_score: 105, - comment_count: 43, - comment_score: 103, - }, - }, - ], - online: 0, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: [ - "community.nicfab.it", - "community.xmpp.net", - "feddit.de", - "heapoverflow.ml", - "lemmy.ml", - "lemmygrad.ml", - "libranet.de", - "loma.ml", - "privacy.nicfab.it", - "slrpnk.net", - ], - allowed: null, - blocked: null, - }, - }, - }, - { - domain: "wolfballs.com", - site_info: { - site_view: { - site: { - id: 1, - name: "Wolfballs", - sidebar: - "Recent Announcements will be on the side bar.\n\nWe stand with Israel.\n\nWolf balls leadership is strongly anti-nazi and anti-fascism and will fight hate speech with better speech\n\n# Rules\n\n1. No illegal content\n2. No porn spam in default community\n3. ~~No racial slurs in community names.~~ Now that we have a offensive community feature this rule will be sunset and communities with super offensive titles will just be labeled offensive. \n4. Communities should not be created for one time questions. Communities are intended to serve as long standing moderated spaces. Where the moderation rules are primarily governed by that communities moderator/s. If no participation has occurred in a community for 30 days an admin may delete it. (If this rule is a problem, feel free to propose a different solution)\n5. No threatening lawsuits\n6. Partial nudity is NSFW. Not marking a NSFW post as NSFW three times can result in a site wide ban.\n7. No threatening to kill people or groups of people.\n8. No vote manipulation. Especially when coupled with an attempt to form a narrative, for example post something offensive, artificially boost it so you can claim on other platforms we are \"Alt-Right\" or some other trash \n\n\n# Faq\n\n **Do you ban words?**\n\nno\n\n**How do you define a women**\n\nA women is defined as x chromosomes and no tallywhacker i.e probably not you\n\n**A certain post made me feel bad, what should I do?**\n\nIf it is illegal, hit the report button.\n\nIf it hurt your feelings i'm sorry.\n\n**Where Can I suggest Features?**\n\nhttps://wolfballs.com/c/development\n\n**Is this site Racist**\n\nNo\n\n**Is this site biggoted?**\n\nVery much the opposite. We are tolerant here. To understand what is tolerance see this post here https://wolfballs.com/post/5294\n\nwolfballs maintains that God made all man kind equal in his eyes. Man and women. There is nothing in between either. \n\nWe are striving to maintain a high level of freedom. Actions may be taken against super offensive communities. Be assured we won't be adding fact check labels ever\n\n**You deleted my comment or post in a community. This isn't fReEsPeEcH**\n\nThis is a community of communities. Each community can moderate their community how they feel best. That includes deleting comments and post. Your right to shit post doesn't trump someone elses right to create a space their voice can be properly heard. If you want pure free speech where you just say what ever you want try a pleroma instance. That is a better format for freespeech absolutest. \n \n**Do you encourage racism?**\n\nNo, we encourage everyone to love each other no matter their skin color. We are striving for freedom of thought and discussion. That gets messy. Banning is a slippery slope and we don't do it without taking a very detailed hard look into how it effects everyone's freedom to think and communicate. Feel free to raise concerns in the default forum.\n\n**How could you post Vaccine Missinformation. Isn't that dangerous? Won't that cause this death of literally 10's of billions of people? My parents almost died from covid and watch fox news. How could you?**\n\nFor more information on why the risk benifit may be what you think [Watch this](https://rumble.com/vqx3kb-the-pfizer-inoculations-do-more-harm-than-good.html)\n\nOr if you prefer, [read up](https://rwmalonemd.substack.com/) on what the inventor of the mrna vaccine has to say about it. [Or watch his Rogan interview](https://open.spotify.com/episode/3SCsueX2bZdbEzRtKOCEyT?si=MEyYUOSZSJ-Ki3wCHY0zGA)\n\n**Where can I find the UI customizations?**\n\nThey are not much but I keep them here https://git.freefedifolk.com/chuzuchi/wolfballs-ui\n\n**Recent Announcements:**\n\nhttps://wolfballs.com/post/14442\n\nhttps://wolfballs.com/post/12615\n\nhttps://wolfballs.com/post/6838\n\nhttps://wolfballs.com/post/5365\n\nhttps://wolfballs.com/post/4702\n\nhttps://wolfballs.com/post/3309\n\nhttps://wolfballs.com/post/3196", - published: "2021-10-09T22:34:10.057117", - updated: "2022-05-13T17:43:45.896223", - enable_downvotes: true, - open_registration: true, - enable_nsfw: true, - icon: "https://wolfballs.com/pictrs/image/e51f1a21-aded-46fc-8a5a-6571dc1a78c3.png", - banner: - "https://wolfballs.com/pictrs/image/13f75322-6d88-4b3a-8866-422976ad61e8.jpeg", - description: - "A decentralized federated community of freedom fighting meme farmers ", - community_creation_admin_only: false, - require_email_verification: true, - require_application: false, - application_question: null, - private_instance: false, - actor_id: "https://wolfballs.com/", - last_refreshed_at: "2022-05-13T15:50:26.599780", - inbox_url: "https://wolfballs.com/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5tddRAQabW/7jvbzm4GD\nNX21rqrYDK/LAZZaRir5NbsCY39zK1S2MBDufio+dLCb0eIzlHrkMbAnZ83IK1EU\nRwI4Q1DhzxAg4wgT9xoNDSq18EbMhKONQJzjPbbphogcR+jud1AMBi0VmK4JVyTP\nle2LiREVV+57D97+jxgADY1WPjgpVT9ZjLsFCSxwnVdwuA/gDAk4yK5DvncQcknR\nEYN8j4z42WxtOEHdJ5XThNFo+o65hLhEt09yuZugk+CIPXYQ1r3W9H8TViWQlYhz\n99WDyt5LFa4rInPmuxCJZiDEY5bOke4BJ3T+zcqlSw9SicgnqhNUFXQwQAHuTTCe\nGwIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "cyborg", - }, - counts: { - id: 1, - site_id: 1, - users: 269, - posts: 10854, - comments: 14929, - communities: 191, - users_active_day: 8, - users_active_week: 16, - users_active_month: 28, - users_active_half_year: 126, - }, - }, - admins: [ - { - person: { - id: 2, - name: "masterofballs", - display_name: "Masterofballs", - avatar: "https://wolfballs.com/pictrs/image/BXRqriWv6P.jpg", - banned: false, - published: "2021-10-09T22:33:32.506678", - updated: "2022-04-20T20:47:32.233188", - actor_id: "https://wolfballs.com/u/masterofballs", - bio: "Ancient Eastern Demon. Sealed by the late emperor with a blood seal during the Zhou Dynasty. Masterofballs was accidentally released from his prison under Tiananmen square in 1989. \n\nNow free to spread his Chaos across the fediverse.\n\nFavorite foods: Raw Donkey meat and rice wine. \n", - local: true, - banner: null, - deleted: false, - inbox_url: "https://wolfballs.com/u/masterofballs/inbox", - shared_inbox_url: "https://wolfballs.com/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 2118, - post_score: 6298, - comment_count: 2639, - comment_score: 5176, - }, - }, - { - person: { - id: 10, - name: "wigglehard", - display_name: "Wiggle Hard", - avatar: - "https://wolfballs.com/pictrs/image/1d9af1f4-5de4-4de1-b559-bbca9d97131c.jpeg", - banned: false, - published: "2021-10-20T16:38:40.254724", - updated: "2022-02-26T14:39:51.604706", - actor_id: "https://wolfballs.com/u/wigglehard", - bio: "Christian MAGA trucker, site admin, creator of freeforum. Get involved in local politics, take it all back from the ground up. Share wolfballs on other sites", - local: true, - banner: - "https://wolfballs.com/pictrs/image/13b54f57-9737-4d58-875f-9d391a9e6cdc.jpeg", - deleted: false, - inbox_url: "https://wolfballs.com/u/wigglehard/inbox", - shared_inbox_url: "https://wolfballs.com/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 9, - person_id: 10, - post_count: 2311, - post_score: 6851, - comment_count: 1436, - comment_score: 2906, - }, - }, - { - person: { - id: 33, - name: "BearBalls", + id: 43448, + name: "smorks", display_name: null, avatar: null, banned: false, - published: "2021-10-30T00:28:46.483327", - updated: null, - actor_id: "https://wolfballs.com/u/BearBalls", - bio: null, + published: "2021-11-18T18:08:43.931879", + updated: "2022-02-25T22:27:36.807427", + actor_id: "https://lemmy.ca/u/smorks", + bio: "fediverse enthusiast, lurker, [lemmy.ca](https://lemmy.ca/) admin", local: true, banner: null, deleted: false, - inbox_url: "https://wolfballs.com/u/BearBalls/inbox", - shared_inbox_url: "https://wolfballs.com/inbox", - matrix_user_id: null, + inbox_url: "https://lemmy.ca/u/smorks/inbox", + shared_inbox_url: "https://lemmy.ca/inbox", + matrix_user_id: "@smorks:feddi.ca", admin: true, bot_account: false, ban_expires: null, }, counts: { - id: 32, - person_id: 33, - post_count: 28, - post_score: 81, - comment_count: 77, - comment_score: 185, + id: 3964, + person_id: 43448, + post_count: 6, + post_score: 24, + comment_count: 33, + comment_score: 81, }, }, ], - online: 11, + online: 2, version: "0.16.3", my_user: null, federated_instances: { linked: [ - "a.tide.tk", "anonsys.net", - "baraza.africa", - "exploding-heads.com", + "beehaw.org", + "f.freinetz.ch", + "feddit.de", "gtio.io", - "legbeard.xyz", - "lemmy.shrieker.net", + "heapoverflow.ml", + "lemmy.161.social", + "lemmy.ca", + "lemmy.glasgow.social", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmy.schuerz.at", + "lemmygrad.ml", "libranet.de", - "loma.ml", - "lotide.fbxl.net", "mander.xyz", + "midwest.social", "narwhal.city", - "social.hannebrook.info", + "rollenspiel.group", + "slrpnk.net", + "sopuli.xyz", + "talk.thomcat.rocks", + "verity.fail", ], allowed: null, - blocked: [ - "lemmy.ml", - "lemmygrad.ml", - "sopuli.xyz", - "https://scholar.social", - "pawoo.net", - "mastodon.social", - "donotban.com", - "mastodon.cc", - "mastodon.green", - "nerdculture.de", - "freefedifolk.com", - "social.teci.world", - "redliberal.com", - "pawoo.net", - ], + blocked: null, }, }, }, @@ -1492,13 +1589,13 @@ export const instance_stats = { counts: { id: 1, site_id: 1, - users: 99, - posts: 513, - comments: 586, + users: 102, + posts: 550, + comments: 612, communities: 18, users_active_day: 2, - users_active_week: 6, - users_active_month: 17, + users_active_week: 4, + users_active_month: 12, users_active_half_year: 49, }, }, @@ -1528,10 +1625,10 @@ export const instance_stats = { counts: { id: 1, person_id: 2, - post_count: 89, - post_score: 404, - comment_count: 145, - comment_score: 439, + post_count: 99, + post_score: 457, + comment_count: 157, + comment_score: 473, }, }, { @@ -1597,7 +1694,7 @@ export const instance_stats = { }, }, ], - online: 3, + online: 2, version: "0.16.3", my_user: null, federated_instances: { @@ -1629,562 +1726,6 @@ export const instance_stats = { }, }, }, - { - domain: "lemmy.ca", - site_info: { - site_view: { - site: { - id: 1, - name: "Lemmy dot C.A.", - sidebar: - '### Welcome to Lemmy.CA!\n\n"Lemmy dot C.A." is so named due to it running the Lemmy software (see the links in the very bottom right for more info), being part of the Lemmy side of [the Fediverse](https://en.wikipedia.org/wiki/Fediverse), and it\'s (somewhat) geared toward Canucks, hosted in Canuckistan, and run by a Canuck. It is, however, not at all restricted to Canucks, or Canuck culture/topics/etc. All are welcome!\n\n#### We have some rules here:\n\n- No bigotry - including racism, sexism, ableism, homophobia, or xenophobia. [Code of Conduct](https://join-lemmy.org/docs/en/code_of_conduct.html).\n- Be respectful. Everyone should feel welcome here.\n- No porn.\n- No Ads / Spamming.\n\n(Much of this is all based on the well-established groundwork of the Lemmy home instance, [lemmy.ml](https://lemmy.ml))', - published: "2020-12-12T23:59:08.349434", - updated: "2022-03-02T04:39:00.184279", - enable_downvotes: true, - open_registration: true, - enable_nsfw: true, - icon: "https://lemmy.ca/pictrs/image/AX0BZv78yT.png", - banner: null, - description: - "A canadian-run community, geared towards canadians, but all are welcome!", - community_creation_admin_only: false, - require_email_verification: false, - require_application: true, - application_question: - "To combat brigading, we have restricted user registration on this instance. Please write a short description containing:\n\n* Why you would like to join [lemmy.ca](https://lemmy.ca/)\n* What communities you would most like to participate in\n* How or why you chose the username you did\n\nWe use these questions to screen for and discourage spammers and trolls. We will try our best to review your application as soon as possible.", - private_instance: false, - actor_id: "https://lemmy.ca/", - last_refreshed_at: "2022-04-30T03:25:17.124320", - inbox_url: "https://lemmy.ca/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv96yTooWgOj6EQUYBPm2\nzf3GGvjWAgIkZEugq/7KyOP01m8N5rT0jMDEMS10blkkrqN/nEU6r4dQEq6YwrjZ\nyEV1h8gbf0B3Fd6dbo9BEj3lQUf1NA2hskToVn9BcGAk7gfpY3L7gdLu6Lzm/TKG\n/rN7IkdBbmo7Xi9ULE3/7e1z6Vdjjli3A7DAjt6PszxgEAsa9t2eKvlWMEyde0y5\nMJFmYMlOknno6Zh6AbEdM4uNe28MjKRFU4MYb/acePKrGFD3xpCamyRjQmgMxw5v\n1yh3IEyQmJGe7sdcixkGQgzy1rXAvb456kK+FtlWtsdVcYihTorbw4AWsS9pzjMZ\nuQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "browser", - }, - counts: { - id: 1, - site_id: 1, - users: 323, - posts: 707, - comments: 958, - communities: 61, - users_active_day: 3, - users_active_week: 9, - users_active_month: 17, - users_active_half_year: 106, - }, - }, - admins: [ - { - person: { - id: 3, - name: "kinetix", - display_name: "Kinetix", - avatar: "https://lemmy.ca/pictrs/image/Y2exKgUpg8.png", - banned: false, - published: "2020-12-13T00:14:53.385865", - updated: "2021-02-09T20:37:12.039880", - actor_id: "https://lemmy.ca/u/kinetix", - bio: "lemmy.ca admin and general fediverse lurker\n\nOther accounts:\n- [Peertube](https://video.mycrowd.ca/accounts/kinetix/video-channels)\n- [Pleroma](https://mycrowd.ca/kinetix)\n- [Friendica](https://social.isurf.ca/profile/kinetix)", - local: true, - banner: null, - deleted: false, - inbox_url: "https://lemmy.ca/u/kinetix/inbox", - shared_inbox_url: "https://lemmy.ca/inbox", - matrix_user_id: "@kinetix:matrix.isurf.ca", - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 3, - person_id: 3, - post_count: 66, - post_score: 199, - comment_count: 258, - comment_score: 579, - }, - }, - { - person: { - id: 43448, - name: "smorks", - display_name: null, - avatar: null, - banned: false, - published: "2021-11-18T18:08:43.931879", - updated: "2022-02-25T22:27:36.807427", - actor_id: "https://lemmy.ca/u/smorks", - bio: "fediverse enthusiast, lurker, [lemmy.ca](https://lemmy.ca/) admin", - local: true, - banner: null, - deleted: false, - inbox_url: "https://lemmy.ca/u/smorks/inbox", - shared_inbox_url: "https://lemmy.ca/inbox", - matrix_user_id: "@smorks:feddi.ca", - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 3964, - person_id: 43448, - post_count: 6, - post_score: 24, - comment_count: 30, - comment_score: 75, - }, - }, - ], - online: 0, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: [ - "anonsys.net", - "beehaw.org", - "f.freinetz.ch", - "feddit.de", - "gtio.io", - "heapoverflow.ml", - "lemmy.161.social", - "lemmy.ca", - "lemmy.glasgow.social", - "lemmy.ml", - "lemmy.perthchat.org", - "lemmy.schuerz.at", - "lemmygrad.ml", - "libranet.de", - "mander.xyz", - "midwest.social", - "narwhal.city", - "rollenspiel.group", - "slrpnk.net", - "sopuli.xyz", - "talk.thomcat.rocks", - "verity.fail", - ], - allowed: null, - blocked: null, - }, - }, - }, - { - domain: "exploding-heads.com", - site_info: { - site_view: { - site: { - id: 1, - name: "Exploding Heads", - sidebar: - "We are a community of free people tired of propaganda fed to us government, media, big tech, crony capitalists, and self anointed elites.\n\n**Rules**\n- Be authentic.\n- Be respectful. Everyone should feel welcome here.\n- No porn.\n- No ads / spamming.\n- No doxing\n- No threats or personal insults\n- No discrimination\n\n[Terms](https://exploding-heads.com/post/1) - [Privacy Policy](https://exploding-heads.com/post/2) - \n\nExploding Heads © 2022. All rights reserved\n\n", - published: "2022-02-27T17:24:00.976189", - updated: "2022-04-11T14:26:55.169524", - enable_downvotes: true, - open_registration: true, - enable_nsfw: true, - icon: "https://exploding-heads.com/pictrs/image/f48abd93-f2d9-4a44-a327-380e063744b1.png", - banner: null, - description: "Things that make your head explode", - community_creation_admin_only: true, - require_email_verification: false, - require_application: false, - application_question: null, - private_instance: false, - actor_id: "https://exploding-heads.com/", - last_refreshed_at: "2022-05-05T22:05:33.011323", - inbox_url: "https://exploding-heads.com/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA00+1Y/zk6zVKHJVqEBM1\n7/eDqfbzmZ98WiLQ8jMexrcofqkX1XKOYBD+/Zqxu8xvz2LT/ER1NnGD6XyoLqac\nOggr0R0vJFS2VckiaV0M+7j9J3cx4RexAlhbaIQydz0o0RdiTiebp2xwDPhhX1Kc\nO/p+n8i0vxy8MIoEeGajiDFE5iKnd1a9UoNO36f6fDp9wZw2GGH0hYO+uMlehmhT\nQIOv5jpXJbLbmUlD2mX0ZUYy70+NAE4Ma7GC+Yw6UKz3T/m5derLfmWexDNtUQuw\nk24RCBH7QVao0MkuYVAyW1UrljI4Y3nA4rsM5cnzzZMmfoRD7St86o7d1hGxjo/9\nKQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "litera", - }, - counts: { - id: 1, - site_id: 1, - users: 17, - posts: 1462, - comments: 84, - communities: 49, - users_active_day: 2, - users_active_week: 2, - users_active_month: 16, - users_active_half_year: 16, - }, - }, - admins: [ - { - person: { - id: 2, - name: "admin", - display_name: "Kapow", - avatar: null, - banned: false, - published: "2022-02-27T17:20:27.414369", - updated: "2022-05-01T11:58:16.192546", - actor_id: "https://exploding-heads.com/u/admin", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://exploding-heads.com/u/admin/inbox", - shared_inbox_url: "https://exploding-heads.com/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 1446, - post_score: 1645, - comment_count: 46, - comment_score: 77, - }, - }, - ], - online: 2, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: [ - "baraza.africa", - "beehaw.org", - "buckeyestate.social", - "community.xmpp.net", - "exploding-heads.com", - "fapsi.be", - "gtio.io", - "heapoverflow.ml", - "lemmy.ca", - "lemmy.mesh.party", - "lemmy.ml", - "lemmy.perthchat.org", - "lemmygrad.ml", - "mander.xyz", - "midwest.social", - "slrpnk.net", - "sopuli.xyz", - "verity.fail", - "wolfballs.com", - ], - allowed: null, - blocked: null, - }, - }, - }, - { - domain: "feddit.it", - site_info: { - site_view: { - site: { - id: 1, - name: "Feddit.it", - sidebar: - "#### Cos'è Fedd**it**\nFedd**it** è l'alternativa italiana a Reddit, basata sul software [Lemmy](https://www.lealternative.net/2022/04/06/cose-lemmy/), uno dei progetti più interessanti del [fediverso](https://framatube.org/w/9dRFC6Ya11NCVeYKn8ZhiD?subtitle=it).\n\n#### Informazioni\nQuesto server di **Lemmy** è gestito da [Poliverso](https://poliverso.org/) e [Le Alternative](https://www.lealternative.net/).\n\n#### Regole\n\n🇮🇹 In questo server è necessario scrivere principalmente utilizzando la lingua italiana.\n\n🛎 Attualmente prima di poter aprire una comunità è necessaria l'approvazione degli amministratori [@poliverso@feddit.it](https://feddit.it/u/poliverso) o [@skariko@feddit.it](https://feddit.it/u/skariko). Potete aprire una richiesta [cliccando qui](https://feddit.it/c/main), spiegando di cosa parlerà la comunità e come sarà gestita.\n\n📜 Ogni comunità sceglierà in autonomia le sue regole, i suoi moderatori e le sue esigenze. Non sarà tuttavia possibile aprire comunità con contenuti pornografici, illegali o con discriminazioni razziali o di genere.\n\n🚯 Le comunità politiche dovranno accettare e sottoscrivere una clausola sull'antifascismo.\n\n⛔️ Lo spam, i bot e i messaggi ripetuti o molesti saranno rimossi a prescindere dalle regole della comunità.\n\n♻️ Le comunità che non riusciranno ad auto-moderarsi verranno richiamate dagli admin e se non sarà possibile trovare una soluzione verranno eliminate.\n\n#### Come si mantiene Feddit?\n\nÈ un progetto indipendente e senza pubblicità, se volete potete aiutare con una [donazione](https://liberapay.com/Feddit-it) la gestione di questo server.", - published: "2022-05-05T07:40:35.127186", - updated: "2022-05-14T11:37:01.482839", - enable_downvotes: true, - open_registration: true, - enable_nsfw: true, - icon: "https://feddit.it/pictrs/image/64fddac4-ef09-44e4-ba91-280ece81605a.png", - banner: null, - description: "L'alternativa italiana a Reddit", - community_creation_admin_only: true, - require_email_verification: false, - require_application: true, - application_question: "Perché vuoi registrarti a Fedd**it**?", - private_instance: false, - actor_id: "https://feddit.it/", - last_refreshed_at: "2022-05-15T00:38:22.063719", - inbox_url: "https://feddit.it/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAodm1GHFIQKOFg09JHD2g\nViXV1UOrL9h+eGWy5xkgPoIlO32WRfSU/LA6RNsVMFS4+C0PxhJeRxzCkSMRutOK\nsaRIqSyiI8csCY0Sy5RWm1+AZLVSlLXxoElzGBC2v+EwFJvMmgdDcdsVtHUcKbVy\n2qYOPDj7tk/YrIk8V5NTblbEN8dg0loMMKi2rvp5S0C27sgL5mcTxpPIjarWCt9s\n9iqGeKWwnWFn9JLBjn9eJHBRPoK1Jq27Wh5xHjsw48JSukkmOMYtQmXVc3nTnMSr\nzHYuGXZuMCu81L8yaC61sLxnG5oRv/9IJqJP6Qp2dWVOQhorCkHtKS8eYnfDKBCS\nAQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "browser", - }, - counts: { - id: 1, - site_id: 1, - users: 17, - posts: 27, - comments: 18, - communities: 8, - users_active_day: 3, - users_active_week: 9, - users_active_month: 9, - users_active_half_year: 9, - }, - }, - admins: [ - { - person: { - id: 2, - name: "skariko", - display_name: null, - avatar: - "https://feddit.it/pictrs/image/2dea2df0-6019-4123-8322-af8072b863d3.jpeg", - banned: false, - published: "2022-05-05T07:32:10.201268", - updated: "2022-05-10T10:28:37.381607", - actor_id: "https://feddit.it/u/skariko", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://feddit.it/u/skariko/inbox", - shared_inbox_url: "https://feddit.it/inbox", - matrix_user_id: "@skariko:matrix.org", - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 8, - post_score: 12, - comment_count: 1, - comment_score: 1, - }, - }, - { - person: { - id: 3, - name: "poliverso", - display_name: null, - avatar: - "https://feddit.it/pictrs/image/c3400417-90bd-44a7-9cc1-7371115ad112.png", - banned: false, - published: "2022-05-05T08:01:16.635627", - updated: "2022-05-13T06:19:19.896026", - actor_id: "https://feddit.it/u/poliverso", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://feddit.it/u/poliverso/inbox", - shared_inbox_url: "https://feddit.it/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 2, - person_id: 3, - post_count: 5, - post_score: 6, - comment_count: 2, - comment_score: 2, - }, - }, - ], - online: 3, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: [ - "beehaw.org", - "buckeyestate.social", - "community.nicfab.it", - "community.xmpp.net", - "ds9.lemmy.ml", - "enterprise.lemmy.ml", - "fapsi.be", - "feddit.de", - "feddit.it", - "federated.community", - "fuckreddit.tryp.digital", - "lemmy.ca", - "lemmy.cat", - "lemmy.ml", - "lemmygrad.ml", - "libranet.de", - "peertube.openstreetmap.fr", - "peertube.uno", - "poliverso.org", - "social.gl-como.it", - "social.lealternative.net", - ], - allowed: null, - blocked: null, - }, - }, - }, - { - domain: "midwest.social", - site_info: { - site_view: { - site: { - id: 1, - name: "midwest.social", - sidebar: - "# Rules\n\n1. No porn.\n2. No bigotry, hate speech.\n3. No ads / spamming.\n4. No conspiracies / QAnon / antivaxx sentiment\n\nPlease either use the web app or the Jerboa mobile app. Lemmur does not work very well at the moment.", - published: "2021-08-04T23:06:11.478061", - updated: "2022-05-12T01:25:15.775367", - enable_downvotes: true, - open_registration: true, - enable_nsfw: true, - icon: "https://midwest.social/pictrs/image/Rbal22EuF8.png", - banner: "https://midwest.social/pictrs/image/mx5qNVtBHi.jpg", - description: - "A lemmy server for, but not limited to, leftists in the Midwest USA", - community_creation_admin_only: false, - require_email_verification: false, - require_application: true, - application_question: - "Enter an email address above if you want to be notified when you are approved.\n\nWhy do you want to join this instance?\n\nWhy did you choose the username you did?\n", - private_instance: false, - actor_id: "https://midwest.social/", - last_refreshed_at: "2022-05-12T01:17:04.175958", - inbox_url: "https://midwest.social/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvmiuiRSt+vugPdIACwPz\nhjNq0sr/8O/WqOqa6Z7+y5Gj/kkSiPp0VkEQatzRcgydn9VLiqq3eqxx5uQT+v4n\nNbHdf2vez62WyxFw7TzTSPgyHtqpJ7/BC3mXXH8jHxLw+chNfboOB3oEaBPvqSi9\nqILe0apMceXFGFUeeCFiOeIDSifrpB5sy/2S0YsBy0woaFZmzL6M3gpSCTfqaGNH\n8xbnbNlVVlvSDf8pVaspFSHfy0HRmcfNQ/lru92gKzBSzx5rTNLQwbdmwHWUzO5T\nsc54AtBrhEK52VnQVVazuQmtW8VHKb+sCy7rsRsyj363/U5tkA+KDBXp+sSOMkyb\nvQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "browser", - }, - counts: { - id: 1, - site_id: 1, - users: 122, - posts: 569, - comments: 527, - communities: 11, - users_active_day: 3, - users_active_week: 7, - users_active_month: 8, - users_active_half_year: 28, - }, - }, - admins: [ - { - person: { - id: 2, - name: "seahorse", - display_name: null, - avatar: - "https://midwest.social/pictrs/image/abc683d8-b47e-47d2-a12c-52cb48acb938.jpeg", - banned: false, - published: "2021-08-04T23:06:11.078538", - updated: "2022-03-18T23:03:49.458375", - actor_id: "https://midwest.social/u/seahorse", - bio: "I run the midwest.social instance. I'm also active on lemmy.ml. [@seahorse@lemmy.ml](https://lemmy.ml/u/seahorse) ", - local: true, - banner: null, - deleted: false, - inbox_url: "https://midwest.social/u/seahorse/inbox", - shared_inbox_url: "https://midwest.social/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 139, - post_score: 1174, - comment_count: 161, - comment_score: 696, - }, - }, - { - person: { - id: 11771, - name: "FaygoOfficial", - display_name: null, - avatar: null, - banned: false, - published: "2021-11-14T13:07:12.385636", - updated: "2022-05-01T13:06:40.233517", - actor_id: "https://midwest.social/u/FaygoOfficial", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://midwest.social/u/FaygoOfficial/inbox", - shared_inbox_url: "https://midwest.social/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1498, - person_id: 11771, - post_count: 227, - post_score: 687, - comment_count: 131, - comment_score: 454, - }, - }, - { - person: { - id: 45303, - name: "Redpandalovely", - display_name: "Redpandalovely ", - avatar: - "https://midwest.social/pictrs/image/58abad8a-7cdc-4537-b085-2b231dca44c3.jpeg", - banned: false, - published: "2022-02-09T19:53:42.926425", - updated: "2022-04-16T01:14:36.894346", - actor_id: "https://midwest.social/u/Redpandalovely", - bio: "OHIO", - local: true, - banner: null, - deleted: false, - inbox_url: "https://midwest.social/u/Redpandalovely/inbox", - shared_inbox_url: "https://midwest.social/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 3346, - person_id: 45303, - post_count: 73, - post_score: 578, - comment_count: 83, - comment_score: 276, - }, - }, - ], - online: 2, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: [ - "baraza.africa", - "beehaw.org", - "buckeyestate.social", - "community.nicfab.it", - "gtio.io", - "lemmy.ca", - "lemmy.lohn.in", - "lemmy.ml", - "lemmy.perthchat.org", - "lemmygrad.ml", - "mander.xyz", - "slrpnk.net", - "sopuli.xyz", - ], - allowed: null, - blocked: [ - "wolfballs.com", - "narwhal.city", - "a.tide.tk", - "lotide.fbxl.net", - "dev.narwhal.city", - "exploding-heads.com", - "collapse.cat", - "elgiebety.pl", - ], - }, - }, - }, { domain: "lemmy.eus", site_info: { @@ -2220,14 +1761,14 @@ export const instance_stats = { counts: { id: 1, site_id: 1, - users: 489, - posts: 739, - comments: 1245, + users: 503, + posts: 744, + comments: 1257, communities: 60, users_active_day: 1, - users_active_week: 3, - users_active_month: 8, - users_active_half_year: 134, + users_active_week: 5, + users_active_month: 9, + users_active_half_year: 128, }, }, admins: [ @@ -2287,8 +1828,8 @@ export const instance_stats = { person_id: 3, post_count: 58, post_score: 193, - comment_count: 146, - comment_score: 189, + comment_count: 147, + comment_score: 192, }, }, { @@ -2345,10 +1886,10 @@ export const instance_stats = { counts: { id: 7, person_id: 5, - post_count: 77, - post_score: 275, - comment_count: 91, - comment_score: 145, + post_count: 79, + post_score: 284, + comment_count: 92, + comment_score: 146, }, }, { @@ -2375,8 +1916,8 @@ export const instance_stats = { counts: { id: 6, person_id: 6, - post_count: 70, - post_score: 244, + post_count: 71, + post_score: 249, comment_count: 117, comment_score: 166, }, @@ -2405,14 +1946,14 @@ export const instance_stats = { counts: { id: 5, person_id: 7, - post_count: 86, - post_score: 267, - comment_count: 88, - comment_score: 136, + post_count: 88, + post_score: 269, + comment_count: 90, + comment_score: 139, }, }, ], - online: 6, + online: 4, version: "0.16.2", my_user: null, federated_instances: { @@ -2426,6 +1967,7 @@ export const instance_stats = { "lemmy.ml", "lemmy.perthchat.org", "lemmy.schuerz.at", + "lemmygrad.ml", "mander.xyz", "sopuli.xyz", ], @@ -2435,65 +1977,68 @@ export const instance_stats = { }, }, { - domain: "federated.community", + domain: "midwest.social", site_info: { site_view: { site: { id: 1, - name: "Federated.community", - sidebar: null, - published: "2022-05-06T20:59:20.100868", - updated: "2022-05-07T15:50:25.561948", + name: "midwest.social", + sidebar: + "# Rules\n\n1. No porn.\n2. No bigotry, hate speech.\n3. No ads / spamming.\n4. No conspiracies / QAnon / antivaxx sentiment\n\nPlease either use the web app or the Jerboa mobile app. Lemmur does not work very well at the moment.", + published: "2021-08-04T23:06:11.478061", + updated: "2022-05-12T01:25:15.775367", enable_downvotes: true, open_registration: true, enable_nsfw: true, - icon: "https://federated.community/pictrs/image/50c9c066-d8c0-47a4-8860-c68b040f1a67.png", - banner: - "https://federated.community/pictrs/image/5805879e-0adb-4667-bac1-eafe3b5ab774.png", - description: "A public general-purpose Lemmy instance.", + icon: "https://midwest.social/pictrs/image/Rbal22EuF8.png", + banner: "https://midwest.social/pictrs/image/mx5qNVtBHi.jpg", + description: + "A lemmy server for, but not limited to, leftists in the Midwest USA", community_creation_admin_only: false, - require_email_verification: true, - require_application: false, - application_question: null, + require_email_verification: false, + require_application: true, + application_question: + "Enter an email address above if you want to be notified when you are approved.\n\nWhy do you want to join this instance?\n\nWhy did you choose the username you did?\n", private_instance: false, - actor_id: "https://federated.community/", - last_refreshed_at: "2022-05-07T15:21:32.503250", - inbox_url: "https://federated.community/site_inbox", + actor_id: "https://midwest.social/", + last_refreshed_at: "2022-05-12T01:17:04.175958", + inbox_url: "https://midwest.social/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy+k2CTB6GptGMiR84iLq\ng0xfGdWoaa//6ocIAPL14hBE5498BVv0FRnOsvOpWcq5ZLf4ax4LcvhZcjA77IrN\nup1SyUR1SbORbp6/jbL6rgEtnbXZDKNZOD4bEeO+H7UDNdrs2VOi3KjZ3eb4X3xg\nd8yj6S6zkpN/c+WiSgNpxMy4QASL2bARbu+hZ3Q3wD9KyFKQnDUj0/EloAMfvKCS\nmiTWwM/NYR4PEFxUINuvTliVtex9nTZujDR2ZQuh+2nyjpgYr/Ww5FqmxE0PIoKJ\n1NPM5IbEwZcoqsgPJAAWM8vagV3gaCe3w6V8pU2B7nmgQudP2vdSHJ4Sa3eNPkH0\n3QIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "cyborg", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvmiuiRSt+vugPdIACwPz\nhjNq0sr/8O/WqOqa6Z7+y5Gj/kkSiPp0VkEQatzRcgydn9VLiqq3eqxx5uQT+v4n\nNbHdf2vez62WyxFw7TzTSPgyHtqpJ7/BC3mXXH8jHxLw+chNfboOB3oEaBPvqSi9\nqILe0apMceXFGFUeeCFiOeIDSifrpB5sy/2S0YsBy0woaFZmzL6M3gpSCTfqaGNH\n8xbnbNlVVlvSDf8pVaspFSHfy0HRmcfNQ/lru92gKzBSzx5rTNLQwbdmwHWUzO5T\nsc54AtBrhEK52VnQVVazuQmtW8VHKb+sCy7rsRsyj363/U5tkA+KDBXp+sSOMkyb\nvQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", }, counts: { id: 1, site_id: 1, - users: 7, - posts: 10, - comments: 13, - communities: 5, - users_active_day: 2, - users_active_week: 7, - users_active_month: 7, - users_active_half_year: 7, + users: 129, + posts: 576, + comments: 539, + communities: 11, + users_active_day: 1, + users_active_week: 4, + users_active_month: 8, + users_active_half_year: 28, }, }, admins: [ { person: { id: 2, - name: "admin", + name: "seahorse", display_name: null, - avatar: null, + avatar: + "https://midwest.social/pictrs/image/abc683d8-b47e-47d2-a12c-52cb48acb938.jpeg", banned: false, - published: "2022-05-06T20:57:34.054690", - updated: null, - actor_id: "https://federated.community/u/admin", - bio: null, + published: "2021-08-04T23:06:11.078538", + updated: "2022-03-18T23:03:49.458375", + actor_id: "https://midwest.social/u/seahorse", + bio: "I run the midwest.social instance. I'm also active on lemmy.ml. [@seahorse@lemmy.ml](https://lemmy.ml/u/seahorse) ", local: true, banner: null, deleted: false, - inbox_url: "https://federated.community/u/admin/inbox", - shared_inbox_url: "https://federated.community/inbox", + inbox_url: "https://midwest.social/u/seahorse/inbox", + shared_inbox_url: "https://midwest.social/inbox", matrix_user_id: null, admin: true, bot_account: false, @@ -2502,52 +2047,104 @@ export const instance_stats = { counts: { id: 1, person_id: 2, - post_count: 1, - post_score: 2, - comment_count: 0, - comment_score: 0, + post_count: 145, + post_score: 1222, + comment_count: 166, + comment_score: 722, }, }, { person: { - id: 3, - name: "gme", - display_name: "George E.", - avatar: - "https://federated.community/pictrs/image/31115de3-48e5-4f8c-be1b-08ce4216f3de.jpeg", + id: 11771, + name: "FaygoOfficial", + display_name: null, + avatar: null, banned: false, - published: "2022-05-06T21:13:53.610089", - updated: "2022-05-07T20:10:26.660820", - actor_id: "https://federated.community/u/gme", - bio: "Just a geek trying to make a positive difference in this world.\n\n**Pleroma:** [@gme@bofh.social](https://bofh.social/@gme)\\\n**Jabber/XMPP:** [gme@bofh.chat](xmpp://gme@bofh.chat)\n\n", + published: "2021-11-14T13:07:12.385636", + updated: "2022-05-01T13:06:40.233517", + actor_id: "https://midwest.social/u/FaygoOfficial", + bio: null, local: true, - banner: - "https://federated.community/pictrs/image/55e54d19-2ed7-4f96-b71a-96a86e9a2f8a.jpeg", + banner: null, deleted: false, - inbox_url: "https://federated.community/u/gme/inbox", - shared_inbox_url: "https://federated.community/inbox", + inbox_url: "https://midwest.social/u/FaygoOfficial/inbox", + shared_inbox_url: "https://midwest.social/inbox", matrix_user_id: null, admin: true, bot_account: false, ban_expires: null, }, counts: { - id: 2, - person_id: 3, - post_count: 3, - post_score: 5, - comment_count: 5, - comment_score: 24, + id: 1498, + person_id: 11771, + post_count: 227, + post_score: 688, + comment_count: 131, + comment_score: 454, + }, + }, + { + person: { + id: 45303, + name: "Redpandalovely", + display_name: "Redpandalovely ", + avatar: + "https://midwest.social/pictrs/image/58abad8a-7cdc-4537-b085-2b231dca44c3.jpeg", + banned: false, + published: "2022-02-09T19:53:42.926425", + updated: "2022-04-16T01:14:36.894346", + actor_id: "https://midwest.social/u/Redpandalovely", + bio: "OHIO", + local: true, + banner: null, + deleted: false, + inbox_url: "https://midwest.social/u/Redpandalovely/inbox", + shared_inbox_url: "https://midwest.social/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 3346, + person_id: 45303, + post_count: 74, + post_score: 582, + comment_count: 88, + comment_score: 286, }, }, ], - online: 0, + online: 2, version: "0.16.3", my_user: null, federated_instances: { - linked: ["federated.community", "lemmy.ml"], + linked: [ + "baraza.africa", + "beehaw.org", + "buckeyestate.social", + "community.nicfab.it", + "gtio.io", + "lemmy.ca", + "lemmy.lohn.in", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmygrad.ml", + "mander.xyz", + "slrpnk.net", + "sopuli.xyz", + ], allowed: null, - blocked: null, + blocked: [ + "wolfballs.com", + "narwhal.city", + "a.tide.tk", + "lotide.fbxl.net", + "dev.narwhal.city", + "exploding-heads.com", + "collapse.cat", + "elgiebety.pl", + ], }, }, }, @@ -2585,14 +2182,14 @@ export const instance_stats = { counts: { id: 1, site_id: 1, - users: 14, - posts: 13, - comments: 86, + users: 15, + posts: 18, + comments: 118, communities: 6, users_active_day: 0, users_active_week: 3, users_active_month: 7, - users_active_half_year: 8, + users_active_half_year: 10, }, }, admins: [ @@ -2653,12 +2250,12 @@ export const instance_stats = { person_id: 3, post_count: 2, post_score: 5, - comment_count: 34, - comment_score: 71, + comment_count: 42, + comment_score: 83, }, }, ], - online: 3, + online: 1, version: "0.16.3", my_user: null, federated_instances: { @@ -2668,6 +2265,123 @@ export const instance_stats = { }, }, }, + { + domain: "federated.community", + site_info: { + site_view: { + site: { + id: 1, + name: "Federated.community", + sidebar: null, + published: "2022-05-06T20:59:20.100868", + updated: "2022-05-07T15:50:25.561948", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://federated.community/pictrs/image/50c9c066-d8c0-47a4-8860-c68b040f1a67.png", + banner: + "https://federated.community/pictrs/image/5805879e-0adb-4667-bac1-eafe3b5ab774.png", + description: "A public general-purpose Lemmy instance.", + community_creation_admin_only: false, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://federated.community/", + last_refreshed_at: "2022-05-07T15:21:32.503250", + inbox_url: "https://federated.community/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy+k2CTB6GptGMiR84iLq\ng0xfGdWoaa//6ocIAPL14hBE5498BVv0FRnOsvOpWcq5ZLf4ax4LcvhZcjA77IrN\nup1SyUR1SbORbp6/jbL6rgEtnbXZDKNZOD4bEeO+H7UDNdrs2VOi3KjZ3eb4X3xg\nd8yj6S6zkpN/c+WiSgNpxMy4QASL2bARbu+hZ3Q3wD9KyFKQnDUj0/EloAMfvKCS\nmiTWwM/NYR4PEFxUINuvTliVtex9nTZujDR2ZQuh+2nyjpgYr/Ww5FqmxE0PIoKJ\n1NPM5IbEwZcoqsgPJAAWM8vagV3gaCe3w6V8pU2B7nmgQudP2vdSHJ4Sa3eNPkH0\n3QIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "cyborg", + }, + counts: { + id: 1, + site_id: 1, + users: 7, + posts: 10, + comments: 13, + communities: 5, + users_active_day: 0, + users_active_week: 0, + users_active_month: 7, + users_active_half_year: 7, + }, + }, + admins: [ + { + person: { + id: 2, + name: "admin", + display_name: null, + avatar: null, + banned: false, + published: "2022-05-06T20:57:34.054690", + updated: null, + actor_id: "https://federated.community/u/admin", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://federated.community/u/admin/inbox", + shared_inbox_url: "https://federated.community/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1, + post_score: 3, + comment_count: 0, + comment_score: 0, + }, + }, + { + person: { + id: 3, + name: "gme", + display_name: "George E.", + avatar: + "https://federated.community/pictrs/image/31115de3-48e5-4f8c-be1b-08ce4216f3de.jpeg", + banned: false, + published: "2022-05-06T21:13:53.610089", + updated: "2022-05-07T20:10:26.660820", + actor_id: "https://federated.community/u/gme", + bio: "Just a geek trying to make a positive difference in this world.\n\n**Pleroma:** [@gme@bofh.social](https://bofh.social/@gme)\\\n**Jabber/XMPP:** [gme@bofh.chat](xmpp://gme@bofh.chat)\n\n", + local: true, + banner: + "https://federated.community/pictrs/image/55e54d19-2ed7-4f96-b71a-96a86e9a2f8a.jpeg", + deleted: false, + inbox_url: "https://federated.community/u/gme/inbox", + shared_inbox_url: "https://federated.community/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 3, + post_score: 5, + comment_count: 5, + comment_score: 24, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["federated.community", "lemmy.ml"], + allowed: null, + blocked: null, + }, + }, + }, { domain: "mander.xyz", site_info: { @@ -2693,24 +2407,24 @@ export const instance_stats = { "To combat troll brigading and the spamming of ads, the registration to this instance is temporarily restricted. You can leave a short message stating why you would like to join this instance and I will accept your application as soon as possible. \n\nAt the moment, e-mail is not configured properly. The only way to check whether your account has been accepted is to try to log-in later. ", private_instance: false, actor_id: "https://mander.xyz/", - last_refreshed_at: "2022-04-08T22:46:22.199879", + last_refreshed_at: "2022-05-20T11:23:32.584466", inbox_url: "https://mander.xyz/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6sGwDA0k0dWzh1Dx78rV\njVjrWUHJlvn6ukK9ERgRYMRFcg8Tt8WVplTDygmcKdnpukX1vYzHWuXOpISiegPe\nc9gWvJf52dapYClq/dsRCEzPbKpQoNNL1w4AibWcIm1frsi5j931HcEthgAo5pDE\nvXEQL3tkKJyrTvYVaYvoISFrDcS0E0WNeNoDaiGOql67NngzYUDiCb6WJ7GaIv3M\n8kAeg9tFI0YPBk1/+GGLroO2+O5Js/EhA08ur9UvflIJbrIRo2SntJx04twcCsxQ\n9n+xYIR4EqOQW9oJ/1Ibg45Ls9EpaYFNmDNc6F87s9zwVBuXPvA7laOC4ZuWhpch\nbwIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApXMXCFXW2IVqcrGcClht\nEy8nComANKq5rX+W5rNtUM2pbxYRXiM/Z3/QqZ7mTYD56eKqdjtGxytbEbJbVxCY\n03dboZQv7p41XV3Aq66XlaDdRl3uKFcFgAY5UBe+nggCnHIq+S+793gH7kj5WzuW\nT6kTxqvEAPJb6VvjL9mRBhaXWVNQ9PffXVeKhQEHFV6W4KcM2qMlly5bNlVP+XVC\n/xTinXEtbONCcqWRD7uoG7E7h+HWq3xHAIeD40L6uMWyqublvfYY1YYx+LxSx3qC\n2/4InskwGfw/SYMI9bap/wVpQmy97HERhC7DO2Ik/TfrFX0RCPmWzAI+cCkcsI62\n2wIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "zenburn", }, counts: { id: 1, site_id: 1, - users: 76, - posts: 148, - comments: 401, - communities: 31, - users_active_day: 2, + users: 82, + posts: 167, + comments: 457, + communities: 38, + users_active_day: 3, users_active_week: 6, users_active_month: 7, - users_active_half_year: 28, + users_active_half_year: 29, }, }, admins: [ @@ -2739,10 +2453,10 @@ export const instance_stats = { counts: { id: 1, person_id: 2, - post_count: 104, - post_score: 350, - comment_count: 172, - comment_score: 545, + post_count: 115, + post_score: 374, + comment_count: 185, + comment_score: 575, }, }, ], @@ -2780,6 +2494,101 @@ export const instance_stats = { }, }, }, + { + domain: "slrpnk.net", + site_info: { + site_view: { + site: { + id: 1, + name: "SLRPNK", + sidebar: + "**Rules:**\n- **be constructive**: there is no need of another internet space full of competition, negativity, rage and so on;\n- **no bigotry**, including racism, sexism, ableism, homophobia or xenophobia;\n- **be empathic**: emphaty is more rebellious than a middle finger;\n- **no porn and no gore**: let's keep this place easy to manage;\n- **no ads / spamming / flooding**, we don't want to buy/consume your commodified ideas;\n- **occasional self-promotion** by active members is fine.\n\nFor any community related question or to just test some function: [!meta@slrpnk.net](https://slrpnk.net/c/meta) \n\n*P.S. every generalistic community like ''art'' and ''italia'' has to be intended as ''solarpunk art'' and ''solarpunk italia'' and so on :)*", + published: "2022-03-22T20:03:46.471272", + updated: "2022-05-17T12:58:11.871742", + enable_downvotes: false, + open_registration: true, + enable_nsfw: false, + icon: "https://slrpnk.net/pictrs/image/bb8631b7-231b-4709-823d-fa4c8e201866.png", + banner: null, + description: "where solarpunks organize for a better world!", + community_creation_admin_only: true, + require_email_verification: false, + require_application: true, + application_question: + "To fight brigading (yes, we've already got some trolls lol), we’ve added this little questionnaire for user registration:\n- why would you like to join slrpnk.net ?\n- which communities (subs) would you most like to partecipate in?", + private_instance: false, + actor_id: "https://slrpnk.net/", + last_refreshed_at: "2022-05-16T18:59:26.605787", + inbox_url: "https://slrpnk.net/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyKgbSrSvb5Vk5niTfhbB\n4BfIOjIh39XdO6KuDY/Fgoa8tYR/Xnv1Cn2LwJEgfLdDUBw7UuZAFb/yTFe9xF9x\nfLA2W9FUl5i6CHpyZo4BJbNti7HQRDWVzu7+7P2NsuVJYCjch5RwJdcFknBoQa9J\nR9mDcoMj1jwOwhJn7stwCTqOV/GVwMg8inb/S28M1fJH5YSy4jvuUvbFlXjf2JwE\nOJJcAlpitQ6z24j+pFEQjOTudS+gJcNZGoqy4ZiVoya9HWsA+CpBnPxZTewmKU2k\nwQQ4tGl9ZJzBQhqalf5a2QvwLLmbZKcECSaC65ffp1WlGd3vRytqmFpV+dn2yvdA\n1QIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 38, + posts: 82, + comments: 78, + communities: 21, + users_active_day: 1, + users_active_week: 5, + users_active_month: 7, + users_active_half_year: 21, + }, + }, + admins: [ + { + person: { + id: 2, + name: "ex_06", + display_name: null, + avatar: + "https://slrpnk.net/pictrs/image/98137211-457a-4062-85d4-f68c68086382.jpeg", + banned: false, + published: "2022-03-22T19:56:56.483839", + updated: "2022-03-31T19:45:24.279125", + actor_id: "https://slrpnk.net/u/ex_06", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://slrpnk.net/u/ex_06/inbox", + shared_inbox_url: "https://slrpnk.net/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 51, + post_score: 156, + comment_count: 39, + comment_score: 74, + }, + }, + ], + online: 2, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "feddit.it", + "heapoverflow.ml", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmygrad.ml", + "midwest.social", + "slrpnk.net", + ], + allowed: null, + blocked: null, + }, + }, + }, { domain: "lemmy.perthchat.org", site_info: { @@ -2805,23 +2614,23 @@ export const instance_stats = { "To combat abuse, we have restricted user registration on this instance. Please answering the following:\n\n Why you would like to join lemmy?\n What communities are you planning to to participate in?\n How or why you chose the username you did?\n\nand/or have another user vouch for you by having a user \nDM [@camelia@lemmy.perthchat.org](https://lemmy.perthchat.org/u/camelia) or [@michael@lemmy.perthchat.org](https://lemmy.perthchat.org/u/michael) and state your desired username.\n\nWe will review your application ASAP.\n\nYou can contact us on Matrix for a faster reply:\nhttps://matrix.to/#/@michael:perthchat.org\nhttps://matrix.to/#/@camelia:perthchat.org", private_instance: false, actor_id: "https://lemmy.perthchat.org/", - last_refreshed_at: "2022-04-08T15:13:41.146342", + last_refreshed_at: "2022-05-16T18:59:28.192058", inbox_url: "https://lemmy.perthchat.org/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwcuBLybcELYlwWZKkQ1/\nwrBS72C9xi88Hh/3TvvHXg1JxxCZCUc5nDxWUbxJ9YgTx+g0jFdc7lXAiqBx04HE\ng+8fYaMjm3OzUDPmtHRgBvUH1HnvNfPtC3AGe9gB7cMyOdHv09DwyKOUhCu1GB4T\nU6kZD19sEBvsi/Dq2RNUY7JmTqM3PMd3/4M2fiwEgQOL8wWR8Gn+epGuN3GGw02V\nynx/YM7JmZEzHkMLFVYCaDxoMduSmaDBB418W5lXrsHk8WxWMOYowNPJvtOT2BuW\n+FlpkjPFNEHvcgMDGsQMc6PVokYcC+I3G+t+Ka9BS92od7UcPc1pFTp4DkaXDqhD\nzwIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyKEHOOtsSdE40izmVdxc\nSqpTntvoCQZ+/Hk61kXBXmjADM3dLDK4X+e8wVPngLCsnCvJCF8kavRoZx5AoE1r\nf9f6uVXCXMgsyxSikwnC8FQuLPV9XkSSmTfWO9WQ5xW8x4ZhRzRk+MUzcbpBCUWS\n8wngr2qwPnsO2nmerlaTLK1oreebrzWycgOfizTpPfkUCZNZekzuKshb0/LO1Xd3\niI79QblRGecjS/3J5DSNKPhkCG/0afKALblUs9sYxd/NMryWFo58pkNq8Ay1ocX8\n8mXs5l5vyL+Y8fK1OIoVPoiDFYY1wblOnt8UFfgp97IPmRQ4PKCNBVtnAvP++quY\nWwIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "browser", }, counts: { id: 1, site_id: 1, - users: 37, - posts: 217, - comments: 242, + users: 38, + posts: 221, + comments: 243, communities: 25, users_active_day: 0, - users_active_week: 3, - users_active_month: 6, + users_active_week: 1, + users_active_month: 5, users_active_half_year: 26, }, }, @@ -2920,188 +2729,6 @@ export const instance_stats = { }, }, }, - { - domain: "slrpnk.net", - site_info: { - site_view: { - site: { - id: 1, - name: "SLRPNK", - sidebar: - "**Rules:**\n- **be constructive**: there is no need of another internet space full of competition, negativity, rage and so on;\n- **no bigotry**, including racism, sexism, ableism, homophobia or xenophobia;\n- **be empathic**: emphaty is more rebellious than a middle finger;\n- **no porn and no gore**: let's keep this place easy to manage;\n- **no ads / spamming / flooding**, we don't want to buy/consume your commodified ideas;\n- **occasional self-promotion** by active members is fine.\n\nFor any community related question or to just test some function: [!meta@slrpnk.net](https://slrpnk.net/c/meta) \n\n*P.S. every generalistic community like ''art'' and ''italia'' has to be intended as ''solarpunk art'' and ''solarpunk italia'' and so on :)*", - published: "2022-03-22T20:03:46.471272", - updated: "2022-04-09T19:23:29.584570", - enable_downvotes: false, - open_registration: true, - enable_nsfw: false, - icon: "https://slrpnk.net/pictrs/image/9d582815-3984-4996-9b10-b18706bebac1.png", - banner: null, - description: "where solarpunks organize for a better world!", - community_creation_admin_only: true, - require_email_verification: false, - require_application: true, - application_question: - "To fight brigading (yes, we've already got some trolls lol), we’ve added this little questionnaire for user registration:\n- why would you like to join slrpnk.net ?\n- which communities (subs) would you most like to partecipate in?", - private_instance: false, - actor_id: "https://slrpnk.net/", - last_refreshed_at: "2022-04-08T15:12:20.827965", - inbox_url: "https://slrpnk.net/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqTZphnIC3fYOLNee7WXv\nC5p4HZPcWUQgrUgD/yF0IqamoqooZwkJ4sFH58o7chOyIpmpmfUJeUoMksOddtfl\nRLqLLguRb4NVNr2K8qQuvcIx8TD6pMG10JdVOvobPVVLMfDfmsLzwbgbE6WUWlK5\ngkS8X0gMKA0c1/r9JOERSWOUCpzMaUqNhCWKfS35OcdaJgpt9q/NnLZgE5jUl24N\nBCoVHpOCGDY6PBmXXJvpBgKXGWs6Xh8QM4yZSo0ww+PpR7F8dEb4W7dWti8NSk/6\nwIFmLQqRgBTC7psAqnZQ5fRPt241cIXZ2Rt/OeVVS3GLOOXwqRjdtvJKC7H7y7KS\nHwIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "browser", - }, - counts: { - id: 1, - site_id: 1, - users: 35, - posts: 71, - comments: 64, - communities: 21, - users_active_day: 1, - users_active_week: 3, - users_active_month: 6, - users_active_half_year: 20, - }, - }, - admins: [ - { - person: { - id: 2, - name: "ex_06", - display_name: null, - avatar: - "https://slrpnk.net/pictrs/image/98137211-457a-4062-85d4-f68c68086382.jpeg", - banned: false, - published: "2022-03-22T19:56:56.483839", - updated: "2022-03-31T19:45:24.279125", - actor_id: "https://slrpnk.net/u/ex_06", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://slrpnk.net/u/ex_06/inbox", - shared_inbox_url: "https://slrpnk.net/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 42, - post_score: 122, - comment_count: 36, - comment_score: 66, - }, - }, - ], - online: 3, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: [ - "feddit.it", - "heapoverflow.ml", - "lemmy.ml", - "lemmy.perthchat.org", - "lemmygrad.ml", - "midwest.social", - "slrpnk.net", - ], - allowed: null, - blocked: null, - }, - }, - }, - { - domain: "forum.nobigtech.es", - site_info: { - site_view: { - site: { - id: 1, - name: "Foro de NoBIGTech", - sidebar: - "Foro de debate, ayuda y temas generales sobre soberanía y privacidad digital, y los servicios de nobigtech.es\n\nCódigo de conducta: https://www.nobigtech.es/terms/", - published: "2021-11-17T21:32:43.387256", - updated: "2022-04-23T21:46:32.405511", - enable_downvotes: true, - open_registration: true, - enable_nsfw: false, - icon: "https://forum.nobigtech.es/pictrs/image/atwGqrgiHu.png", - banner: null, - description: "Foro de NoBIGTech", - community_creation_admin_only: true, - require_email_verification: false, - require_application: true, - application_question: - "Especifique la razón por la que desea unirse a este foro de agregadores de enlaces en el Fediverso (Lemmy)", - private_instance: false, - actor_id: "https://forum.nobigtech.es/", - last_refreshed_at: "2022-05-16T04:00:10.543788", - inbox_url: "https://forum.nobigtech.es/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvLxXyUS1NVS2y+q0t2Im\n6uh5uaFzl8ZMIwmsdsz6dEF+SAz0cw8qjfqlzzrKk7zFNikRadP3Q7gxn6v9OV2K\nWau1zCubvD8I5CFKVc7auFwNLlrQfdj1XxsWcI/2ZZ7V6FL7goZFfvTF/jPJlqhX\nz64bMe9VBn5CiBRwkhv41Q9gS9PbJH9napUXWW5yOmKKwPN7vWwFY7frZ2lxMidn\nV6BHWtacgeE5bqIKABgfB/I6jdhkVoyukaNFTFFSLrFM3DCYPcI/5OMDSfI04hTD\naDJ4roeFRhMP4LylNnD8RlgHZk5zsLrYq4E4O5C/giQE2aqtMUx6qOoAOonVzCi3\nHQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "browser", - }, - counts: { - id: 1, - site_id: 1, - users: 9, - posts: 92, - comments: 16, - communities: 1, - users_active_day: 0, - users_active_week: 0, - users_active_month: 4, - users_active_half_year: 5, - }, - }, - admins: [ - { - person: { - id: 34, - name: "admin", - display_name: "NoBIGTech", - avatar: - "https://forum.nobigtech.es/pictrs/image/I4W6nsyJN5.png", - banned: false, - published: "2021-11-17T21:31:15.400806", - updated: "2021-11-17T21:36:13.210670", - actor_id: "https://forum.nobigtech.es/u/admin", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://forum.nobigtech.es/u/admin/inbox", - shared_inbox_url: "https://forum.nobigtech.es/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 34, - post_count: 2, - post_score: 2, - comment_count: 7, - comment_score: 10, - }, - }, - ], - online: 0, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: ["forum.nobigtech.es", "lemmy.eus", "lemmy.ml"], - allowed: null, - blocked: null, - }, - }, - }, { domain: "baraza.africa", site_info: { @@ -3137,14 +2764,14 @@ export const instance_stats = { counts: { id: 1, site_id: 1, - users: 366, - posts: 587, + users: 374, + posts: 590, comments: 310, - communities: 56, - users_active_day: 1, - users_active_week: 2, + communities: 57, + users_active_day: 0, + users_active_week: 1, users_active_month: 4, - users_active_half_year: 68, + users_active_half_year: 63, }, }, admins: [ @@ -3232,8 +2859,8 @@ export const instance_stats = { counts: { id: 3, person_id: 5, - post_count: 199, - post_score: 595, + post_count: 202, + post_score: 598, comment_count: 128, comment_score: 368, }, @@ -3311,68 +2938,258 @@ export const instance_stats = { }, }, { - domain: "lemmy.pt", + domain: "community.xmpp.net", site_info: { site_view: { site: { id: 1, - name: "Lemmy Portugal 🇵🇹", + name: "XMPP Community", sidebar: - '## Bem-vindo(a)!\n\nEsta é a [Lemmy Portugal](https://lemmy.pt), uma instância de [Lemmy](https://join-lemmy.org) direcionada a utilizadores e comunidades Portuguesas, ou de Língua Portuguesa. \n\n*Fazemos parte dos [Serviços Radicais](https://servicosradicais.tech)!*\n\n---\n\n#### Regras\n\nPara o bom funcionamento deste espaço, existem regras e um código de conduta que deve ser sempre seguido.\n\n1. **Respeita todos e mantém uma atitude acolhedora.** Isto implica mão recorrer a insultos, humilhações, ataques pessoais, etc. Sê tolerante.\n2. **Publicação ou ameaças de publicação de informações privadas ([*doxxing*](https://pt.wikipedia.org/wiki/Doxing), mensagens diretas, etc) é estritamente proibido.**\n3. **Usa linguagem percetível por todos e uma gramática correta.** Este espaço pretende ser inclusivo, e isso só é possível se todos formos capazes de comunicar bem.\n4. **Nada de NSFW.**\n5. **Qualquer conteúdo de teor traumático, perturbador ou que conte o enredo de algum filme, série ou jogo deve ser marcado como tal e escondido (*spoiler*).**\n6. **É inaceitável tentar passar por uma outra pessoa.**\n\nPor fim, usa senso comum.\n\nO incumprimento de qualquer uma destas regras resultará num aviso, porém, caso o problema persista, o utilizador será banido.\n\n> ℹ️ *Estas regras serão expandidas e um documento de código de conduta redigido, na comunidade [Regras](https://lemmy.pt/c/regras), quando o Lemmy suportar melhores controlos de moderação para comunidades.*\n\n---\n\n#### Registo de contas e criação de comunidades\n\nDevido ao aparecimento de [*trolls*](https://pt.wikipedia.org/wiki/Trol_(internet)) e de contas automáticas que poluem a rede com conteúdo indesejado, o registo de novas contas foi restringido, sendo agora necessário não só um endereço de correio eletrónico, como o preenchimento de uma pequena "candidatura" que terá que ser aprovada por um administrador antes da conta ser ativada.\n\nPelo mesmo motivo, a criação de comunidades está sujeita a uma restrição semelhante. Será necessário fazer uma publicação na comunidade [Meta](https://lemmy.pt/c/meta), com título e corpo adequados, para requisitar a criação de uma nova comunidade. \n\nPor fim, é igualmente possível requisitar a posição de moderador numa das comunidades originais ou numa que não possua nenhum moderador ativo.\nEm qualquer dos casos, haverá um processo de avaliação antes da promoção, por motivos de segurança.\n\nPara mais informações, deves ler a barra lateral da comunidade [Meta](https://lemmy.pt/c/meta).\n\n---\n\n#### Matrix\n\nExiste uma sala na rede Matrix dedicado a esta instância de Lemmy. Junta-te a [`#tuga-lemmy:matrix.org`](https://matrix.to/#/#tuga-lemmy:matrix.org) para participares na conversa!\n\nExistem também outras salas portuguesas que podes ver aderindo ao espaço [`#espacotuga:matrix.org`](https://matrix.to/#/#espacotuga:matrix.org)\n\n---\n\n#### Traduzir o Lemmy\n\nSendo apologistas do movimento de software livre e da ideia de redes federadas, temos contribuído para o projecto através da tradução para Português. Este processo é realizado através da instância de Weblate (uma ferramenta de tradução, também ela livre) do projecto Lemmy, e que pode ser econtrada em https://weblate.yerbamate.ml. \nQualquer sugestão de tradução é bem-vinda!\n\nDiscussão sobre a tradução do projecto pode ser feita na sala de Matrix acima referida, ou, alternativamente, numa outra sala sobre tradução em geral, em [`#tuga-traducao:matrix.org`](https://matrix.to/#/#tuga-traducao:matrix.org)\n\n--- \n\n#### Ajudar a correr esta instância\n\nDe momento, correr a instância é bastante barato, visto que se encontra num servidor onde estão alojadas outras pequenas coisas, custando no total ~5€ por mês. Não prevejo uma atualização de plano num futuro próximo, visto que o Lemmy é bastante leve.\nAinda assim, fica aqui a página de LiberaPay onde é possível fazer um donativo: https://liberapay.com/NadaRadical \n~~Deprecado: https://liberapay.com/lemmy.pt/~~\n\n> **Atenção!** ⚠️ \n> Ninguém se deve sentir no dever de doar o quer que seja. A página existe para a eventualidade de alguém poder e querer muito ajudar. Por agora, consigo cobrir os custos do servidor sem problema, portanto não há que preocupar.\n\n---\n\n#### [WebTejo](https://webtejo.pt)\n\nEsta instância corre num servidor da WebTejo, uma empresa de alojamento web independente e nacional. Deem uma vista de olhos 😉 ', - published: "2021-09-10T19:37:20.934711", - updated: "2022-04-05T22:15:37.152023", - enable_downvotes: true, + "Welcome to the XMPP Community Lemmy instance! Please be kind. All communities in this space should be at least tangentially related to XMPP.\n\nPlease abide by our [code of conduct][coc]. To report a CoC violation, message one of the admins.\n\n[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)][coc] \n\n[coc]: https://www.contributor-covenant.org/version/2/1/code_of_conduct/", + published: "2022-04-11T15:23:46.791420", + updated: "2022-04-19T18:00:51.173869", + enable_downvotes: false, open_registration: true, enable_nsfw: false, - icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", + icon: "https://community.xmpp.net/pictrs/image/35c85076-7971-4e2a-b5d1-18ef437366ff.png", banner: null, description: - "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", + "A community space for projects and users of the Extensible Messaging and Presence Protocol (XMPP).", community_creation_admin_only: true, - require_email_verification: true, + require_email_verification: false, require_application: true, application_question: - 'Esta medida serve para "filtrar" trolls e contas automáticas, pelo que não existe nenhum grande questionário. Basta responder à seguinte questão:\n\n> **Quem é o atual Presidente da República?**\n>\n> 1. António Guterres\n> 2. O vizinho do 3º Esq.\n> 3. Marcelo Rebelo de Sousa\n\nA confirmação da candidatura não deve demorar mais que um dia. \n\nAgradecemos a compreensão.', + "Hi there, to prevent spam please tell us why you want to join this instance and what XMPP communities you're a part of (if any); thanks!", private_instance: false, - actor_id: "https://lemmy.pt/", - last_refreshed_at: "2022-04-12T23:05:06.691827", - inbox_url: "https://lemmy.pt/site_inbox", + actor_id: "https://community.xmpp.net/", + last_refreshed_at: "2022-05-16T18:59:28.352113", + inbox_url: "https://community.xmpp.net/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAn/5HTa3ioEIQF1/7E5mX\nGMiVSbP0OLS08s9pPoriIkTTAGw3Qotwu4zawmgL/dMVhmZ98Ut80+03p2eP+pCt\nJXVDwEvPKHwf3fp5poi3AhyRq9HbOeLqDswHkTMcZ7UueZIrEiM0vrycgAgwNOdS\nA5mZQbKrfxAVzBbNhX0f/J6Ww2OtF+PsE/EBjtZq5N/8kZKXi9YjuGarIH9ZJBeF\n0AD0/xMovNnNecHFOj5s3WEj5DXfIto+K3x+qL8YY62A2BI+z9YZw+ZOlDj+Qs9o\n8AXV/29vWCEtCeeEWOyg2S3MZsc7w20cvwvTVJ+cE2X4o29Zb1z/nRr3mP6LaRBl\nEwIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArSm3BkNrtfSjiSEnXgD0\nwWI3NlA6+xwHYqYASrpKcjOOwwpJSYIZ0WkV54wgulABuGLTQz/tfYDlYZmx4+8z\nEj38p8wenlAnH4RNWBFEfeVF1M2s4WFu/EOFVofeW8KzJrJSZQy8IcI1XwxVaU+c\nXtO5kUxJmSpyMhXNq+4gi8IvhM81yHcuIrmPzbCQuuN27e0OI7zh+0tgyOAXz+cP\noNacnZhvX91RrQnEgT0iOGHk67d1jhmsEKrr6w3l7WQnN3dCsbBN7y3p02kUWICk\nlfMGtocSiE2ZR9zArdSSVs/Luj2iVUfTl8kQ9eAKibGBmMJCuE8GMEw6EkWA9tu9\nPwIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "browser", }, counts: { id: 1, site_id: 1, - users: 92, - posts: 315, - comments: 556, - communities: 29, + users: 59, + posts: 75, + comments: 84, + communities: 16, users_active_day: 0, - users_active_week: 1, + users_active_week: 2, + users_active_month: 4, + users_active_half_year: 36, + }, + }, + admins: [ + { + person: { + id: 3, + name: "samwhited", + display_name: null, + avatar: + "https://community.xmpp.net/pictrs/image/1cc71dcc-f5fe-46b8-aa15-1e1fba4c8d80.jpeg", + banned: false, + published: "2022-04-12T17:03:31.067980", + updated: "2022-04-13T13:36:52.647774", + actor_id: "https://community.xmpp.net/u/samwhited", + bio: null, + local: true, + banner: null, + deleted: true, + inbox_url: "https://community.xmpp.net/u/samwhited/inbox", + shared_inbox_url: "https://community.xmpp.net/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 4, + post_score: 10, + comment_count: 2, + comment_score: 4, + }, + }, + { + person: { + id: 4, + name: "pep", + display_name: null, + avatar: + "https://community.xmpp.net/pictrs/image/9b98d86f-6b87-4fce-b136-bf3a580b3eec.png", + banned: false, + published: "2022-04-12T17:51:00.738194", + updated: "2022-04-12T19:44:11.702667", + actor_id: "https://community.xmpp.net/u/pep", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://community.xmpp.net/u/pep/inbox", + shared_inbox_url: "https://community.xmpp.net/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 3, + person_id: 4, + post_count: 4, + post_score: 12, + comment_count: 14, + comment_score: 26, + }, + }, + { + person: { + id: 6, + name: "MattJ", + display_name: null, + avatar: + "https://community.xmpp.net/pictrs/image/1beec86e-06ee-41d0-b11c-86f9429bc89f.png", + banned: false, + published: "2022-04-12T18:55:19.449672", + updated: "2022-04-14T16:03:30.589780", + actor_id: "https://community.xmpp.net/u/MattJ", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://community.xmpp.net/u/MattJ/inbox", + shared_inbox_url: "https://community.xmpp.net/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 5, + person_id: 6, + post_count: 0, + post_score: 0, + comment_count: 5, + comment_score: 8, + }, + }, + { + person: { + id: 143, + name: "sam", + display_name: "Sam", + avatar: + "https://community.xmpp.net/pictrs/image/08401dfb-64ce-4576-884a-83af94513265.jpeg", + banned: false, + published: "2022-04-13T13:37:13.506336", + updated: "2022-04-17T17:29:58.031639", + actor_id: "https://community.xmpp.net/u/sam", + bio: "I work on the Mellium project and sometimes on XEPs. Bike mechanic during the day, but also sometimes freelance software development and censorship circumvention.\n\n**Hire me:** https://willowbark.org/", + local: true, + banner: null, + deleted: false, + inbox_url: "https://community.xmpp.net/u/sam/inbox", + shared_inbox_url: "https://community.xmpp.net/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 102, + person_id: 143, + post_count: 32, + post_score: 114, + comment_count: 43, + comment_score: 103, + }, + }, + ], + online: 1, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "community.nicfab.it", + "community.xmpp.net", + "feddit.de", + "heapoverflow.ml", + "lemmy.ml", + "lemmygrad.ml", + "libranet.de", + "loma.ml", + "privacy.nicfab.it", + "slrpnk.net", + ], + allowed: null, + blocked: null, + }, + }, + }, + { + domain: "lemmy.juggler.jp", + site_info: { + site_view: { + site: { + id: 1, + name: "Juggler.jp Lemmyサービス", + sidebar: + "テストサーバだよ。データは気が向いた時に消すよ。\n\n- このサーバでは政治的な話題を取り扱いません。\n- このサーバは日本の法律や判例に従います。\n", + published: "2020-12-15T04:32:19.360061", + updated: "2021-01-27T00:04:06.936036", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.juggler.jp/pictrs/image/v0TGrlnKGS.png", + banner: null, + description: null, + community_creation_admin_only: false, + require_email_verification: false, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.juggler.jp/", + last_refreshed_at: "2022-03-16T11:42:54.954635", + inbox_url: "https://lemmy.juggler.jp/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp+7UxqYrLqoQSnDmkrcK\n5rXc+cETWnvQyQfeiX5CqxxkyfKSlHU+FtC7Q7NTn/k+TFnruEp3iNGYOYSUnUbH\nYKlmOLwxUZgMgPz+rh20xnIhiYDUD0H8C1wguBxRL5OqzAEQrMoZpk4ugvkxXziO\nTsSxS8F+ns8bfMJ55ahDFEF2+uG8hURAEoCgEOi0pjaGeu5Wph+hgffdiJhT8AyO\nnM8kQ3I1+1JV+GSx3kX42awf4q2klULCjBrqlZQIu5I8dVJt+NlVTK2OvwV5cGGs\nGnqBwhpYSnCQ9eCO7qIRlYauIULhZaiCinvgRPIw0hbuqR2ibGiAO83T04Fv/Zj8\nLQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 31, + posts: 326, + comments: 89, + communities: 18, + users_active_day: 1, + users_active_week: 2, users_active_month: 3, - users_active_half_year: 18, + users_active_half_year: 11, }, }, admins: [ { person: { id: 2, - name: "tmpod", - display_name: "Tmpod", - avatar: "https://lemmy.pt/pictrs/image/gIPQUt3mxw.png", + name: "juggler", + display_name: null, + avatar: null, banned: false, - published: "2021-09-10T19:37:20.367073", - updated: "2022-02-05T23:30:22.283193", - actor_id: "https://lemmy.pt/u/tmpod", - bio: "Estudante de Engenharia Informática apaixonado pela área; algures em Portugal.\n\nAdministrador da instância lemmy.pt.\n\n---\n\nComputer science student, passionate about the field; somewhere in Portugal.\n\nAdministrator of the lemmy.pt instance.\n\n---\n\nhttps://tmpod.dev", + published: "2020-12-15T04:32:19.262706", + updated: null, + actor_id: "https://lemmy.juggler.jp/u/juggler", + bio: null, local: true, - banner: "https://lemmy.pt/pictrs/image/iLIlqIIuaW.jpg", + banner: null, deleted: false, - inbox_url: "https://lemmy.pt/u/tmpod/inbox", - shared_inbox_url: "https://lemmy.pt/inbox", - matrix_user_id: "@tmpod:matrix.org", + inbox_url: "https://lemmy.juggler.jp/u/juggler/inbox", + shared_inbox_url: "https://lemmy.juggler.jp/inbox", + matrix_user_id: null, admin: true, bot_account: false, ban_expires: null, @@ -3380,27 +3197,131 @@ export const instance_stats = { counts: { id: 1, person_id: 2, - post_count: 44, - post_score: 268, - comment_count: 445, - comment_score: 1382, + post_count: 2, + post_score: 2, + comment_count: 0, + comment_score: 0, + }, + }, + ], + online: 2, + version: "0.16.1", + my_user: null, + federated_instances: { + linked: [ + "bar.southfox.me", + "baraza.africa", + "lem.ph3j.com", + "lemmy.0px.io", + "lemmy.161.social", + "lemmy.cardina1.red", + "lemmy.fediverse.jp", + "lemmy.juggler.jp", + "lemmy.ml", + "lemmy.shrieker.net", + "lemmygrad.ml", + "lm.korako.me", + "tabinezumi.net", + "wasurejio.link", + ], + allowed: null, + blocked: null, + }, + }, + }, + { + domain: "lm.korako.me", + site_info: { + site_view: { + site: { + id: 1, + name: "鴉は拠り所について語り合う", + sidebar: + "のんびり語り合いましょう\\\nここはそんな場所です・・・\n\n**まずはこちらをご確認ください**\n- [運営方針やお知らせ](https://lm.korako.me/post/77)\n- [Lemmyの使い方](https://lm.korako.me/post/5923)\n\n**連絡先**\\\n[@karasu_sue@md.korako.me](https://md.korako.me/users/karasu_sue) ", + published: "2021-02-16T13:17:39.786201", + updated: "2022-05-19T02:56:36.567455", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: null, + banner: null, + description: "日本語話者向けLemmyインスタンスです", + community_creation_admin_only: false, + require_email_verification: true, + require_application: true, + application_question: + "**まずはこちらをご確認ください**\n- [運営方針やお知らせ](https://lm.korako.me/post/77)\n- [Lemmyの使い方](https://lm.korako.me/post/5923)\n\n確認してあなたがスパムではない場合はこちらで判断して申請を許可します。\\\nスパムと疑われた場合は許可は出せませんが、直接連絡をくれれば検討します。\n\n※事前に連絡をいただければスムーズに許可がでます\\\n**連絡先**\\\n[@karasu_sue@md.korako.me](https://md.korako.me/users/karasu_sue) \n\n運営方針等に同意することができるのであればその旨を日本語で回答お願いいたします。", + private_instance: false, + actor_id: "https://lm.korako.me/", + last_refreshed_at: "2022-05-25T03:01:04.331744", + inbox_url: "https://lm.korako.me/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3eUQMhkBjm1rfvrU24WK\n/DdO4jKaGR8oh5QUxohOJaJl8xivjSelytxQP23pihYJEEyqOxO2BEicuLrAfyFq\n7GNkTJ7H01BqK7ZOBe7O27zNiguIW6t5Q8iGizdJdETg4H/JY7z6ooUwBzAAGTH0\n0inJbUYaI5G7YUU+kqWYg+JXJf1NfJaJRv+qHlNGjhpncuuJWG1Hdy6aJHPVSveX\nuKL2NJ59UslWnQ09dDUcxywytX8W+5VebfleKG8yCEet8Oa5HQ8hiqOCmx4kdbmw\nHhSE3hI4/RQVbBcz6z1sZUOUjauLlClHjW6FJKV7MR9ozegsoBNryWPv9mKQ78V2\nrQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 20, + posts: 7759, + comments: 133, + communities: 27, + users_active_day: 2, + users_active_week: 2, + users_active_month: 3, + users_active_half_year: 8, + }, + }, + admins: [ + { + person: { + id: 2, + name: "karasu_sue", + display_name: "鴉河雛@Lemmy", + avatar: "https://lm.korako.me/pictrs/image/tbSSc0VRe4.png", + banned: false, + published: "2021-02-16T13:17:39.698012", + updated: "2022-05-19T02:56:27.436085", + actor_id: "https://lm.korako.me/u/karasu_sue", + bio: "- [Mastodonアカウント (メイン)](https://md.korako.me/@karasu_sue)\n\nためになる情報と言うよりは、自分のメモ的な奴をじゃんじゃん登録していくと思いまする。", + local: true, + banner: "https://lm.korako.me/pictrs/image/Q6Pp7iQQ33.jpg", + deleted: false, + inbox_url: "https://lm.korako.me/u/karasu_sue/inbox", + shared_inbox_url: "https://lm.korako.me/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 380, + post_score: 496, + comment_count: 122, + comment_score: 1, }, }, ], online: 0, - version: "0.16.3", + version: "0.16.3-34-gbd9df83", my_user: null, federated_instances: { linked: [ - "beehaw.org", - "feddit.de", - "kolektiva.media", + "fedimovie.com", + "lemmy.cardina1.red", + "lemmy.fediverse.jp", + "lemmy.juggler.jp", "lemmy.ml", "lemmy.perthchat.org", - "sopuli.xyz", + "lemmy.shrieker.net", + "lm.korako.me", + "tabinezumi.net", ], allowed: null, - blocked: ["narwhal.city", "jemmy.juggler.jp"], + blocked: null, }, }, }, @@ -3410,17 +3331,18 @@ export const instance_stats = { site_view: { site: { id: 1, - name: "NicFab Community", + name: "Privacy Community", sidebar: - "Welcome to the **NicFab Community Lemmy instance**! Please be kind. All communities in this space should be at least related to Privacy.\n\nThis is a community space for projects and users interested in Privacy and Data protection.\n\nPlease abide by our [code of conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct/). \n\nTo report a CoC violation, message one of the admins.\n\n", + "### **Welcome!**\n\nWelcome to the **NicFab Community Lemmy instance**! \\\nPlease be kind. \\\nAll communities in this space should be at least related to Privacy and innovation.\n\n### **Matrix Space**\nWe are also on Matrix Space [by clicking here](https://matrix.to/#/#privacycommunity:matrix.nicfab.it).\n\n### **Privacy Policy**\nHere you can find our **[Privacy Policy](https://nicfab.it/en/pages/ppolicy-lemmy-privacy-community/)**.\n\n### **Code of Conduct**\nPlease abide by the [code of conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct/). \n\nTo report a CoC violation, message one of the admins.\n\n***\n\n### **Benvenuto!**\n\nBenvenuto nella instanza Lemmy **NicFab Community**! \\\nVi invitiamo ad essere gentili. \\\nTutte le comunità in questo spazio dovrebbero essere almeno legate alla privacy e all'innovazione.\n\nQuesto è uno spazio comune per progetti e utenti interessati alla privacy, alla protezione dei dati e alle soluzioni innovative.\n\n### **Matrix Space**\nSiamo anche su Matrix Space [clicando qui](https://matrix.to/#/#privacycommunity:matrix.nicfab.it).\n\n### **Informativa Privacy**\nQui puoi trovare la nostra **[Informativa sulla privacy](https://www.nicfab.it/it/pages/ppolicy-lemmy-privacy-community/)**.\n\n### **Codice di condotta**\nSiete invitati a rispettare il [codice di condotta](https://www.contributor-covenant.org/version/2/1/code_of_conduct/). \n\nPer segnalare una violazione del codice di condotta, invia un messaggio a uno degli amministratori.\n", published: "2022-05-11T11:17:09.368040", - updated: "2022-05-12T17:59:12.888959", + updated: "2022-05-24T12:19:41.658239", enable_downvotes: true, open_registration: true, enable_nsfw: true, icon: "https://community.nicfab.it/pictrs/image/cfef8df9-6bb5-4049-b7b0-5299814076d4.jpeg", banner: null, - description: "NicFab Community", + description: + "This is a community space for projects and users interested in privacy, data protection, cybersecurity, and innovative solutions.", community_creation_admin_only: true, require_email_verification: true, require_application: true, @@ -3428,22 +3350,22 @@ export const instance_stats = { "Please, explain why you want to join this community. ", private_instance: false, actor_id: "https://community.nicfab.it/", - last_refreshed_at: "2022-05-16T10:15:11.859556", + last_refreshed_at: "2022-05-18T10:06:00.698265", inbox_url: "https://community.nicfab.it/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzgF4VD/KyvuwdObTSV4a\nO1sGYCsOw8pdSNPgW4l6r36cBLHGWWVkkLozl7S+bnFmiWYNIE6j54TBY5BWvHD+\nuQMMLu+0EeD9sfiZFuvNasbEP+VrjMheM9WyOLO16R1/LrMHH3NpV9N1iivkATZ+\ndNyQIzWTSplGS7AyvauWAN9zbEkdj5srp4Y/y1hYBEJJPjwgMjn+YD6SHOAy7R3O\naIZD/QXrVwwC+QdXCp6325F4AQrA9kTFc93DKtCoGdhSa9tE771Ix77rg7BNZrrb\nZHtx4iVFxHbheXDUT9QQw6kNquBDu4xtOyI2XScGvS1NEekRqzRUajd4omPFYHvt\nXwIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0/kYwzM9M972vG3a07va\nBzZqTblS+UyK7GHANoNOISy0gLS/UNgm4peKKWABrAf1969j9zYnWwnh6JtkdcKX\naADfN9Uw2NetsHnHclJZYlOcoW7sTZGviIfmd3LqxKmkQao0s0H1P8GO9h6xhPHI\nzHE8V3qkjKtANQb98SQ55CjhIVLi0ilXHYy26aCYztpwjpX99Dqa4nj8SvouDpkb\nxXNc9Fssc58NYIfqjkOonw6B9FtJZDePe1LQAKxXHKO0JbSPEX3B/Tjrp+6+WIJ7\n5lLmCGfc/h5ki3FjCoWUBFAA0q+g5iARs2z4zXnSerk9/BF4pLzTGMdPma4ghO06\nyQIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "browser", }, counts: { id: 1, site_id: 1, - users: 6, - posts: 14, - comments: 7, + users: 10, + posts: 50, + comments: 9, communities: 1, users_active_day: 1, - users_active_week: 3, + users_active_week: 2, users_active_month: 3, users_active_half_year: 3, }, @@ -3455,10 +3377,10 @@ export const instance_stats = { name: "nicfab", display_name: "nicfab", avatar: - "https://community.nicfab.it/pictrs/image/8a175aa6-e6a2-43c5-9930-87a4d6ab87b7.png", + "https://community.nicfab.it/pictrs/image/1f883ba3-cdde-4ab0-8c85-304b0c5e9bb8.jpeg", banned: false, published: "2022-05-11T11:16:05.359549", - updated: "2022-05-11T11:24:08.056867", + updated: "2022-05-24T15:44:29.596682", actor_id: "https://community.nicfab.it/u/nicfab", bio: "See here: https://notes.nicfab.it/en/pages/about/", local: true, @@ -3475,10 +3397,10 @@ export const instance_stats = { counts: { id: 1, person_id: 2, - post_count: 12, - post_score: 26, - comment_count: 7, - comment_score: 11, + post_count: 47, + post_score: 72, + comment_count: 9, + comment_score: 14, }, }, { @@ -3535,14 +3457,14 @@ export const instance_stats = { counts: { id: 79, person_id: 123, - post_count: 1, - post_score: 2, + post_count: 2, + post_score: 3, comment_count: 0, comment_score: 0, }, }, ], - online: 2, + online: 0, version: "0.16.3", my_user: null, federated_instances: { @@ -3558,67 +3480,68 @@ export const instance_stats = { }, }, { - domain: "lm.korako.me", + domain: "lemmy.pt", site_info: { site_view: { site: { id: 1, - name: "鴉は拠り所について語り合う", + name: "Lemmy Portugal 🇵🇹", sidebar: - "のんびり語り合いましょう\\\nここはそんな場所です・・・\n\n**まずはこちらをご確認ください**\n- [運営方針やお知らせ](https://lm.korako.me/post/77)\n- [Lemmyの使い方](https://lm.korako.me/post/5923)\n\n**連絡先**\\\n[@karasu_sue@md.korako.me](https://md.korako.me/users/karasu_sue) ", - published: "2021-02-16T13:17:39.786201", - updated: "2022-05-11T15:09:01.838365", + '## Bem-vindo(a)!\n\nEsta é a [Lemmy Portugal](https://lemmy.pt), uma instância de [Lemmy](https://join-lemmy.org) direcionada a utilizadores e comunidades Portuguesas, ou de Língua Portuguesa. \n\n*Fazemos parte dos [Serviços Radicais](https://servicosradicais.tech)!*\n\n---\n\n#### Regras\n\nPara o bom funcionamento deste espaço, existem regras e um código de conduta que deve ser sempre seguido.\n\n1. **Respeita todos e mantém uma atitude acolhedora.** Isto implica mão recorrer a insultos, humilhações, ataques pessoais, etc. Sê tolerante.\n2. **Publicação ou ameaças de publicação de informações privadas ([*doxxing*](https://pt.wikipedia.org/wiki/Doxing), mensagens diretas, etc) é estritamente proibido.**\n3. **Usa linguagem percetível por todos e uma gramática correta.** Este espaço pretende ser inclusivo, e isso só é possível se todos formos capazes de comunicar bem.\n4. **Nada de NSFW.**\n5. **Qualquer conteúdo de teor traumático, perturbador ou que conte o enredo de algum filme, série ou jogo deve ser marcado como tal e escondido (*spoiler*).**\n6. **É inaceitável tentar passar por uma outra pessoa.**\n\nPor fim, usa senso comum.\n\nO incumprimento de qualquer uma destas regras resultará num aviso, porém, caso o problema persista, o utilizador será banido.\n\n> ℹ️ *Estas regras serão expandidas e um documento de código de conduta redigido, na comunidade [Regras](https://lemmy.pt/c/regras), quando o Lemmy suportar melhores controlos de moderação para comunidades.*\n\n---\n\n#### Registo de contas e criação de comunidades\n\nDevido ao aparecimento de [*trolls*](https://pt.wikipedia.org/wiki/Trol_(internet)) e de contas automáticas que poluem a rede com conteúdo indesejado, o registo de novas contas foi restringido, sendo agora necessário não só um endereço de correio eletrónico, como o preenchimento de uma pequena "candidatura" que terá que ser aprovada por um administrador antes da conta ser ativada.\n\nPelo mesmo motivo, a criação de comunidades está sujeita a uma restrição semelhante. Será necessário fazer uma publicação na comunidade [Meta](https://lemmy.pt/c/meta), com título e corpo adequados, para requisitar a criação de uma nova comunidade. \n\nPor fim, é igualmente possível requisitar a posição de moderador numa das comunidades originais ou numa que não possua nenhum moderador ativo.\nEm qualquer dos casos, haverá um processo de avaliação antes da promoção, por motivos de segurança.\n\nPara mais informações, deves ler a barra lateral da comunidade [Meta](https://lemmy.pt/c/meta).\n\n---\n\n#### Matrix\n\nExiste uma sala na rede Matrix dedicado a esta instância de Lemmy. Junta-te a [`#tuga-lemmy:matrix.org`](https://matrix.to/#/#tuga-lemmy:matrix.org) para participares na conversa!\n\nExistem também outras salas portuguesas que podes ver aderindo ao espaço [`#espacotuga:matrix.org`](https://matrix.to/#/#espacotuga:matrix.org)\n\n---\n\n#### Traduzir o Lemmy\n\nSendo apologistas do movimento de software livre e da ideia de redes federadas, temos contribuído para o projecto através da tradução para Português. Este processo é realizado através da instância de Weblate (uma ferramenta de tradução, também ela livre) do projecto Lemmy, e que pode ser econtrada em https://weblate.yerbamate.ml. \nQualquer sugestão de tradução é bem-vinda!\n\nDiscussão sobre a tradução do projecto pode ser feita na sala de Matrix acima referida, ou, alternativamente, numa outra sala sobre tradução em geral, em [`#tuga-traducao:matrix.org`](https://matrix.to/#/#tuga-traducao:matrix.org)\n\n--- \n\n#### Ajudar a correr esta instância\n\nDe momento, correr a instância é bastante barato, visto que se encontra num servidor onde estão alojadas outras pequenas coisas, custando no total ~5€ por mês. Não prevejo uma atualização de plano num futuro próximo, visto que o Lemmy é bastante leve.\nAinda assim, fica aqui a página de LiberaPay onde é possível fazer um donativo: https://liberapay.com/NadaRadical \n~~Deprecado: https://liberapay.com/lemmy.pt/~~\n\n> **Atenção!** ⚠️ \n> Ninguém se deve sentir no dever de doar o quer que seja. A página existe para a eventualidade de alguém poder e querer muito ajudar. Por agora, consigo cobrir os custos do servidor sem problema, portanto não há que preocupar.\n\n---\n\n#### [WebTejo](https://webtejo.pt)\n\nEsta instância corre num servidor da WebTejo, uma empresa de alojamento web independente e nacional. Deem uma vista de olhos 😉 ', + published: "2021-09-10T19:37:20.934711", + updated: "2022-04-05T22:15:37.152023", enable_downvotes: true, open_registration: true, - enable_nsfw: true, - icon: null, + enable_nsfw: false, + icon: "https://lemmy.pt/pictrs/image/fHkiLTfJNO.png", banner: null, - description: "日本語話者向けLemmyインスタンスです", - community_creation_admin_only: false, + description: + "Uma instância pública de Lemmy dedicada a Portugal e à Língua Portuguesa.", + community_creation_admin_only: true, require_email_verification: true, require_application: true, application_question: - "**まずはこちらをご確認ください**\n- [運営方針やお知らせ](https://lm.korako.me/post/77)\n- [Lemmyの使い方](https://lm.korako.me/post/5923)\n\n確認してあなたがスパムではない場合はこちらで判断して申請を許可します。\\\nスパムと疑われた場合は許可は出せませんが、直接連絡をくれれば検討します。\n\n※事前に連絡をいただければスムーズに許可がでます\\\n**連絡先**\\\n[@karasu_sue@md.korako.me](https://md.korako.me/users/karasu_sue) \n\n運営方針等に同意することができるのであればその旨を日本語で回答お願いいたします。", + 'Esta medida serve para "filtrar" trolls e contas automáticas, pelo que não existe nenhum grande questionário. Basta responder à seguinte questão:\n\n> **Quem é o atual Presidente da República?**\n>\n> 1. António Guterres\n> 2. O vizinho do 3º Esq.\n> 3. Marcelo Rebelo de Sousa\n\nA confirmação da candidatura não deve demorar mais que um dia. \n\nAgradecemos a compreensão.', private_instance: false, - actor_id: "https://lm.korako.me/", - last_refreshed_at: "2022-05-16T03:01:04.838004", - inbox_url: "https://lm.korako.me/site_inbox", + actor_id: "https://lemmy.pt/", + last_refreshed_at: "2022-04-12T23:05:06.691827", + inbox_url: "https://lemmy.pt/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5Lp8fFv2X4C6HbQRJRt/\nEUqxeA+S+4B/h3mqjq0Eyme54TpqXpynRcBaU9ZiT4OVpOT23iELzu7RJEBfeU0m\n++sCwRH5OxglU2D83I6LZuKQQJtBAC4uRVEDIkiEYKMBSPBZWQtTvIsgOPSka/9k\nMrGEpxcGqLdFlNyzOsZwKs2zNU4S3BtmhjAd5LevWEd/v0wGCVBEvDqVVU/8evbI\nrzOXAg2VTEvLE15xsNsWjmy7JnO+MDze6hK3cEaEFedSOCFqiggu9tUOJ1J1O9+d\nf85EHb+DoMSJ6p0vcsH/+AXXzS6L2Y9Im/u4ZZDTrYZ4ESXs2rxpTtqJlXDq7y0y\nyQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "minty", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAn/5HTa3ioEIQF1/7E5mX\nGMiVSbP0OLS08s9pPoriIkTTAGw3Qotwu4zawmgL/dMVhmZ98Ut80+03p2eP+pCt\nJXVDwEvPKHwf3fp5poi3AhyRq9HbOeLqDswHkTMcZ7UueZIrEiM0vrycgAgwNOdS\nA5mZQbKrfxAVzBbNhX0f/J6Ww2OtF+PsE/EBjtZq5N/8kZKXi9YjuGarIH9ZJBeF\n0AD0/xMovNnNecHFOj5s3WEj5DXfIto+K3x+qL8YY62A2BI+z9YZw+ZOlDj+Qs9o\n8AXV/29vWCEtCeeEWOyg2S3MZsc7w20cvwvTVJ+cE2X4o29Zb1z/nRr3mP6LaRBl\nEwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", }, counts: { id: 1, site_id: 1, - users: 20, - posts: 7641, - comments: 130, - communities: 27, + users: 96, + posts: 321, + comments: 557, + communities: 29, users_active_day: 1, users_active_week: 1, - users_active_month: 2, - users_active_half_year: 7, + users_active_month: 3, + users_active_half_year: 17, }, }, admins: [ { person: { id: 2, - name: "karasu_sue", - display_name: "鴉河雛@Lemmy", - avatar: "https://lm.korako.me/pictrs/image/tbSSc0VRe4.png", + name: "tmpod", + display_name: "Tmpod", + avatar: "https://lemmy.pt/pictrs/image/gIPQUt3mxw.png", banned: false, - published: "2021-02-16T13:17:39.698012", - updated: "2021-12-22T12:45:31.498979", - actor_id: "https://lm.korako.me/u/karasu_sue", - bio: "- [Mastodonアカウント (メイン)](https://md.korako.me/@karasu_sue)\n\nためになる情報と言うよりは、自分のメモ的な奴をじゃんじゃん登録していくと思いまする。", + published: "2021-09-10T19:37:20.367073", + updated: "2022-02-05T23:30:22.283193", + actor_id: "https://lemmy.pt/u/tmpod", + bio: "Estudante de Engenharia Informática apaixonado pela área; algures em Portugal.\n\nAdministrador da instância lemmy.pt.\n\n---\n\nComputer science student, passionate about the field; somewhere in Portugal.\n\nAdministrator of the lemmy.pt instance.\n\n---\n\nhttps://tmpod.dev", local: true, - banner: "https://lm.korako.me/pictrs/image/Q6Pp7iQQ33.jpg", + banner: "https://lemmy.pt/pictrs/image/iLIlqIIuaW.jpg", deleted: false, - inbox_url: "https://lm.korako.me/u/karasu_sue/inbox", - shared_inbox_url: "https://lm.korako.me/inbox", - matrix_user_id: null, + inbox_url: "https://lemmy.pt/u/tmpod/inbox", + shared_inbox_url: "https://lemmy.pt/inbox", + matrix_user_id: "@tmpod:matrix.org", admin: true, bot_account: false, ban_expires: null, @@ -3626,25 +3549,119 @@ export const instance_stats = { counts: { id: 1, person_id: 2, - post_count: 373, - post_score: 484, - comment_count: 119, - comment_score: 125, + post_count: 44, + post_score: 268, + comment_count: 445, + comment_score: 1382, }, }, ], online: 0, - version: "0.16.3-34-gbd9df83", + version: "0.16.3", my_user: null, federated_instances: { linked: [ - "fedimovie.com", + "beehaw.org", + "feddit.de", + "kolektiva.media", + "lemmy.ml", + "lemmy.perthchat.org", + "sopuli.xyz", + ], + allowed: null, + blocked: ["narwhal.city", "jemmy.juggler.jp"], + }, + }, + }, + { + domain: "tabinezumi.net", + site_info: { + site_view: { + site: { + id: 1, + name: "たびねずみのみみ", + sidebar: + "ここはゆっくりとした流れのインターネッツです。\\\n初めましての方はこちらへ↓\n- [総合案内](https://tabinezumi.net/post/94)\n- [Lemmyについての説明](https://tabinezumi.net/post/43)\n\nメンテナンスのお知らせ/履歴は[こちら](https://tabinezumi.net/post/93)または@nirari@nightly.fedibird.comを参考にしてください", + published: "2020-11-29T17:27:23.952938", + updated: "2022-04-10T20:58:13.850883", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: null, + banner: null, + description: "日本語圏Lemmyインスタンスのひとつ", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: + "管理者の判断により、予告なしに投稿の削除やアクセス禁止措置等を行うことがあります。\n例として以下の場合が該当します。\n- 法に違反する行為と判断したとき\n- 公序良俗に反する内容と判断したとき\n- 複数コミュニティ(他のLemmyインスタンスを含む)にわたって主に宣伝目的と思われる投稿をしたとき\n\nまた、当インスタンスは何らかの不具合等により事前予告なくサービスを終了する可能性があります。\nその場合のデータの喪失につき責任は負いかねます。\n\n以上につき了承の上で登録を希望する場合は下のフォームに「同意済み」と入力してください。", + private_instance: false, + actor_id: "https://tabinezumi.net/", + last_refreshed_at: "2022-04-10T20:22:58.293613", + inbox_url: "https://tabinezumi.net/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4LECOATuQe59sneG7Evc\nZgfT+qrZMdEvfb9KyJmW9crkPaW5byaMA0W/HMquqeajYBveWzA93kKK4WGQBBad\nJfR0PkdqkY/effKnsnLUnw3C5+uCAGVeLfkFaYQb0aG8R3dYBqag5xp04B57Fail\nEkqWwoH8ey6Twx8cBo3z6UwcxkwMsntpoKeyHryBqBg01qYkKCw6tshbb8scbDGd\ndtmme3mozF67t4shgflYEqtuF1U9LHdwUx48emovcMiND4TZMCIME8NYNqa0CZ1q\nyRFi6zT5W7cthbZ2llEybs4kinQKjNPwRu236mx+ZtGH87FC6NF88NijZoYpBmZN\nSQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "minty", + }, + counts: { + id: 1, + site_id: 1, + users: 35, + posts: 324, + comments: 112, + communities: 26, + users_active_day: 0, + users_active_week: 2, + users_active_month: 2, + users_active_half_year: 6, + }, + }, + admins: [ + { + person: { + id: 2, + name: "nirari", + display_name: "二ノ倉ちどり(Lemmy)", + avatar: "https://tabinezumi.net/pictrs/image/UKKvqojRKc.jpg", + banned: false, + published: "2020-11-29T17:17:12.928863", + updated: "2021-11-30T07:53:05.866816", + actor_id: "https://tabinezumi.net/u/nirari", + bio: "にのくらちどり/Chidori Ninokura\n \nLemmyサーバー“たびねずみのみみ”(tabinezumi.net)の管理人です。\n\nこのユーザーをフォローすることはできません。tabinezumi.netに関するお知らせを見たいときは\n[@nirari@nightly.fedibird.com](https://nightly.fedibird.com/@nirari)か[たびねずみインフォメーション](https://tabinezumi.net/c/main)(コミュニティ/グループ)のフォローを推奨します。", + local: true, + banner: "https://tabinezumi.net/pictrs/image/swaR4yHSFA.png", + deleted: false, + inbox_url: "https://tabinezumi.net/u/nirari/inbox", + shared_inbox_url: "https://tabinezumi.net/inbox", + matrix_user_id: "@nirari:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 8, + person_id: 2, + post_count: 197, + post_score: 438, + comment_count: 55, + comment_score: 83, + }, + }, + ], + online: 1, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "group.pullopen.xyz", + "groups.qoto.org", + "lem.ph3j.com", + "lemmy.0px.io", "lemmy.cardina1.red", "lemmy.fediverse.jp", "lemmy.juggler.jp", "lemmy.ml", - "lemmy.perthchat.org", - "lemmy.shrieker.net", "lm.korako.me", "tabinezumi.net", ], @@ -3677,24 +3694,24 @@ export const instance_stats = { application_question: null, private_instance: false, actor_id: "https://fapsi.be/", - last_refreshed_at: "2022-05-13T23:58:29.507149", + last_refreshed_at: "2022-05-23T15:39:34.279850", inbox_url: "https://fapsi.be/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuRyS/dC5EQhMZXhFRiFP\nOFCzdE46rqx8r4G2pOoMCqyVnWoXsUuPFsZZ+Ksxbirm37tRPXfgTFrQr+OoMlKq\n7PYeLcjpYBB/pZtMsntBL9w8+hZJbnFyBaVWpobd072DErR3nfJH+ti29NxqOsLB\nXPE75lCWuUPgYzQ40Km0y8fxvJnYkpDo0Z3uL2GVYARHzJ86dl1mdTPEagT6iaVj\noXKx9CsLu6myn4UUCcOet5QGVvcT7n1f99UtK0WAbj9842Tyi+cX/apocJ+vyCZh\nCFu0ewY5HfKg3bWLEXQ392UZvizki0+fGXfDKFDMPYY5iYlqg5bE39gVb0/R0EIv\nywIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyWqLoK3KTDdcgQbNSTfH\nAAX4dEV8Z3g7uOCgSAWxX4+oJ3niL4OR9qOrQ90f0WgTSPVylt5NKqOvQzqpFGoK\n335ZmDFmKT1L/2UbBYZ+iwCTxGnnUW/2cuJ5caNL7Khw4TzqIbaoiAZcjG8WvlE8\ndXhpsmDneQr0IZJCskIHEeukT0ljVTHtd0Xw8eMa8jFQk37jZ1OBBz8AY9oVb1KA\nsQvvjp7uAjc0Y8y/O7yOhkOmuRhc5S2nBqI5tzPh7v3U87VjNBYhMWykgTIxIE1j\nKFsvOgh1yVD5e/lbTJYtuMitQDeXwsNjOgrHxbAK3aXAdGswRKwKDn2zB7zdsRp8\npQIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "winternord", }, counts: { id: 1, site_id: 1, - users: 160, - posts: 317, - comments: 354, + users: 164, + posts: 322, + comments: 355, communities: 9, users_active_day: 0, - users_active_week: 2, + users_active_week: 1, users_active_month: 2, - users_active_half_year: 27, + users_active_half_year: 26, }, }, admins: [ @@ -3722,14 +3739,14 @@ export const instance_stats = { counts: { id: 1, person_id: 2, - post_count: 231, - post_score: 595, - comment_count: 242, - comment_score: 824, + post_count: 236, + post_score: 600, + comment_count: 243, + comment_score: 834, }, }, ], - online: 2, + online: 1, version: "0.16.3", my_user: null, federated_instances: { @@ -3786,64 +3803,67 @@ export const instance_stats = { }, }, { - domain: "elgiebety.pl", + domain: "forum.nobigtech.es", site_info: { site_view: { site: { id: 1, - name: "elgiebety", - sidebar: null, - published: "2021-12-12T12:33:27.780974", - updated: "2022-05-13T20:40:11.707136", + name: "Foro de NoBIGTech", + sidebar: + "Foro de debate, ayuda y temas generales sobre soberanía y privacidad digital, y los servicios de nobigtech.es\n\nCódigo de conducta: https://www.nobigtech.es/terms/", + published: "2021-11-17T21:32:43.387256", + updated: "2022-04-23T21:46:32.405511", enable_downvotes: true, open_registration: true, - enable_nsfw: true, - icon: null, + enable_nsfw: false, + icon: "https://forum.nobigtech.es/pictrs/image/atwGqrgiHu.png", banner: null, - description: null, - community_creation_admin_only: false, + description: "Foro de NoBIGTech", + community_creation_admin_only: true, require_email_verification: false, - require_application: false, - application_question: null, + require_application: true, + application_question: + "Especifique la razón por la que desea unirse a este foro de agregadores de enlaces en el Fediverso (Lemmy)", private_instance: false, - actor_id: "https://elgiebety.pl/", - last_refreshed_at: "2022-05-14T12:37:38.331330", - inbox_url: "https://elgiebety.pl/site_inbox", + actor_id: "https://forum.nobigtech.es/", + last_refreshed_at: "2022-05-25T04:00:23.439272", + inbox_url: "https://forum.nobigtech.es/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmpnEQPbuSCg03asNuKxN\nch/vqscTlG86d7rmkXnNUb+gIJ2cmnExGfoaWSX4pnp6XlrS8aX4IisyK906JodE\nUvDe6a8PwhukETjSui4KM1yTlzkADcv3LYE3XIe5DBYz9oBI45ds9IsOJ8SyqOng\nl4vyMObKXHGQmCsm0Hcdz3qZUXEs8qlHQzOV89ywtD21+7XTEaaPPSyJYjW1pxgY\nKp5jL6dToaAl4RtLBH71+CB45JmbuIbGIAoW0aTJhrzOUHyLIp1ccdmBPO+FSlsA\nfwSxB3bPRijvd5d1jqcKqfMlKMQ0nhfoI+YB6HIfDk8it3tV3sptjx4l7KE5N9jB\naQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "vaporwave-dark", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwVslo1HfkP4HmVYulGnF\njFIqgs33uYLerAHuihrBdZnJSgWNremA73qinQGgIoHWRjYoel7R+gO5eirRVSvW\nMT6+dHmhT9/NGLABiwwi/lLq/TZy96NkX7RGSH+YGURgezOQ5YDryzNnyNBdN53/\nXZn1gsPhvYIL+V023ot+MD3y63LQkOvy9QHOBCMyVHGWNRlymJBCQhj1u/JYNEEx\nlGzDtHB5MPwgrGYqLFuOHUx/OavK4T5xOcJ2bj7oma946BZN/e7W3UgE4vL9hd0r\nzXnBKZ9olsC9x52tEQsO1V/k9MnKPRrZBujQNqWnO++t0lbll9fSm7svsETmAplK\naQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", }, counts: { id: 1, site_id: 1, - users: 4, - posts: 19, - comments: 4, - communities: 3, - users_active_day: 1, - users_active_week: 1, + users: 9, + posts: 92, + comments: 16, + communities: 1, + users_active_day: 0, + users_active_week: 0, users_active_month: 2, - users_active_half_year: 2, + users_active_half_year: 5, }, }, admins: [ { person: { - id: 2, - name: "makarygo", - display_name: null, - avatar: null, + id: 34, + name: "admin", + display_name: "NoBIGTech", + avatar: + "https://forum.nobigtech.es/pictrs/image/I4W6nsyJN5.png", banned: false, - published: "2021-12-12T12:33:27.064604", - updated: "2022-05-14T11:12:54.492695", - actor_id: "https://elgiebety.pl/u/makarygo", + published: "2021-11-17T21:31:15.400806", + updated: "2021-11-17T21:36:13.210670", + actor_id: "https://forum.nobigtech.es/u/admin", bio: null, local: true, banner: null, deleted: false, - inbox_url: "https://elgiebety.pl/u/makarygo/inbox", - shared_inbox_url: "https://elgiebety.pl/inbox", + inbox_url: "https://forum.nobigtech.es/u/admin/inbox", + shared_inbox_url: "https://forum.nobigtech.es/inbox", matrix_user_id: null, admin: true, bot_account: false, @@ -3851,11 +3871,11 @@ export const instance_stats = { }, counts: { id: 1, - person_id: 2, - post_count: 18, - post_score: 32, - comment_count: 0, - comment_score: 0, + person_id: 34, + post_count: 2, + post_score: 2, + comment_count: 7, + comment_score: 10, }, }, ], @@ -3863,72 +3883,74 @@ export const instance_stats = { version: "0.16.3", my_user: null, federated_instances: { - linked: ["elgiebety.pl", "lemmy.ml", "szmer.info"], + linked: ["forum.nobigtech.es", "lemmy.eus", "lemmy.ml"], allowed: null, blocked: null, }, }, }, { - domain: "social.lealternative.net", + domain: "stammtisch.hallertau.social", site_info: { site_view: { site: { id: 1, - name: "Le Alternative lemmy", - sidebar: "# Regole\nÈ possibile soltanto parlare in italiano", - published: "2022-05-04T07:50:10.256494", - updated: "2022-05-09T09:16:28.749709", + name: "Stammtisch", + sidebar: + "Der dezentrale Stammtisch für die Hallertau auf Basis von lemmy.ml.\n\nRegeln\n\nSeids nett zueinander, gell?! Wer se ned zu benehmen weiß, fliegt. Ganz einfach. Aufbassn, wos du do schreibst.\n\nMia wuin koan Rassismus, koa Gewalt, koan Hass, koan Porn, Werbung höchstens für hayfidelity, Herbstschild, hayretic oder Hallertau.Social und reissts eich bitte zam, wenns Richtung Verschwörungstheorien gäd. Mia kennan gern drüber redn, oba ned überdreibn bidsche. Immer schee locker bleibn.", + published: "2021-01-18T11:00:26.709474", + updated: "2022-03-19T17:38:44.436486", enable_downvotes: true, - open_registration: false, + open_registration: true, enable_nsfw: true, - icon: "https://social.lealternative.net/pictrs/image/93634af7-8633-49a4-9695-4a1823874acb.png", - banner: null, - description: - "Il social network di Le Alternative creato grazie a Lemmy", - community_creation_admin_only: true, - require_email_verification: false, + icon: null, + banner: + "https://stammtisch.hallertau.social/pictrs/image/TbUbi4vFwZ.jpg", + description: null, + community_creation_admin_only: false, + require_email_verification: true, require_application: true, - application_question: "Perché vuoi iscriverti?", + application_question: null, private_instance: false, - actor_id: "https://social.lealternative.net/", - last_refreshed_at: "2022-05-04T07:50:10.255582", - inbox_url: "https://social.lealternative.net/site_inbox", + actor_id: "https://stammtisch.hallertau.social/", + last_refreshed_at: "2022-05-25T06:40:43.874220", + inbox_url: "https://stammtisch.hallertau.social/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArviwOjfJ9eCU+/CGTOor\npRKbBndmFon2aH+TCjOSPTfZTxeX/vz2W6EpOEmmmKn7955WXrV7CjcoKVWy1gHa\nqp/8ayB3BWEhRZj6toMwo2uNwTjKPBUAP8UDJWhfToj0+5S6evyjkU5VURaQOuqx\ntLa1y/zHN4TqnV8Wd44EhUY/o05uP68K3jsKfntIVAu/T6EJd11YFs1+cwDcrMpL\n2+cVXKZlwwuehNMnO8QAgZpJWR7QjPAvsbJzAPI5KbnKSfT0N0xTsqwoS5UG/Zi5\nUX2cGMN3r6vqLg+UAGPXn5oBInuWE08PJ/1GOQ+kq9seBMHEuZpBGUIDMnb7AlJl\nNwIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvmZC+pDStQyX1uLRpsaS\nEtgWKQsnpFzek/7hzAXad/s+iXtwKFBxw5L2Vf/b0yBaNj+BMQTKKPD/LK+FTRxF\nNtDqHRX3MfbO3SFkvAXfYYNV1PA4T+zCTxG79TW4EHlRfPWjJ9tqCL/c8UnlLKQZ\nDcLk185NUEXooiUKAK5BAkqtHzpJ0jpat+3il/iiuMPygTKyKBUPTT6wKwk9DmTP\n9egTDfWCauCwhcwJLfiA6qpfh8mnc5cow8dgNH1nIVMaLBWU+XQ/C1v/qT0hoZ2a\nsbPzlmX78vEIetYSNhlHQ57Oz9VR3g0MfvLMqO8lvJWRNEhTvqf6cGr81Trg719K\nFwIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "browser", }, counts: { id: 1, site_id: 1, - users: 4, - posts: 2, - comments: 0, - communities: 2, + users: 56, + posts: 160, + comments: 46, + communities: 11, users_active_day: 0, - users_active_week: 2, + users_active_week: 0, users_active_month: 2, - users_active_half_year: 2, + users_active_half_year: 18, }, }, admins: [ { person: { id: 2, - name: "skariko", - display_name: null, + name: "hayfilem", + display_name: "Stammtischef", avatar: null, banned: false, - published: "2022-05-04T07:45:23.436482", - updated: "2022-05-04T19:58:46.746189", - actor_id: "https://social.lealternative.net/u/skariko", + published: "2021-01-18T11:00:26.613126", + updated: "2021-08-29T16:15:39.324626", + actor_id: "https://stammtisch.hallertau.social/u/hayfilem", bio: null, local: true, banner: null, deleted: false, - inbox_url: "https://social.lealternative.net/u/skariko/inbox", - shared_inbox_url: "https://social.lealternative.net/inbox", + inbox_url: + "https://stammtisch.hallertau.social/u/hayfilem/inbox", + shared_inbox_url: "https://stammtisch.hallertau.social/inbox", matrix_user_id: null, admin: true, bot_account: false, @@ -3937,10 +3959,10 @@ export const instance_stats = { counts: { id: 1, person_id: 2, - post_count: 1, - post_score: 2, - comment_count: 0, - comment_score: 0, + post_count: 0, + post_score: 0, + comment_count: 1, + comment_score: 1, }, }, ], @@ -3948,8 +3970,27 @@ export const instance_stats = { version: "0.16.3", my_user: null, federated_instances: { - linked: ["feddit.it", "lemmy.ml", "social.lealternative.net"], - allowed: null, + linked: [ + "feddit.de", + "freindal.hallertau.social", + "hub.13ad.de", + "hub.hayfidelity.de", + "lemmy.ml", + "mainburg.hallertau.social", + "pirati.ca", + "stammtisch.hallertau.social", + "stubn.hallertau.social", + ], + allowed: [ + "lemmy.ml", + "feddit.de", + "stubn.hallertau.social", + "mainburg.hallertau.social", + "hub.13ad.de", + "hub.hayfidelity.de", + "freindal.hallertau.social", + "pirati.ca", + ], blocked: null, }, }, @@ -4069,65 +4110,65 @@ export const instance_stats = { }, }, { - domain: "lemmy.juggler.jp", + domain: "exploding-heads.com", site_info: { site_view: { site: { id: 1, - name: "Juggler.jp Lemmyサービス", + name: "Exploding Heads", sidebar: - "テストサーバだよ。データは気が向いた時に消すよ。\n\n- このサーバでは政治的な話題を取り扱いません。\n- このサーバは日本の法律や判例に従います。\n", - published: "2020-12-15T04:32:19.360061", - updated: "2021-01-27T00:04:06.936036", + "We are a community of free people tired of propaganda fed to us government, media, big tech, crony capitalists, and self anointed elites.\n\n**Rules**\n- Be authentic.\n- Be respectful. Everyone should feel welcome here.\n- No porn.\n- No ads / spamming.\n- No doxing\n- No threats or personal insults\n- No discrimination\n\n[Terms](https://exploding-heads.com/post/1) - [Privacy Policy](https://exploding-heads.com/post/2) - \n\nExploding Heads © 2022. All rights reserved\n\n", + published: "2022-02-27T17:24:00.976189", + updated: "2022-05-17T11:46:47.811484", enable_downvotes: true, open_registration: true, enable_nsfw: true, - icon: "https://lemmy.juggler.jp/pictrs/image/v0TGrlnKGS.png", + icon: "https://exploding-heads.com/pictrs/image/f48abd93-f2d9-4a44-a327-380e063744b1.png", banner: null, - description: null, + description: "Things that make your head explode", community_creation_admin_only: false, require_email_verification: false, require_application: false, application_question: null, private_instance: false, - actor_id: "https://lemmy.juggler.jp/", - last_refreshed_at: "2022-03-16T11:42:54.954635", - inbox_url: "https://lemmy.juggler.jp/site_inbox", + actor_id: "https://exploding-heads.com/", + last_refreshed_at: "2022-05-25T02:58:55.830632", + inbox_url: "https://exploding-heads.com/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp+7UxqYrLqoQSnDmkrcK\n5rXc+cETWnvQyQfeiX5CqxxkyfKSlHU+FtC7Q7NTn/k+TFnruEp3iNGYOYSUnUbH\nYKlmOLwxUZgMgPz+rh20xnIhiYDUD0H8C1wguBxRL5OqzAEQrMoZpk4ugvkxXziO\nTsSxS8F+ns8bfMJ55ahDFEF2+uG8hURAEoCgEOi0pjaGeu5Wph+hgffdiJhT8AyO\nnM8kQ3I1+1JV+GSx3kX42awf4q2klULCjBrqlZQIu5I8dVJt+NlVTK2OvwV5cGGs\nGnqBwhpYSnCQ9eCO7qIRlYauIULhZaiCinvgRPIw0hbuqR2ibGiAO83T04Fv/Zj8\nLQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "browser", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArvMMVtdCzBGutYhJUxNw\nmTDlcgUPpiiDzPY0ETW1c2EIj58Fbu82VeYRPM3BvXpRegGjFPzVcrgJptukWzzG\nYcssE8fq9O5ARb2UsdADuL+UvpPEyGvX1/Qh1aTFbyZiAbPFLimaL512f1gVu3L9\n7whz76O1Nne8lZGh6eYhgA79JjOwNkEvw+fdg0x3uFI+sx/+sjGUcV36L7KAoNTx\nhsxC/WalK572YXVgAD94N4aytqn9kdywfctauAfeTNmDfWaU32M0t6D4u3p62E03\nJwZKizJj+kHVMf8zDSfejFuLA9/12bt0NJwGgSOnbN240wRHNrJ4ud4VjZIfWRAE\noQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "litera", }, counts: { id: 1, site_id: 1, - users: 30, - posts: 307, - comments: 89, - communities: 18, - users_active_day: 0, - users_active_week: 1, + users: 19, + posts: 1707, + comments: 105, + communities: 57, + users_active_day: 1, + users_active_week: 2, users_active_month: 2, - users_active_half_year: 11, + users_active_half_year: 16, }, }, admins: [ { person: { id: 2, - name: "juggler", - display_name: null, + name: "admin", + display_name: "Kapow", avatar: null, banned: false, - published: "2020-12-15T04:32:19.262706", - updated: null, - actor_id: "https://lemmy.juggler.jp/u/juggler", + published: "2022-02-27T17:20:27.414369", + updated: "2022-05-01T11:58:16.192546", + actor_id: "https://exploding-heads.com/u/admin", bio: null, local: true, banner: null, deleted: false, - inbox_url: "https://lemmy.juggler.jp/u/juggler/inbox", - shared_inbox_url: "https://lemmy.juggler.jp/inbox", + inbox_url: "https://exploding-heads.com/u/admin/inbox", + shared_inbox_url: "https://exploding-heads.com/inbox", matrix_user_id: null, admin: true, bot_account: false, @@ -4136,7 +4177,112 @@ export const instance_stats = { counts: { id: 1, person_id: 2, - post_count: 2, + post_count: 1690, + post_score: 1936, + comment_count: 61, + comment_score: 100, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "baraza.africa", + "beehaw.org", + "buckeyestate.social", + "community.xmpp.net", + "exploding-heads.com", + "fapsi.be", + "gtio.io", + "heapoverflow.ml", + "lemmy.ca", + "lemmy.mesh.party", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmygrad.ml", + "mander.xyz", + "midwest.social", + "slrpnk.net", + "sopuli.xyz", + "verity.fail", + "wolfballs.com", + ], + allowed: null, + blocked: null, + }, + }, + }, + { + domain: "social.lealternative.net", + site_info: { + site_view: { + site: { + id: 1, + name: "Le Alternative lemmy", + sidebar: "# Regole\nÈ possibile soltanto parlare in italiano", + published: "2022-05-04T07:50:10.256494", + updated: "2022-05-19T10:33:03.334684", + enable_downvotes: true, + open_registration: false, + enable_nsfw: true, + icon: "https://social.lealternative.net/pictrs/image/93634af7-8633-49a4-9695-4a1823874acb.png", + banner: null, + description: + "Il social network di Le Alternative creato grazie a Lemmy", + community_creation_admin_only: true, + require_email_verification: false, + require_application: true, + application_question: "Perché vuoi iscriverti?", + private_instance: true, + actor_id: "https://social.lealternative.net/", + last_refreshed_at: "2022-05-18T15:32:54.746151", + inbox_url: "https://social.lealternative.net/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv3lw8o9EMEOwoBp4f3Hf\nR9VehLJV9jqPsMOpNKmr8pujdSPiQN2lCYpmpTagfjP140Kg1bmt7hIFp7XUXp+5\nZ4vIojQ49e5IXGzy9bT/MHg5L7xzz67/YoEGKd02q1VRZREBZdT4YMLGaUKr9X8O\nnIs2v6OTbHmi5BbRA6EHpUXprMa2WxvRbOLb1ndNv5QiugAq1YJU3ubKMvtuVc+p\nFaEW37+li81FgWX9CDsCGdj33u+ZszmjIwGxbS+yIX5MQLxKvvo6OkJbJ4wk9tE2\nGdac3eKqAD2vlnPXAB/vCwGryGNWCmeck9USca28nMm3qbJWHLk0OJ8J9CpJQV00\ngwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 4, + posts: 2, + comments: 0, + communities: 2, + users_active_day: 0, + users_active_week: 0, + users_active_month: 2, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "skariko", + display_name: null, + avatar: null, + banned: false, + published: "2022-05-04T07:45:23.436482", + updated: "2022-05-04T19:58:46.746189", + actor_id: "https://social.lealternative.net/u/skariko", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://social.lealternative.net/u/skariko/inbox", + shared_inbox_url: "https://social.lealternative.net/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1, post_score: 2, comment_count: 0, comment_score: 0, @@ -4144,24 +4290,624 @@ export const instance_stats = { }, ], online: 0, + version: "0.16.3", + my_user: null, + federated_instances: null, + }, + }, + { + domain: "elgiebety.pl", + site_info: { + site_view: { + site: { + id: 1, + name: "elgiebety.pl", + sidebar: null, + published: "2021-12-12T12:33:27.780974", + updated: "2022-05-18T02:46:31.430490", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://elgiebety.pl/pictrs/image/17cc0edd-0ce9-4e55-be39-83255eabde3e.png", + banner: + "https://elgiebety.pl/pictrs/image/76be6ec9-5246-4526-b16e-0ea0e20cd5a2.png", + description: null, + community_creation_admin_only: false, + require_email_verification: false, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://elgiebety.pl/", + last_refreshed_at: "2022-05-14T12:37:38.331330", + inbox_url: "https://elgiebety.pl/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmpnEQPbuSCg03asNuKxN\nch/vqscTlG86d7rmkXnNUb+gIJ2cmnExGfoaWSX4pnp6XlrS8aX4IisyK906JodE\nUvDe6a8PwhukETjSui4KM1yTlzkADcv3LYE3XIe5DBYz9oBI45ds9IsOJ8SyqOng\nl4vyMObKXHGQmCsm0Hcdz3qZUXEs8qlHQzOV89ywtD21+7XTEaaPPSyJYjW1pxgY\nKp5jL6dToaAl4RtLBH71+CB45JmbuIbGIAoW0aTJhrzOUHyLIp1ccdmBPO+FSlsA\nfwSxB3bPRijvd5d1jqcKqfMlKMQ0nhfoI+YB6HIfDk8it3tV3sptjx4l7KE5N9jB\naQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "vaporwave-dark", + }, + counts: { + id: 1, + site_id: 1, + users: 4, + posts: 20, + comments: 4, + communities: 3, + users_active_day: 1, + users_active_week: 1, + users_active_month: 2, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "makarygo", + display_name: "Makary", + avatar: null, + banned: false, + published: "2021-12-12T12:33:27.064604", + updated: "2022-05-18T15:23:02.308413", + actor_id: "https://elgiebety.pl/u/makarygo", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://elgiebety.pl/u/makarygo/inbox", + shared_inbox_url: "https://elgiebety.pl/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 19, + post_score: 33, + comment_count: 0, + comment_score: 0, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["elgiebety.pl", "lemmy.ml", "szmer.info"], + allowed: null, + blocked: null, + }, + }, + }, + { + domain: "lemmy.rollenspiel.monster", + site_info: { + site_view: { + site: { + id: 1, + name: "RollenspielMonster", + sidebar: + "# Regeln\n\n- Keine Fanatismus - einschließlich Rassismus, Sexismus, Behindertenfeindlichkeit, Homophobie oder Fremdenfeindlichkeit.\n- Sei respektvoll. Jeder sollte sich hier willkommen fühlen.\n- Keine Pornos.\n- Keine Werbung / Spamming.\n\n## Weiterführende Links\n\n- [Charta](https://rollenspiel.monster/charta)\n- [Nutzungsbedingugnen](https://rollenspiel.monster/terms)\n- [Impressum](https://rollenspiel.monster/imprint)\n- [Datenschutzerklärung](https://rollenspiel.monster/privacy)\n- [Spenden](https://rollenspiel.monster/donate)", + published: "2022-04-14T18:13:59.830117", + updated: "2022-04-15T10:27:33.795221", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.rollenspiel.monster/pictrs/image/040c05a3-ba7c-4e66-a225-5209dd4893f9.png", + banner: + "https://lemmy.rollenspiel.monster/pictrs/image/bb5c9566-a03c-4100-9c5d-77440256ab42.png", + description: + "Eine deutschsprachige Instanz für Rollenspieler. Wir bieten einen platz für Rollenspiel, Pen & Paper, Tabletop, TCG und vieles mehr.", + community_creation_admin_only: false, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.rollenspiel.monster/", + last_refreshed_at: "2022-05-23T18:44:03.591859", + inbox_url: "https://lemmy.rollenspiel.monster/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuIcJ9yMDHboIo66em0y2\nvzDr+yGdIU9ethtG4Y2XppVAuFGqeynOUAQ+4ou3BDi+smJrux2RqLDWbiL+9nRK\nNbP5XX6GriuV0t9suGsYd0jwEK/N2A1ybYq3KsLpF/fx2lKKVvAvmSoskLnDXwhz\naKgxAzHL5vh6rsIdgWbQQVlCWrBWLvF2piRSqSIj5OdQIke5T/wscuXeOlqObvqF\naV35kwa6YzIOoF78SSQWoO4x3pInR5SLBqKZeUrKjjSWLDj40u3fr5PyOPpNjyiH\n8JghX42Wwvb6a6/G0pdTWf3INxNamYXimWwroukFew1ivk9iNjBMtafOY+H2yFsP\n8QIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 3, + posts: 19, + comments: 18, + communities: 7, + users_active_day: 1, + users_active_week: 1, + users_active_month: 2, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "Tealk", + display_name: "Tealk", + avatar: + "https://lemmy.rollenspiel.monster/pictrs/image/f32e7df9-60d1-4da1-9a88-05c1fda304a7.png", + banned: false, + published: "2022-04-14T18:13:41.657050", + updated: "2022-04-19T06:17:02.534078", + actor_id: "https://lemmy.rollenspiel.monster/u/Tealk", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.rollenspiel.monster/u/Tealk/inbox", + shared_inbox_url: "https://lemmy.rollenspiel.monster/inbox", + matrix_user_id: "@tealk:tchncs.de", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 19, + post_score: 28, + comment_count: 17, + comment_score: 22, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["feddit.de", "lemmy.ml"], + allowed: null, + blocked: [ + "caw.ai", + "collapse.cat", + "cyber-news.fr", + "elgiebety.pl", + "exploding-heads.com", + "forum.nobigtech.es", + "goldandblack.us.to", + "info.prou.be", + "group.lt", + "gtio.io", + "legbeard.xyz", + "lem.ph3j.com", + "lemmy.cat", + "lemmy.coupou.fr", + "lemmy.eus", + "lemmy.fediverse.jp", + "lemmy.juggler.jp", + "lemmy.kaouenn-noz.fr", + "lemmy.mesh.party", + "lemmy.otakufarms.com", + "lemmy.pt", + "lemmy.services.coupou.fr", + "lemmy.shrieker.net", + "lemmy.tedomum.net", + "lemmy.vip", + "lemmy.wiredentrypoint.xyz", + "lemmygrad.ml", + "lm.korako.me", + "mandacaru.caatinga.digital", + "szmer.info", + "tabinezumi.net", + "www.cyber-news.fr", + "wolfballs.com", + "a.tide.tk", + "b.tide.tk", + "c.tide.tk", + "dev.narwhal.city", + "lotide.fbxl.net", + "narwhal.city", + "lotide.exopla.net.eu.org", + ], + }, + }, + }, + { + domain: "fuckreddit.tryp.digital", + site_info: { + site_view: { + site: { + id: 1, + name: "TRYP", + sidebar: null, + published: "2022-04-01T17:14:11.255355", + updated: "2022-04-24T11:15:41.419446", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://fuckreddit.tryp.digital/pictrs/image/52dc0c6c-71a4-40f9-a326-b51d54c95173.png", + banner: + "https://fuckreddit.tryp.digital/pictrs/image/1c8a890a-b39a-4d8b-b7a8-b66299e93a69.jpeg", + description: "Now 50% Prod!", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: "# Why here?", + private_instance: false, + actor_id: "https://fuckreddit.tryp.digital/", + last_refreshed_at: "2022-05-25T12:07:32.030050", + inbox_url: "https://fuckreddit.tryp.digital/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArK5pZspROAmDidfkK8Iy\nmEi8Cucq/PkdsdZT8ZkVZYTye/Sty6Hh9cTsD/eX7G6qJDPWwvZtMksYrxxRRhtm\nfQr8UzzjTPjXQwuT8ZV+HnV44klvYvm74YXDV3TXLr7FuoFjSiziEB4aLGognTrm\nJ+XWjDzzRnN7zWNLc5WjT2bpooh1RGwglOkmBDAP2jhjQk/eZcg7JEMYdfk1cTNA\n1x+dVN2X5Sq04Rxwp+yhKQafE2VXqpXMcdL0vtEdb7/PEsLE4HdwFl6GWjCYt8Yh\n0E5i46a2zv9HqPECGqJePQyqWX6ZUH1YNsN5R72lx19V0RphHOBKA6Z/yMO09VIz\n6QIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly", + }, + counts: { + id: 1, + site_id: 1, + users: 6, + posts: 13, + comments: 73, + communities: 3, + users_active_day: 1, + users_active_week: 1, + users_active_month: 1, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "Tryp", + display_name: "Tryp", + avatar: + "https://fuckreddit.tryp.digital/pictrs/image/8191774c-0521-4be5-a04e-70a1d958ddcc.png", + banned: false, + published: "2022-04-01T17:10:16.494997", + updated: "2022-04-24T11:17:26.761802", + actor_id: "https://fuckreddit.tryp.digital/u/Tryp", + bio: "DMTryptaminesX from Reddit. \n\n[Join The Garden ](https://discord.gg/srrH8BBMWK) for reviews on popular botanical vendors. ", + local: true, + banner: + "https://fuckreddit.tryp.digital/pictrs/image/fe595752-6d17-43d7-ae26-85b0950a7d0c.jpeg", + deleted: false, + inbox_url: "https://fuckreddit.tryp.digital/u/Tryp/inbox", + shared_inbox_url: "https://fuckreddit.tryp.digital/inbox", + matrix_user_id: "@dmtryptamines:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 12, + post_score: 48, + comment_count: 70, + comment_score: 186, + }, + }, + ], + online: 2, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "beehaw.org", + "buckeyestate.social", + "feddit.de", + "gtio.io", + "heapoverflow.ml", + "lemmy.ca", + "lemmy.mesh.party", + "lemmy.ml", + "lemmy.perthchat.org", + "mander.xyz", + "midwest.social", + "slrpnk.net", + "sopuli.xyz", + "verity.fail", + ], + allowed: null, + blocked: [], + }, + }, + }, + { + domain: "buckeyestate.social", + site_info: { + site_view: { + site: { + id: 1, + name: "buckeyestate.social", + sidebar: + "1. No porn\n2. No hate speech/bigotry\n3. No QAnon, antivax, or conspiracy theories", + published: "2022-03-25T14:55:35.670127", + updated: "2022-03-26T12:41:06.835185", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://buckeyestate.social/pictrs/image/a9b79b22-7346-40fc-b10c-87d486215cde.png", + banner: null, + description: + "A lemmy server for, but not limited to, leftists of the state of Ohio", + community_creation_admin_only: false, + require_email_verification: false, + require_application: true, + application_question: + "Why do you want to join this instance?\n\nWhat did you choose your username?\n", + private_instance: false, + actor_id: "https://buckeyestate.social/", + last_refreshed_at: "2022-05-12T01:13:54.006226", + inbox_url: "https://buckeyestate.social/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxHFepeiN/4yEptiRt7Va\nNBQhe3h++On8TWXORQk7hldJdgVC1ohqE2uMJyOQmD7oDwQSRPxFrEQDsIB/T3dw\nFhpd4CFBJhb2JWm/eaQmKGlERU7ZppMWjzlp+ItmuMCgvvwSCa8gVmrh0hi+PfjM\n/UZOOHvTDMOsiOXC1seFqBxMbORZg1tmE8C4YbwayDeEj/Nn7ZNfiWp8EHmyviap\nB7f3oz1MlpO5U3MGnjSBw3MmTb7J7E3aL20JnN3i0Expvxdhn8oo5+0ZR2eyworh\nhYNsFSVdTJGnRZtyDQWBR2B3FFp0GXZKG0si0BYJwMYQtbvyHRhHeBZx/8q9u5a/\ntQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 4, + posts: 17, + comments: 8, + communities: 1, + users_active_day: 0, + users_active_week: 1, + users_active_month: 1, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "seahorseohio", + display_name: null, + avatar: null, + banned: false, + published: "2022-03-25T14:55:35.241069", + updated: "2022-05-05T16:40:24.081180", + actor_id: "https://buckeyestate.social/u/seahorseohio", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://buckeyestate.social/u/seahorseohio/inbox", + shared_inbox_url: "https://buckeyestate.social/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 14, + post_score: 98, + comment_count: 6, + comment_score: 18, + }, + }, + { + person: { + id: 8, + name: "Redpandalovely", + display_name: null, + avatar: null, + banned: false, + published: "2022-03-25T16:20:32.947167", + updated: "2022-04-21T22:43:13.039893", + actor_id: "https://buckeyestate.social/u/Redpandalovely", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://buckeyestate.social/u/Redpandalovely/inbox", + shared_inbox_url: "https://buckeyestate.social/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 7, + person_id: 8, + post_count: 3, + post_score: 9, + comment_count: 2, + comment_score: 4, + }, + }, + ], + online: 1, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["beehaw.org", "lemmy.ml", "midwest.social"], + allowed: null, + blocked: ["wolfballs.com", "exploding-heads.com", "collapse.cat"], + }, + }, + }, + { + domain: "lemmy.otakufarms.com", + site_info: { + site_view: { + site: { + id: 1, + name: "Otaku Farms", + sidebar: + "The current Fediverse instances that makeup the entirety of Otaku Farms.\n\n- Pleroma instance can be found [here](https://otakufarms.com).\n- Peertube instance can be found [here](https://peertube.otakufarms.com).\n- Plume instance can be found [here](https://plume.otakufarms.com).", + published: "2021-11-28T03:07:28.577878", + updated: "2022-05-02T07:57:34.417167", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.otakufarms.com/pictrs/image/ekmeJ0BD8S.png", + banner: + "https://lemmy.otakufarms.com/pictrs/image/PNzQohs55g.jpg", + description: + "Otaku Farms is a network of Fediverse instances created for the sole purpose of letting individuals express themselves.", + community_creation_admin_only: false, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.otakufarms.com/", + last_refreshed_at: "2022-05-17T21:02:40.259490", + inbox_url: "https://lemmy.otakufarms.com/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA60oLt1CLoMJq47G/isyx\niNYmYdp65IGKhnJQMcl+qnYxQIuTt/s3avFWU+7+/KHqpnajyQRyY8iZJldOacah\nPo8g4ozxbRM2GjwALJdjGS8XWPKPSioYAwTUGvqitxiJYJV/Knts45SykmBeDIxD\nnJvWCUzs+wN7WErdrF6zyxKiflsV2/v2woQj7k2yALJM+Y7eu1rNctajsxsX9byL\n0G+j5acvhNGsHNpVaBBoA/kc/PHLRDVehF0y7SO4a34gJ4yddLyLhHrtT0AckcJ1\nGxV0pKW/anuOkC7dzGMy4tT3tYL3bqLLI1kBMt55hnLIlbOIjkylmX7if1FNTAGc\ncwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly", + }, + counts: { + id: 1, + site_id: 1, + users: 4, + posts: 18, + comments: 1, + communities: 8, + users_active_day: 0, + users_active_week: 0, + users_active_month: 1, + users_active_half_year: 4, + }, + }, + admins: [ + { + person: { + id: 2, + name: "auraman", + display_name: "Elijah the Auraman", + avatar: + "https://lemmy.otakufarms.com/pictrs/image/LHd9FQEEZH.jpg", + banned: false, + published: "2021-11-28T03:07:27.876781", + updated: "2022-02-24T07:14:28.579101", + actor_id: "https://lemmy.otakufarms.com/u/auraman", + bio: "CEO and Founder of Otaku Farms.\nJust your average manga and comic book reviewer.", + local: true, + banner: + "https://lemmy.otakufarms.com/pictrs/image/IWBM0aAA3f.jpg", + deleted: false, + inbox_url: "https://lemmy.otakufarms.com/u/auraman/inbox", + shared_inbox_url: "https://lemmy.otakufarms.com/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1, + post_score: 1, + comment_count: 1, + comment_score: 1, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "gtio.io", + "lemmy.ml", + "lemmy.otakufarms.com", + "lm.korako.me", + "wolfballs.com", + ], + allowed: null, + blocked: null, + }, + }, + }, + { + domain: "lemmy.wiredentrypoint.xyz", + site_info: { + site_view: { + site: { + id: 1, + name: "Wiredentrypoint", + sidebar: null, + published: "2022-03-25T13:36:10.127624", + updated: "2022-03-25T16:17:47.720022", + enable_downvotes: true, + open_registration: false, + enable_nsfw: true, + icon: "https://lemmy.wiredentrypoint.xyz/pictrs/image/826b6251-bf21-41b4-b8f2-7a39a0b09313.png", + banner: null, + description: null, + community_creation_admin_only: true, + require_email_verification: false, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.wiredentrypoint.xyz/", + last_refreshed_at: "2022-03-25T14:20:54.034816", + inbox_url: "https://lemmy.wiredentrypoint.xyz/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4qyJS70Kw/sspYmb9YSs\nx/k/BeYiBYrAX4QKj7pyjoyIUbqt0glDx3+R7y3OrNrVsAXjDLGYjHOpzxKZafDO\n9ZUa3vdi879px247tPiSQw7FgQrHMtVD0A7NGLeA02QLtKInZN9cMU7K2nO0YqFe\nKjkCb3vBHkd30TYPE/J4Zq3m0ZYmu5+I+EOXSIo+fhvHWZmjp9GS1ChS+4blF1je\n2LWMSuCJUHbhgKU7UqD82AI18ZPVmfQRVdqOaWngLUW6zgSQz2b5F3+aiySdsv/9\nRjjYT4miPRULGX7EmRZ8jVMZ+rO6uRxMb76G5NwvQaltxqPF30jcYbmiRUE2yyy+\nDQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly", + }, + counts: { + id: 1, + site_id: 1, + users: 1, + posts: 5, + comments: 25, + communities: 0, + users_active_day: 0, + users_active_week: 1, + users_active_month: 1, + users_active_half_year: 1, + }, + }, + admins: [ + { + person: { + id: 2, + name: "axeltherabbit", + display_name: null, + avatar: + "https://lemmy.wiredentrypoint.xyz/pictrs/image/b6c79296-ac29-4679-a324-373eea8852a1.jpeg", + banned: false, + published: "2022-03-25T13:35:29.536095", + updated: "2022-03-25T13:39:23.050948", + actor_id: "https://lemmy.wiredentrypoint.xyz/u/axeltherabbit", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: + "https://lemmy.wiredentrypoint.xyz/u/axeltherabbit/inbox", + shared_inbox_url: "https://lemmy.wiredentrypoint.xyz/inbox", + matrix_user_id: "@axel:wiredentrypoint.xyz", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 5, + post_score: 30, + comment_count: 25, + comment_score: 49, + }, + }, + ], + online: 0, version: "0.16.1", my_user: null, federated_instances: { linked: [ - "bar.southfox.me", - "baraza.africa", - "lem.ph3j.com", - "lemmy.0px.io", - "lemmy.161.social", - "lemmy.cardina1.red", - "lemmy.fediverse.jp", - "lemmy.juggler.jp", + "ds9.lemmy.ml", + "feddit.de", "lemmy.ml", - "lemmy.shrieker.net", - "lemmygrad.ml", - "lm.korako.me", - "tabinezumi.net", - "wasurejio.link", + "lemmy.wiredentrypoint.xyz", ], allowed: null, blocked: null, @@ -4169,47 +4915,47 @@ export const instance_stats = { }, }, { - domain: "lemmy.cat", + domain: "lemmy.schuerz.at", site_info: { site_view: { site: { id: 1, - name: "Lemmy CAT", + name: "lemmy.schuerz.at", sidebar: - " [lemmy.cat](https://lemmy.cat) és una instància [Lemmy](https://join.lemmy.ml) per a les persones de cultura catalana. \n\nNormes:\n- No es permet cap mostra de racisme, xenofòbia o homofòbia.\n- Cal ser respectuós amb tothom. Tothom és benvingut.\n- Prohibida la pornografia.\n- Prohibida la publicitat. ", - published: "2020-12-10T08:59:13.928471", - updated: "2022-03-14T20:34:53.047724", + "Leider haben sich viele Spammer angemeldet, und Lemmy bietet noch keine Möglichkeit, die Registrierung zu regulieren... Daher habe ich jetzt die Registrierung wieder geschlossen. \n\nFür Registrierung bitte um eine Nachricht an mailto:registrierung-lemmy@schuerz.at \n\n![](https://lemmy.schuerz.at/pictrs/image/8Dinj9DGBd.png)\n\nDas ist ein deutsprachiger Lemmy, welcher sich vorerst hauptsächlich mit den Themen Eisenbahn und Modellbahn beschäftigt. \n\nDieses Lemmy ist privat und in meiner Freizeit betrieben. \nWenn du einen Account hier haben möchtest, bitte ich um ein [Email an den Admin](mailto:admin@schuerz.at?subject=Bitte%20um%20Lemmy-Account)\n\n\nEs gibt keine Garantie für den Betrieb oder die Integrität der Daten. \nInhalte die nicht den Regeln entsprechen, werden gelöscht, was auch ohne Vorwarnung geschehen kann. Gleiches kann mit dem Verfasser solcher Inhalte auch geschehen. \n\nErwünschte und unerwünschte Inhalte:\n\nWas bei mir nicht toleriert wird, sind Rassismus, Extremismus, Homophobie, Verschwörungstheorien, Hetze und Diskriminierung gegen und von Menschen aufgrund ihrer Herkunft, Aussehen, Religion, Behinderung oder sonstigem. Wenn du solchen Mist posten möchtest, setz dir eine eigene Instanz auf.\n\nEinzig gegen selbstgewählte Dummheit und Ignoranz darf man sich schon auch einmal auslassen. \n\nEs ist geplant, meine Instanz von der Userzahl eher klein zu halten, was die Themen und Beiträge aber nicht betreffen soll. Meine Instanz dient vorwiegend mir selbst und eventuell Familie und ein paar Freunden und Vereinsmitgliedern als Tor in die föderierte Lemmy-Welt. \n\nSo ein Lemmy ist mit Docker überhaupt [sehr leicht installiert](https://join.lemmy.ml/docs/en/administration/install_docker.html).\n\nIch wünsche viel Vergnügen und spannenden Austausch", + published: "2021-02-18T11:54:33.537402", + updated: "2022-01-19T12:48:35.909816", enable_downvotes: true, - open_registration: true, + open_registration: false, enable_nsfw: true, - icon: "https://lemmy.cat/pictrs/image/4iwqIfDlgI.png", - banner: "https://lemmy.cat/pictrs/image/p63LCl9dD2.jpg", - description: "Cultura catalana", - community_creation_admin_only: false, + icon: null, + banner: null, + description: null, + community_creation_admin_only: true, require_email_verification: true, require_application: true, application_question: - "Aquesta instància Lemmy és per als catalans. Digues perquè vols registrar-te, gràcies!", + "Ein wenig Geschichte. Vor den Habsburgern gab es eine Zeit ohne Kaiser auf dem Gebiet des Herzogtums Österreich. Wie nannten man das Herrscherhaus, das vor dieser Zeit knapp 200 Jahre hier das Sagen hatte?", private_instance: false, - actor_id: "https://lemmy.cat/", - last_refreshed_at: "2022-05-14T06:02:12.595699", - inbox_url: "https://lemmy.cat/site_inbox", + actor_id: "https://lemmy.schuerz.at/", + last_refreshed_at: "2022-05-25T03:45:06.560561", + inbox_url: "https://lemmy.schuerz.at/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAs03L18yMWT6W3j2egHdO\nAYo2j1KENXrt+h5uOI5l7X7cPYzVlgMqGlR5D4S1WGumnWOJ9f+3kQWhAdDe/RfK\ngxsyOEcFqJ1o9dXAkdlILt7boQQzP6GK8nK8JeRViznK+HZK1RA/g1JHoKNQfDgr\nevQnxNy6NAwzr+GEtrzWoslE+UBW95XYfZHKKrMh8GBzvBYhKyNhO9GRBRorBRfb\nPzpfDHRi3+R+U1EUBe4894i4b0WX9biO043NxhiREB0Lkw+KnD3DKI7jddpZ3mQ5\ntWl3d+CNxOOlNQknzSVyHTwZDMAoaGKYeS9TdCuiGskyWpPSjheQF+i2930JjpSX\nOQIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxScNcucCGnO4IyAl4g6l\nAp3NyfJLqT9jVSznb+nWprMYHFU06HdqY59az+h3eLY4bUmp+4F23UTuBhyEKVPs\nPpcplE5eAQ6sQ764spbn/Dk7apr9kOcRUFiZKFKSlOrKOYL3xRVMSGdy2XHvC5j0\njqK1DYt4Ig3G9umcIvFLQ05vqNQgJB4NdfqbA1OID57vGbVWIvvOjY9d3FVjNqd5\nJgl9DwZDI3aJ6wr2vcrrSl+Cs+KGNysly4ejtHB6dPt8UiSJ2aDml5g2BfRzvmCW\n8+ghgqZH7MbYY9fjk3AhPtJrgBbPv3TM7tqESP5YG1FQrq0Yv00zYNfuYuqrEPzi\npwIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "browser", }, counts: { id: 1, site_id: 1, - users: 77, - posts: 161, - comments: 114, - communities: 20, + users: 40, + posts: 165, + comments: 167, + communities: 12, users_active_day: 0, - users_active_week: 1, - users_active_month: 2, - users_active_half_year: 8, + users_active_week: 0, + users_active_month: 1, + users_active_half_year: 2, }, }, admins: [ @@ -4220,15 +4966,15 @@ export const instance_stats = { display_name: null, avatar: null, banned: false, - published: "2020-12-10T08:59:13.420079", - updated: null, - actor_id: "https://lemmy.cat/u/admin", + published: "2021-02-18T11:54:33.445687", + updated: "2021-02-18T12:05:13.148290", + actor_id: "https://lemmy.schuerz.at/u/admin", bio: null, local: true, banner: null, deleted: false, - inbox_url: "https://lemmy.cat/u/admin/inbox", - shared_inbox_url: "https://lemmy.cat/inbox", + inbox_url: "https://lemmy.schuerz.at/u/admin/inbox", + shared_inbox_url: "https://lemmy.schuerz.at/inbox", matrix_user_id: null, admin: true, bot_account: false, @@ -4237,40 +4983,145 @@ export const instance_stats = { counts: { id: 1, person_id: 2, - post_count: 2, - post_score: 5, - comment_count: 1, - comment_score: 1, + post_count: 0, + post_score: 0, + comment_count: 0, + comment_score: 0, }, }, { person: { - id: 10, - name: "spla", - display_name: null, - avatar: "https://lemmy.cat/pictrs/image/xpmPaWDGuF.jpg", + id: 3, + name: "jakob", + display_name: "Jakob", + avatar: "https://lemmy.schuerz.at/pictrs/image/p88Fm5NNij.jpg", banned: false, - published: "2020-12-10T09:18:05.089209", - updated: "2022-01-18T13:07:50.140151", - actor_id: "https://lemmy.cat/u/spla", - bio: "Loving Lemmyverse!", + published: "2021-02-18T11:55:48.509627", + updated: "2021-04-23T07:22:18.674556", + actor_id: "https://lemmy.schuerz.at/u/jakob", + bio: null, local: true, - banner: "https://lemmy.cat/pictrs/image/ijNb6dUtZ0.jpg", + banner: null, deleted: false, - inbox_url: "https://lemmy.cat/u/spla/inbox", - shared_inbox_url: "https://lemmy.cat/inbox", + inbox_url: "https://lemmy.schuerz.at/u/jakob/inbox", + shared_inbox_url: "https://lemmy.schuerz.at/inbox", + matrix_user_id: " @jakob:schuerz.at", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 134, + post_score: 322, + comment_count: 157, + comment_score: 248, + }, + }, + ], + online: 1, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "community.xmpp.net", + "ds9.lemmy.ml", + "feddit.de", + "friendica.schuerz.at", + "kino.schuerz.at", + "lemmy.161.social", + "lemmy.glasgow.social", + "lemmy.ml", + "lemmy.perthchat.org", + "libranet.de", + "loma.ml", + "mander.xyz", + "rollenspiel.group", + "soc.schuerz.at", + "sopuli.xyz", + "stammtisch.hallertau.social", + ], + allowed: null, + blocked: ["wolfballs.com", "elgiebety.pl"], + }, + }, + }, + { + domain: "heapoverflow.ml", + site_info: { + site_view: { + site: { + id: 1, + name: "Heap Overflow", + sidebar: + "[General programming discussion](https://lemmy.ml/c/programming), \n[Additional resources](https://heapoverflow.ml/c/learn_programming@lemmy.ml), [challenges](https://projecteuler.net/archives)\n\nTo post or comment:\n1. Create an account on [another lemmy instance](https://join-lemmy.org/instances) \n2. Then search for the community url like [here](https://lemmy.ml/search/q/https%3A%2F%2Fheapoverflow.ml%2Fc%2Fpython/type/All/sort/TopAll/listing_type/All/community_id/0/creator_id/0/page/1)\n\n\n**RULES:**\n1. No politics\n2. No flaming / trolling\n3. No proprietary BS\n4. Stay on topic\n\nPlease keep questions & examples short! \n\nAll content is **[Public Domain](https://unlicense.org/)** unless otherwise specified. \nOnly [CC0](https://creativecommons.org/publicdomain/zero/1.0/legalcode), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/), or [CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/) alternate licenses are allowed.\n\nNo affiliation with StackOverflow.com", + published: "2022-01-21T18:50:07.074200", + updated: "2022-05-06T20:44:47.693536", + enable_downvotes: true, + open_registration: true, + enable_nsfw: false, + icon: "https://heapoverflow.ml/pictrs/image/f910bf1c-215b-47c0-a9ff-d65f483c02a3.png", + banner: null, + description: + "A place to ask programming questions and share free resources", + community_creation_admin_only: true, + require_email_verification: false, + require_application: true, + application_question: + "You don't need an account here to participate! \nI suggest joining [lemmy.ml](https://lemmy.ml) but if you want an account here, that's cool too. \nTo combat spam, just briefly tell me what your favorite languages are and maybe link your git repos =]", + private_instance: false, + actor_id: "https://heapoverflow.ml/", + last_refreshed_at: "2022-05-24T21:50:07.349432", + inbox_url: "https://heapoverflow.ml/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAstC1sdIqe92fF/bkX8DM\nN+EYA66rSJDnDCj2LDw7yluHbwSRASRcPRlaeBgsSYGr2oBUZo/70MRx7ScYgZFG\n+y2wLZdmRb8dtZPLOdagI7UVJwJeZudFltM/yNovzcuw9GOdz2Pyv8RHcOnZs/Vz\n5k71nbCbbwtxa75ygG4+7DxfyAxsoxUYdQJQ7eoMvMO8AigCu5duZz2YUZLtn0Xb\nwHs5GHff3YZZ5XF6h0SrShkmvkaG136gV7zP7LqPJrvzYEk5mPSUK6d5jZ3oIhYU\nIAZq6qv+cKGFwkfVAHsfa/0P997xaBoPVA/O5HdFl/RfcE18cC2kJdjDrXKP1P8O\nZQIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "darkly-mono", + }, + counts: { + id: 1, + site_id: 1, + users: 11, + posts: 0, + comments: 26, + communities: 16, + users_active_day: 0, + users_active_week: 0, + users_active_month: 1, + users_active_half_year: 1, + }, + }, + admins: [ + { + person: { + id: 2, + name: "thann", + display_name: null, + avatar: + "https://heapoverflow.ml/pictrs/image/ba342abb-4ed8-403c-9139-387d1b91fa83.jpeg", + banned: false, + published: "2022-01-21T18:50:06.448286", + updated: "2022-05-24T21:56:49.132004", + actor_id: "https://heapoverflow.ml/u/thann", + bio: "https://lemmy.ml/u/Thann \nhttps://gitlab.com/thann \nhttps://github.com/thann ", + local: true, + banner: null, + deleted: false, + inbox_url: "https://heapoverflow.ml/u/thann/inbox", + shared_inbox_url: "https://heapoverflow.ml/inbox", matrix_user_id: null, admin: true, bot_account: false, ban_expires: null, }, counts: { - id: 26, - person_id: 10, - post_count: 89, - post_score: 179, - comment_count: 84, - comment_score: 187, + id: 1, + person_id: 2, + post_count: 0, + post_score: 0, + comment_count: 26, + comment_score: 50, }, }, ], @@ -4278,20 +5129,9 @@ export const instance_stats = { version: "0.16.3", my_user: null, federated_instances: { - linked: [ - "collapse.cat", - "community.xmpp.net", - "f.freinetz.ch", - "friendica.utzer.de", - "lemmy.ml", - "lemmy.perthchat.org", - "libranet.de", - "loma.ml", - "rollenspiel.group", - "sopuli.xyz", - ], + linked: ["feddit.de", "heapoverflow.ml", "lemmy.ml"], allowed: null, - blocked: ["legbeard.xyz"], + blocked: null, }, }, }, @@ -4330,13 +5170,13 @@ export const instance_stats = { counts: { id: 1, site_id: 1, - users: 15, + users: 18, posts: 47, comments: 16, - communities: 6, + communities: 7, users_active_day: 0, users_active_week: 0, - users_active_month: 2, + users_active_month: 1, users_active_half_year: 4, }, }, @@ -4420,496 +5260,47 @@ export const instance_stats = { }, }, { - domain: "stammtisch.hallertau.social", + domain: "lemmy.cat", site_info: { site_view: { site: { id: 1, - name: "Stammtisch", + name: "Lemmy CAT", sidebar: - "Der dezentrale Stammtisch für die Hallertau auf Basis von lemmy.ml.\n\nRegeln\n\nSeids nett zueinander, gell?! Wer se ned zu benehmen weiß, fliegt. Ganz einfach. Aufbassn, wos du do schreibst.\n\nMia wuin koan Rassismus, koa Gewalt, koan Hass, koan Porn, Werbung höchstens für hayfidelity, Herbstschild, hayretic oder Hallertau.Social und reissts eich bitte zam, wenns Richtung Verschwörungstheorien gäd. Mia kennan gern drüber redn, oba ned überdreibn bidsche. Immer schee locker bleibn.", - published: "2021-01-18T11:00:26.709474", - updated: "2022-03-19T17:38:44.436486", + " [lemmy.cat](https://lemmy.cat) és una instància [Lemmy](https://join.lemmy.ml) per a les persones de cultura catalana. \n\nNormes:\n- No es permet cap mostra de racisme, xenofòbia o homofòbia.\n- Cal ser respectuós amb tothom. Tothom és benvingut.\n- Prohibida la pornografia.\n- Prohibida la publicitat. ", + published: "2020-12-10T08:59:13.928471", + updated: "2022-03-14T20:34:53.047724", enable_downvotes: true, open_registration: true, enable_nsfw: true, - icon: null, - banner: - "https://stammtisch.hallertau.social/pictrs/image/TbUbi4vFwZ.jpg", - description: null, + icon: "https://lemmy.cat/pictrs/image/4iwqIfDlgI.png", + banner: "https://lemmy.cat/pictrs/image/p63LCl9dD2.jpg", + description: "Cultura catalana", community_creation_admin_only: false, require_email_verification: true, require_application: true, - application_question: null, - private_instance: false, - actor_id: "https://stammtisch.hallertau.social/", - last_refreshed_at: "2022-05-16T06:40:44.562976", - inbox_url: "https://stammtisch.hallertau.social/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp21pF9zke+JVsgkvDtsV\nn9KvURHKhMEur5m5B1T6qxsyZ3acpYAQmhTT0cMztJSHnEL28rJF3jPd6JJJhbpp\ndM3qF+aJ+BOjO55x0el0n7/NtKDXJC+UtBSWwNQ175n7tuft9PiGjLA7EseUgj/N\nhUj0bkA9QeW1ipPV/8KssihBFft5y8A+LdDChVCaQagpGu1tUX6uqQXtqMDLWlue\n5etQG75BC85gXAvQg7cFYgO9FaNzRFEvCVnGNw1HEomZy8jrjeAwE/cadIk9cfPD\nBc6xkXHak9qzj2RKmPKmgdAyB8aUmLWKMT6CCKXGUQFXeyOU6IlzzwTd7qLv0MzJ\n5QIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "browser", - }, - counts: { - id: 1, - site_id: 1, - users: 55, - posts: 160, - comments: 46, - communities: 11, - users_active_day: 0, - users_active_week: 1, - users_active_month: 2, - users_active_half_year: 19, - }, - }, - admins: [ - { - person: { - id: 2, - name: "hayfilem", - display_name: "Stammtischef", - avatar: null, - banned: false, - published: "2021-01-18T11:00:26.613126", - updated: "2021-08-29T16:15:39.324626", - actor_id: "https://stammtisch.hallertau.social/u/hayfilem", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: - "https://stammtisch.hallertau.social/u/hayfilem/inbox", - shared_inbox_url: "https://stammtisch.hallertau.social/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 0, - post_score: 0, - comment_count: 1, - comment_score: 1, - }, - }, - ], - online: 0, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: [ - "feddit.de", - "freindal.hallertau.social", - "hub.13ad.de", - "hub.hayfidelity.de", - "lemmy.ml", - "mainburg.hallertau.social", - "pirati.ca", - "stammtisch.hallertau.social", - "stubn.hallertau.social", - ], - allowed: [ - "lemmy.ml", - "feddit.de", - "stubn.hallertau.social", - "mainburg.hallertau.social", - "hub.13ad.de", - "hub.hayfidelity.de", - "freindal.hallertau.social", - "pirati.ca", - ], - blocked: null, - }, - }, - }, - { - domain: "tabinezumi.net", - site_info: { - site_view: { - site: { - id: 1, - name: "たびねずみのみみ", - sidebar: - "ここはゆっくりとした流れのインターネッツです。\\\n初めましての方はこちらへ↓\n- [総合案内](https://tabinezumi.net/post/94)\n- [Lemmyについての説明](https://tabinezumi.net/post/43)\n\nメンテナンスのお知らせ/履歴は[こちら](https://tabinezumi.net/post/93)または@nirari@nightly.fedibird.comを参考にしてください", - published: "2020-11-29T17:27:23.952938", - updated: "2022-04-10T20:58:13.850883", - enable_downvotes: true, - open_registration: true, - enable_nsfw: true, - icon: null, - banner: null, - description: "日本語圏Lemmyインスタンスのひとつ", - community_creation_admin_only: false, - require_email_verification: false, - require_application: true, application_question: - "管理者の判断により、予告なしに投稿の削除やアクセス禁止措置等を行うことがあります。\n例として以下の場合が該当します。\n- 法に違反する行為と判断したとき\n- 公序良俗に反する内容と判断したとき\n- 複数コミュニティ(他のLemmyインスタンスを含む)にわたって主に宣伝目的と思われる投稿をしたとき\n\nまた、当インスタンスは何らかの不具合等により事前予告なくサービスを終了する可能性があります。\nその場合のデータの喪失につき責任は負いかねます。\n\n以上につき了承の上で登録を希望する場合は下のフォームに「同意済み」と入力してください。", + "Aquesta instància Lemmy és per als catalans. Digues perquè vols registrar-te, gràcies!", private_instance: false, - actor_id: "https://tabinezumi.net/", - last_refreshed_at: "2022-04-10T20:22:58.293613", - inbox_url: "https://tabinezumi.net/site_inbox", + actor_id: "https://lemmy.cat/", + last_refreshed_at: "2022-05-14T06:02:12.595699", + inbox_url: "https://lemmy.cat/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4LECOATuQe59sneG7Evc\nZgfT+qrZMdEvfb9KyJmW9crkPaW5byaMA0W/HMquqeajYBveWzA93kKK4WGQBBad\nJfR0PkdqkY/effKnsnLUnw3C5+uCAGVeLfkFaYQb0aG8R3dYBqag5xp04B57Fail\nEkqWwoH8ey6Twx8cBo3z6UwcxkwMsntpoKeyHryBqBg01qYkKCw6tshbb8scbDGd\ndtmme3mozF67t4shgflYEqtuF1U9LHdwUx48emovcMiND4TZMCIME8NYNqa0CZ1q\nyRFi6zT5W7cthbZ2llEybs4kinQKjNPwRu236mx+ZtGH87FC6NF88NijZoYpBmZN\nSQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "minty", - }, - counts: { - id: 1, - site_id: 1, - users: 35, - posts: 320, - comments: 107, - communities: 26, - users_active_day: 1, - users_active_week: 1, - users_active_month: 2, - users_active_half_year: 6, - }, - }, - admins: [ - { - person: { - id: 2, - name: "nirari", - display_name: "二ノ倉ちどり(Lemmy)", - avatar: "https://tabinezumi.net/pictrs/image/UKKvqojRKc.jpg", - banned: false, - published: "2020-11-29T17:17:12.928863", - updated: "2021-11-30T07:53:05.866816", - actor_id: "https://tabinezumi.net/u/nirari", - bio: "にのくらちどり/Chidori Ninokura\n \nLemmyサーバー“たびねずみのみみ”(tabinezumi.net)の管理人です。\n\nこのユーザーをフォローすることはできません。tabinezumi.netに関するお知らせを見たいときは\n[@nirari@nightly.fedibird.com](https://nightly.fedibird.com/@nirari)か[たびねずみインフォメーション](https://tabinezumi.net/c/main)(コミュニティ/グループ)のフォローを推奨します。", - local: true, - banner: "https://tabinezumi.net/pictrs/image/swaR4yHSFA.png", - deleted: false, - inbox_url: "https://tabinezumi.net/u/nirari/inbox", - shared_inbox_url: "https://tabinezumi.net/inbox", - matrix_user_id: "@nirari:matrix.org", - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 8, - person_id: 2, - post_count: 196, - post_score: 435, - comment_count: 53, - comment_score: 79, - }, - }, - ], - online: 0, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: [ - "group.pullopen.xyz", - "groups.qoto.org", - "lem.ph3j.com", - "lemmy.0px.io", - "lemmy.cardina1.red", - "lemmy.fediverse.jp", - "lemmy.juggler.jp", - "lemmy.ml", - "lm.korako.me", - "tabinezumi.net", - ], - allowed: null, - blocked: null, - }, - }, - }, - { - domain: "lemmy.rollenspiel.monster", - site_info: { - site_view: { - site: { - id: 1, - name: "RollenspielMonster", - sidebar: - "# Regeln\n\n- Keine Fanatismus - einschließlich Rassismus, Sexismus, Behindertenfeindlichkeit, Homophobie oder Fremdenfeindlichkeit.\n- Sei respektvoll. Jeder sollte sich hier willkommen fühlen.\n- Keine Pornos.\n- Keine Werbung / Spamming.\n\n## Weiterführende Links\n\n- [Charta](https://rollenspiel.monster/charta)\n- [Nutzungsbedingugnen](https://rollenspiel.monster/terms)\n- [Impressum](https://rollenspiel.monster/imprint)\n- [Datenschutzerklärung](https://rollenspiel.monster/privacy)\n- [Spenden](https://rollenspiel.monster/donate)", - published: "2022-04-14T18:13:59.830117", - updated: "2022-04-15T10:27:33.795221", - enable_downvotes: true, - open_registration: true, - enable_nsfw: true, - icon: "https://lemmy.rollenspiel.monster/pictrs/image/040c05a3-ba7c-4e66-a225-5209dd4893f9.png", - banner: - "https://lemmy.rollenspiel.monster/pictrs/image/bb5c9566-a03c-4100-9c5d-77440256ab42.png", - description: - "Eine deutschsprachige Instanz für Rollenspieler. Wir bieten einen platz für Rollenspiel, Pen & Paper, Tabletop, TCG und vieles mehr.", - community_creation_admin_only: false, - require_email_verification: true, - require_application: false, - application_question: null, - private_instance: false, - actor_id: "https://lemmy.rollenspiel.monster/", - last_refreshed_at: "2022-05-16T02:47:43.751316", - inbox_url: "https://lemmy.rollenspiel.monster/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzF0EQRk8TThadI3zToMi\nIPgyQ6qbiJYbFnq5KfcWu5Boz7BiyN/U68BRnIS6o0nk1T/vjN0glBnc2Fd1FFP8\nAeg/cUuRMAEinwEkYsJUgTpPd6aGdpR9IgAXHDukfgGWHlL2xS2SPDpKeJw3J5fz\nk75jbIwZRMIV1mt1r6ohilE0LsKypXHKKydYHWi0T2CW0N4qr4H8CYdxbFJVh6zL\nN2knHrnahx8NSRP8WDHhArMk737Wh1CAMi6eueJMhDpRMI6A5kpq+0pFWiyekVbU\npPxfu9TLuBC0lCr+WkZPQN42WnZlaJ4Eq3mdWc+lWP6JBEqTNujk0R5VDxMtdZvl\nXwIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAs03L18yMWT6W3j2egHdO\nAYo2j1KENXrt+h5uOI5l7X7cPYzVlgMqGlR5D4S1WGumnWOJ9f+3kQWhAdDe/RfK\ngxsyOEcFqJ1o9dXAkdlILt7boQQzP6GK8nK8JeRViznK+HZK1RA/g1JHoKNQfDgr\nevQnxNy6NAwzr+GEtrzWoslE+UBW95XYfZHKKrMh8GBzvBYhKyNhO9GRBRorBRfb\nPzpfDHRi3+R+U1EUBe4894i4b0WX9biO043NxhiREB0Lkw+KnD3DKI7jddpZ3mQ5\ntWl3d+CNxOOlNQknzSVyHTwZDMAoaGKYeS9TdCuiGskyWpPSjheQF+i2930JjpSX\nOQIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "browser", }, counts: { id: 1, site_id: 1, - users: 3, - posts: 16, - comments: 18, - communities: 7, - users_active_day: 0, - users_active_week: 1, - users_active_month: 2, - users_active_half_year: 2, - }, - }, - admins: [ - { - person: { - id: 2, - name: "Tealk", - display_name: "Tealk", - avatar: - "https://lemmy.rollenspiel.monster/pictrs/image/f32e7df9-60d1-4da1-9a88-05c1fda304a7.png", - banned: false, - published: "2022-04-14T18:13:41.657050", - updated: "2022-04-19T06:17:02.534078", - actor_id: "https://lemmy.rollenspiel.monster/u/Tealk", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://lemmy.rollenspiel.monster/u/Tealk/inbox", - shared_inbox_url: "https://lemmy.rollenspiel.monster/inbox", - matrix_user_id: "@tealk:tchncs.de", - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 16, - post_score: 25, - comment_count: 17, - comment_score: 22, - }, - }, - ], - online: 0, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: ["feddit.de", "lemmy.ml"], - allowed: null, - blocked: [ - "caw.ai", - "collapse.cat", - "cyber-news.fr", - "elgiebety.pl", - "exploding-heads.com", - "forum.nobigtech.es", - "goldandblack.us.to", - "info.prou.be", - "group.lt", - "gtio.io", - "legbeard.xyz", - "lem.ph3j.com", - "lemmy.cat", - "lemmy.coupou.fr", - "lemmy.eus", - "lemmy.fediverse.jp", - "lemmy.juggler.jp", - "lemmy.kaouenn-noz.fr", - "lemmy.mesh.party", - "lemmy.otakufarms.com", - "lemmy.pt", - "lemmy.services.coupou.fr", - "lemmy.shrieker.net", - "lemmy.tedomum.net", - "lemmy.vip", - "lemmy.wiredentrypoint.xyz", - "lemmygrad.ml", - "lm.korako.me", - "mandacaru.caatinga.digital", - "szmer.info", - "tabinezumi.net", - "www.cyber-news.fr", - "wolfballs.com", - "a.tide.tk", - "b.tide.tk", - "c.tide.tk", - "dev.narwhal.city", - "lotide.fbxl.net", - "narwhal.city", - "lotide.exopla.net.eu.org", - ], - }, - }, - }, - { - domain: "buckeyestate.social", - site_info: { - site_view: { - site: { - id: 1, - name: "buckeyestate.social", - sidebar: - "1. No porn\n2. No hate speech/bigotry\n3. No QAnon, antivax, or conspiracy theories", - published: "2022-03-25T14:55:35.670127", - updated: "2022-03-26T12:41:06.835185", - enable_downvotes: true, - open_registration: true, - enable_nsfw: true, - icon: "https://buckeyestate.social/pictrs/image/a9b79b22-7346-40fc-b10c-87d486215cde.png", - banner: null, - description: - "A lemmy server for, but not limited to, leftists of the state of Ohio", - community_creation_admin_only: false, - require_email_verification: false, - require_application: true, - application_question: - "Why do you want to join this instance?\n\nWhat did you choose your username?\n", - private_instance: false, - actor_id: "https://buckeyestate.social/", - last_refreshed_at: "2022-05-12T01:13:54.006226", - inbox_url: "https://buckeyestate.social/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxHFepeiN/4yEptiRt7Va\nNBQhe3h++On8TWXORQk7hldJdgVC1ohqE2uMJyOQmD7oDwQSRPxFrEQDsIB/T3dw\nFhpd4CFBJhb2JWm/eaQmKGlERU7ZppMWjzlp+ItmuMCgvvwSCa8gVmrh0hi+PfjM\n/UZOOHvTDMOsiOXC1seFqBxMbORZg1tmE8C4YbwayDeEj/Nn7ZNfiWp8EHmyviap\nB7f3oz1MlpO5U3MGnjSBw3MmTb7J7E3aL20JnN3i0Expvxdhn8oo5+0ZR2eyworh\nhYNsFSVdTJGnRZtyDQWBR2B3FFp0GXZKG0si0BYJwMYQtbvyHRhHeBZx/8q9u5a/\ntQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "browser", - }, - counts: { - id: 1, - site_id: 1, - users: 4, - posts: 17, - comments: 6, - communities: 1, + users: 81, + posts: 161, + comments: 114, + communities: 20, users_active_day: 0, users_active_week: 0, - users_active_month: 2, - users_active_half_year: 2, - }, - }, - admins: [ - { - person: { - id: 2, - name: "seahorseohio", - display_name: null, - avatar: null, - banned: false, - published: "2022-03-25T14:55:35.241069", - updated: "2022-05-05T16:40:24.081180", - actor_id: "https://buckeyestate.social/u/seahorseohio", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://buckeyestate.social/u/seahorseohio/inbox", - shared_inbox_url: "https://buckeyestate.social/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 14, - post_score: 98, - comment_count: 4, - comment_score: 12, - }, - }, - { - person: { - id: 8, - name: "Redpandalovely", - display_name: null, - avatar: null, - banned: false, - published: "2022-03-25T16:20:32.947167", - updated: "2022-04-21T22:43:13.039893", - actor_id: "https://buckeyestate.social/u/Redpandalovely", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://buckeyestate.social/u/Redpandalovely/inbox", - shared_inbox_url: "https://buckeyestate.social/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 7, - person_id: 8, - post_count: 3, - post_score: 9, - comment_count: 2, - comment_score: 4, - }, - }, - ], - online: 1, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: ["beehaw.org", "lemmy.ml", "midwest.social"], - allowed: null, - blocked: ["wolfballs.com", "exploding-heads.com", "collapse.cat"], - }, - }, - }, - { - domain: "lemmy.schuerz.at", - site_info: { - site_view: { - site: { - id: 1, - name: "lemmy.schuerz.at", - sidebar: - "Leider haben sich viele Spammer angemeldet, und Lemmy bietet noch keine Möglichkeit, die Registrierung zu regulieren... Daher habe ich jetzt die Registrierung wieder geschlossen. \n\nFür Registrierung bitte um eine Nachricht an mailto:registrierung-lemmy@schuerz.at \n\n![](https://lemmy.schuerz.at/pictrs/image/8Dinj9DGBd.png)\n\nDas ist ein deutsprachiger Lemmy, welcher sich vorerst hauptsächlich mit den Themen Eisenbahn und Modellbahn beschäftigt. \n\nDieses Lemmy ist privat und in meiner Freizeit betrieben. \nWenn du einen Account hier haben möchtest, bitte ich um ein [Email an den Admin](mailto:admin@schuerz.at?subject=Bitte%20um%20Lemmy-Account)\n\n\nEs gibt keine Garantie für den Betrieb oder die Integrität der Daten. \nInhalte die nicht den Regeln entsprechen, werden gelöscht, was auch ohne Vorwarnung geschehen kann. Gleiches kann mit dem Verfasser solcher Inhalte auch geschehen. \n\nErwünschte und unerwünschte Inhalte:\n\nWas bei mir nicht toleriert wird, sind Rassismus, Extremismus, Homophobie, Verschwörungstheorien, Hetze und Diskriminierung gegen und von Menschen aufgrund ihrer Herkunft, Aussehen, Religion, Behinderung oder sonstigem. Wenn du solchen Mist posten möchtest, setz dir eine eigene Instanz auf.\n\nEinzig gegen selbstgewählte Dummheit und Ignoranz darf man sich schon auch einmal auslassen. \n\nEs ist geplant, meine Instanz von der Userzahl eher klein zu halten, was die Themen und Beiträge aber nicht betreffen soll. Meine Instanz dient vorwiegend mir selbst und eventuell Familie und ein paar Freunden und Vereinsmitgliedern als Tor in die föderierte Lemmy-Welt. \n\nSo ein Lemmy ist mit Docker überhaupt [sehr leicht installiert](https://join.lemmy.ml/docs/en/administration/install_docker.html).\n\nIch wünsche viel Vergnügen und spannenden Austausch", - published: "2021-02-18T11:54:33.537402", - updated: "2022-01-19T12:48:35.909816", - enable_downvotes: true, - open_registration: false, - enable_nsfw: true, - icon: null, - banner: null, - description: null, - community_creation_admin_only: true, - require_email_verification: true, - require_application: true, - application_question: - "Ein wenig Geschichte. Vor den Habsburgern gab es eine Zeit ohne Kaiser auf dem Gebiet des Herzogtums Österreich. Wie nannten man das Herrscherhaus, das vor dieser Zeit knapp 200 Jahre hier das Sagen hatte?", - private_instance: false, - actor_id: "https://lemmy.schuerz.at/", - last_refreshed_at: "2022-05-16T03:56:53.648062", - inbox_url: "https://lemmy.schuerz.at/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1Zk35HRDnkfVazWpC1kh\nHU6UUwIp/WqQt4DScEvoBpRylrbFV7+/nMMonBudiuuDDW/2ve/T7glNxfYSJ7Ev\nUS/ZtH2DiFfQXoBz924bIT9Ky4EQ3Oz2hpiMZjqkIUPb4n/meabT0NIaf3+IcdoG\naIn1Utnyj8/mOCj24XLi/93ZuswRw5gU4nUXs4lXxWbUHjLO0nwKJ4YVhky13BzB\nP0XJCGjeKhBowenafjiH/4FMwg3w5upZexqwthR682PbE4THrrt8TGCCRs71i2B2\nvMYomoUUpFT7deLDJmYuGNixaLdu7RFX/FJ7lGqb57Na0p4XUuvUq9RG6sOlw6km\nZQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "browser", - }, - counts: { - id: 1, - site_id: 1, - users: 40, - posts: 165, - comments: 167, - communities: 12, - users_active_day: 1, - users_active_week: 1, users_active_month: 1, - users_active_half_year: 2, + users_active_half_year: 7, }, }, admins: [ @@ -4920,243 +5311,15 @@ export const instance_stats = { display_name: null, avatar: null, banned: false, - published: "2021-02-18T11:54:33.445687", - updated: "2021-02-18T12:05:13.148290", - actor_id: "https://lemmy.schuerz.at/u/admin", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://lemmy.schuerz.at/u/admin/inbox", - shared_inbox_url: "https://lemmy.schuerz.at/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 0, - post_score: 0, - comment_count: 0, - comment_score: 0, - }, - }, - { - person: { - id: 3, - name: "jakob", - display_name: "Jakob", - avatar: "https://lemmy.schuerz.at/pictrs/image/p88Fm5NNij.jpg", - banned: false, - published: "2021-02-18T11:55:48.509627", - updated: "2021-04-23T07:22:18.674556", - actor_id: "https://lemmy.schuerz.at/u/jakob", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://lemmy.schuerz.at/u/jakob/inbox", - shared_inbox_url: "https://lemmy.schuerz.at/inbox", - matrix_user_id: " @jakob:schuerz.at", - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 2, - person_id: 3, - post_count: 134, - post_score: 320, - comment_count: 157, - comment_score: 248, - }, - }, - ], - online: 0, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: [ - "community.xmpp.net", - "ds9.lemmy.ml", - "feddit.de", - "friendica.schuerz.at", - "kino.schuerz.at", - "lemmy.161.social", - "lemmy.glasgow.social", - "lemmy.ml", - "lemmy.perthchat.org", - "libranet.de", - "loma.ml", - "mander.xyz", - "rollenspiel.group", - "soc.schuerz.at", - "sopuli.xyz", - "stammtisch.hallertau.social", - ], - allowed: null, - blocked: ["wolfballs.com", "elgiebety.pl"], - }, - }, - }, - { - domain: "lemmy.otakufarms.com", - site_info: { - site_view: { - site: { - id: 1, - name: "Otaku Farms", - sidebar: - "The current Fediverse instances that makeup the entirety of Otaku Farms.\n\n- Pleroma instance can be found [here](https://otakufarms.com).\n- Peertube instance can be found [here](https://peertube.otakufarms.com).\n- Plume instance can be found [here](https://plume.otakufarms.com).", - published: "2021-11-28T03:07:28.577878", - updated: "2022-05-02T07:57:34.417167", - enable_downvotes: true, - open_registration: true, - enable_nsfw: true, - icon: "https://lemmy.otakufarms.com/pictrs/image/ekmeJ0BD8S.png", - banner: - "https://lemmy.otakufarms.com/pictrs/image/PNzQohs55g.jpg", - description: - "Otaku Farms is a network of Fediverse instances created for the sole purpose of letting individuals express themselves.", - community_creation_admin_only: false, - require_email_verification: true, - require_application: false, - application_question: null, - private_instance: false, - actor_id: "https://lemmy.otakufarms.com/", - last_refreshed_at: "2022-05-02T07:52:34.300300", - inbox_url: "https://lemmy.otakufarms.com/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA7bXiMp2/d+xgwekYjbgX\n+H+4k6ZaMlJ0lJnASSEvvGlnVXeipFyYmw30fVThFwRF53wGhnr+qO2htL0QsslE\n8oyytdl2De20JjJdGEw65uvX14QZ7EjsIzbDAcCNOj3l0hTpm2BST655Lsn5syFK\nu6qfjz1SM+3jIxEaLUtb6rvkhnkdbrRWu4zztFNW0OianjtKVbBYqcKRRmoUlz1+\nTt4UZnAYe3KDmbpnqp3jee2UyVz62xiBm5Gy/TtrWy0bdxKEj49+IP9Dhid4gGVu\nd8k/hCinjOIgUFwKT48ZVTF9nJVjiWDiQ6k7HUwiWWDYoOIU1cw+ElW38Uzqs42d\nVQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "darkly", - }, - counts: { - id: 1, - site_id: 1, - users: 4, - posts: 18, - comments: 1, - communities: 8, - users_active_day: 1, - users_active_week: 1, - users_active_month: 1, - users_active_half_year: 4, - }, - }, - admins: [ - { - person: { - id: 2, - name: "auraman", - display_name: "Elijah the Auraman", - avatar: - "https://lemmy.otakufarms.com/pictrs/image/LHd9FQEEZH.jpg", - banned: false, - published: "2021-11-28T03:07:27.876781", - updated: "2022-02-24T07:14:28.579101", - actor_id: "https://lemmy.otakufarms.com/u/auraman", - bio: "CEO and Founder of Otaku Farms.\nJust your average manga and comic book reviewer.", - local: true, - banner: - "https://lemmy.otakufarms.com/pictrs/image/IWBM0aAA3f.jpg", - deleted: false, - inbox_url: "https://lemmy.otakufarms.com/u/auraman/inbox", - shared_inbox_url: "https://lemmy.otakufarms.com/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 1, - post_score: 1, - comment_count: 1, - comment_score: 1, - }, - }, - ], - online: 0, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: [ - "gtio.io", - "lemmy.ml", - "lemmy.otakufarms.com", - "lm.korako.me", - "wolfballs.com", - ], - allowed: null, - blocked: null, - }, - }, - }, - { - domain: "foro.markoop.org", - site_info: { - site_view: { - site: { - id: 1, - name: "Foro de Markoop", - sidebar: - "Markoop es un proyecto estratégico de **cultura libre** para una digitalización cualitativa en entornos cooperativos. \n\nA través de Markoop, exploramos, creamos e implementamos herramientas y contenidos basados en software y licencias libres para poner en valor la cultura libre y prácticas para tejer redes sociales en una economía más humana, sostenible y cooperativa alentando la reflexión, soberanía y madurez digital.\n\nSi quieres unirte seguro que tienes algo que aportar, échale un vistazo al manifiesto y netiqueta.\n\n\n", - published: "2022-05-08T18:49:54.346218", - updated: "2022-05-09T12:42:16.621895", - enable_downvotes: false, - open_registration: true, - enable_nsfw: false, - icon: "https://foro.markoop.org/pictrs/image/528d7d7d-43ef-4ccc-b256-8a49b7d436a5.png", - banner: - "https://foro.markoop.org/pictrs/image/6b99e57d-d130-4fa2-907e-6f5104c486cd.png", - description: "Un océano de redes en cooperación", - community_creation_admin_only: true, - require_email_verification: true, - require_application: false, - application_question: null, - private_instance: false, - actor_id: "https://foro.markoop.org/", - last_refreshed_at: "2022-05-09T14:00:26.223866", - inbox_url: "https://foro.markoop.org/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApKlh+5xEYsCIb2x1hPzW\nU7Gd0+FMxZW/Lr2dQ9dSPSCMd25rsc7APylXtkB+l7/jfPRXp6Nub4gJ6ye1AfN6\n/E2HqsT3ou3HF/O6jX1oOSGIWQazubXxA0e6jV79TJs+hnyTqMvx9XJWz0pigCN1\nflKQIPsf+relseIpPmCJYiU+G8tPpgamlRN8yNthYiEHrVtP7M6hpfOH2idPFHq5\nncdTKTD3cvELSIIPiU+dIdT7MgJd5IPIfHoRUZXz+VsdyqhB4riqYa913z0X/Q51\nuYUE/X/WXCmXVTi37KwZjHnDOTscrALAYcAM5KKyH29QgO8qg+SmQAwwhF8gjUTF\n2wIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "minty", - }, - counts: { - id: 1, - site_id: 1, - users: 1, - posts: 2, - comments: 0, - communities: 5, - users_active_day: 1, - users_active_week: 1, - users_active_month: 1, - users_active_half_year: 1, - }, - }, - admins: [ - { - person: { - id: 2, - name: "admin", - display_name: null, - avatar: null, - banned: false, - published: "2022-05-08T18:49:53.483122", + published: "2020-12-10T08:59:13.420079", updated: null, - actor_id: "https://mydomain.ml/u/admin", + actor_id: "https://lemmy.cat/u/admin", bio: null, local: true, banner: null, deleted: false, - inbox_url: "https://mydomain.ml/u/admin/inbox", - shared_inbox_url: "https://mydomain.ml/inbox", + inbox_url: "https://lemmy.cat/u/admin/inbox", + shared_inbox_url: "https://lemmy.cat/inbox", matrix_user_id: null, admin: true, bot_account: false, @@ -5166,122 +5329,65 @@ export const instance_stats = { id: 1, person_id: 2, post_count: 2, - post_score: 2, - comment_count: 0, - comment_score: 0, + post_score: 5, + comment_count: 1, + comment_score: 1, }, }, - ], - online: 0, - version: "0.16.3", - my_user: null, - federated_instances: null, - }, - }, - { - domain: "fuckreddit.tryp.digital", - site_info: { - site_view: { - site: { - id: 1, - name: "TRYP", - sidebar: null, - published: "2022-04-01T17:14:11.255355", - updated: "2022-04-24T11:15:41.419446", - enable_downvotes: true, - open_registration: true, - enable_nsfw: true, - icon: "https://fuckreddit.tryp.digital/pictrs/image/52dc0c6c-71a4-40f9-a326-b51d54c95173.png", - banner: - "https://fuckreddit.tryp.digital/pictrs/image/1c8a890a-b39a-4d8b-b7a8-b66299e93a69.jpeg", - description: "Now 50% Prod!", - community_creation_admin_only: false, - require_email_verification: false, - require_application: true, - application_question: "# Why here?", - private_instance: false, - actor_id: "https://fuckreddit.tryp.digital/", - last_refreshed_at: "2022-05-14T01:01:03.316123", - inbox_url: "https://fuckreddit.tryp.digital/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0V7eVj3VfjcdBPpeH183\ngZ+E7OD/rnUiJlJZfRrIltuuJmP3hVKiOy67f1xpR6Qggu7/9fzwqMOVEIEK7RRM\nB4SAvImm0oIP3bK4R7cn20XFT0ASPyBH9CwvBIYSREFWcSjFkWrQ539AvBUivsWo\n0dEdba2BBT+qECarf5l5dSJ6YaaUOlj4DguLDLw6cA76fl5tgMlWmB8+vLOz3h4u\n1VVuRZI7kvr+brkV2LH5dpYX7Wk63a+Xf1UPL2+DhVCtGKyoD+cYq0KA/L2HQFV9\nR1mpZziK9gE+DtcIBtmKh0FurrvJN6QlrCUhAp+sHg2mF6VF52T4R2ShAjE+oJjC\niwIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "darkly", - }, - counts: { - id: 1, - site_id: 1, - users: 6, - posts: 12, - comments: 70, - communities: 3, - users_active_day: 0, - users_active_week: 1, - users_active_month: 1, - users_active_half_year: 2, - }, - }, - admins: [ { person: { - id: 2, - name: "Tryp", - display_name: "Tryp", - avatar: - "https://fuckreddit.tryp.digital/pictrs/image/8191774c-0521-4be5-a04e-70a1d958ddcc.png", + id: 10, + name: "spla", + display_name: null, + avatar: "https://lemmy.cat/pictrs/image/xpmPaWDGuF.jpg", banned: false, - published: "2022-04-01T17:10:16.494997", - updated: "2022-04-24T11:17:26.761802", - actor_id: "https://fuckreddit.tryp.digital/u/Tryp", - bio: "DMTryptaminesX from Reddit. \n\n[Join The Garden ](https://discord.gg/srrH8BBMWK) for reviews on popular botanical vendors. ", + published: "2020-12-10T09:18:05.089209", + updated: "2022-01-18T13:07:50.140151", + actor_id: "https://lemmy.cat/u/spla", + bio: "Loving Lemmyverse!", local: true, - banner: - "https://fuckreddit.tryp.digital/pictrs/image/fe595752-6d17-43d7-ae26-85b0950a7d0c.jpeg", + banner: "https://lemmy.cat/pictrs/image/ijNb6dUtZ0.jpg", deleted: false, - inbox_url: "https://fuckreddit.tryp.digital/u/Tryp/inbox", - shared_inbox_url: "https://fuckreddit.tryp.digital/inbox", - matrix_user_id: "@dmtryptamines:matrix.org", + inbox_url: "https://lemmy.cat/u/spla/inbox", + shared_inbox_url: "https://lemmy.cat/inbox", + matrix_user_id: null, admin: true, bot_account: false, ban_expires: null, }, counts: { - id: 1, - person_id: 2, - post_count: 11, - post_score: 43, - comment_count: 67, - comment_score: 178, + id: 26, + person_id: 10, + post_count: 89, + post_score: 179, + comment_count: 84, + comment_score: 187, }, }, ], - online: 4, + online: 2, version: "0.16.3", my_user: null, federated_instances: { linked: [ - "beehaw.org", - "buckeyestate.social", - "feddit.de", - "gtio.io", - "heapoverflow.ml", - "lemmy.ca", - "lemmy.mesh.party", + "collapse.cat", + "community.xmpp.net", + "f.freinetz.ch", + "friendica.utzer.de", "lemmy.ml", "lemmy.perthchat.org", - "mander.xyz", - "midwest.social", - "slrpnk.net", + "libranet.de", + "loma.ml", + "rollenspiel.group", "sopuli.xyz", - "verity.fail", ], allowed: null, - blocked: [], + blocked: ["legbeard.xyz"], }, }, }, { - domain: "heapoverflow.ml", + domain: "Heapoverflow.ml", site_info: { site_view: { site: { @@ -5305,11 +5411,11 @@ export const instance_stats = { "You don't need an account here to participate! \nI suggest joining [lemmy.ml](https://lemmy.ml) but if you want an account here, that's cool too. \nTo combat spam, just briefly tell me what your favorite languages are and maybe link your git repos =]", private_instance: false, actor_id: "https://heapoverflow.ml/", - last_refreshed_at: "2022-04-14T20:37:15.207808", + last_refreshed_at: "2022-05-24T21:50:07.349432", inbox_url: "https://heapoverflow.ml/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA49o/7I00UxbL6HWZtL4G\nrfdgMJAOL0CYOI4LLNTRc9utTcursPwJGe3GOwOgwBCq7zFkx7x6dHQ1JmjdTxLh\nuh7+gEFeY3c1sFLqgj8lTQJIemvTINOvh3zWZRBT/9FRLyojgfV2ytn/AWpanWHB\nxGJPShMGPOjHokiIVgMdqKB6OXttzVpTJx91ERLTtJsixrDRYwPdiaSlj3nbvPsr\ngFJ/TDobjeqBLyY8ujVMq2V62f/L9Wj/KMgVNXgqjQXHQxUjK+/P2LNrmjxZdhDs\nw1zcBK1Dg6uL0HM9sBRuVTIUCN8/uLUaZiNYiaKSzjbHGz/Tlout6Fr2v2YWehNh\nawIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAstC1sdIqe92fF/bkX8DM\nN+EYA66rSJDnDCj2LDw7yluHbwSRASRcPRlaeBgsSYGr2oBUZo/70MRx7ScYgZFG\n+y2wLZdmRb8dtZPLOdagI7UVJwJeZudFltM/yNovzcuw9GOdz2Pyv8RHcOnZs/Vz\n5k71nbCbbwtxa75ygG4+7DxfyAxsoxUYdQJQ7eoMvMO8AigCu5duZz2YUZLtn0Xb\nwHs5GHff3YZZ5XF6h0SrShkmvkaG136gV7zP7LqPJrvzYEk5mPSUK6d5jZ3oIhYU\nIAZq6qv+cKGFwkfVAHsfa/0P997xaBoPVA/O5HdFl/RfcE18cC2kJdjDrXKP1P8O\nZQIDAQAB\n-----END PUBLIC KEY-----\n", default_theme: "darkly-mono", }, counts: { @@ -5320,7 +5426,7 @@ export const instance_stats = { comments: 26, communities: 16, users_active_day: 0, - users_active_week: 1, + users_active_week: 0, users_active_month: 1, users_active_half_year: 1, }, @@ -5335,7 +5441,7 @@ export const instance_stats = { "https://heapoverflow.ml/pictrs/image/ba342abb-4ed8-403c-9139-387d1b91fa83.jpeg", banned: false, published: "2022-01-21T18:50:06.448286", - updated: "2022-04-14T23:01:38.496786", + updated: "2022-05-24T21:56:49.132004", actor_id: "https://heapoverflow.ml/u/thann", bio: "https://lemmy.ml/u/Thann \nhttps://gitlab.com/thann \nhttps://github.com/thann ", local: true, @@ -5358,7 +5464,7 @@ export const instance_stats = { }, }, ], - online: 1, + online: 0, version: "0.16.3", my_user: null, federated_instances: { @@ -5368,6 +5474,86 @@ export const instance_stats = { }, }, }, + { + domain: "lemmy.shrieker.net", + site_info: { + site_view: { + site: { + id: 1, + name: "美食レミー", + sidebar: null, + published: "2021-12-08T07:05:57.214388", + updated: "2021-12-09T20:19:48.864788", + enable_downvotes: true, + open_registration: false, + enable_nsfw: true, + icon: null, + banner: null, + description: null, + community_creation_admin_only: true, + require_email_verification: false, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.shrieker.net/", + last_refreshed_at: "2022-05-13T07:21:38.792130", + inbox_url: "https://lemmy.shrieker.net/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqKFx+n6CHEdP5X5LzxPb\nBWniHYCqd9UKgclZqEYPp4211PbcKocAsl09hwyoKu4yfFgdocyL0mCYZrPig387\n5TQ2l9r6onb7XcE/XZZcZ1dniv7AxIbrT6LmMm+e4hQKLssmjDfse/XNCJeH6d8I\nSacP/ZFvVaM+hUhjUCgEqYxIcy751aDsZLKeKy98e7NqzWPVFuYPDzSjLhnwhVaF\nsD6oV8LdEFX0RFivNLfdN+qVgxXfiw04LYBRf7Mbv02UqCKHEwdyelkOLoEkasQE\n1yp0Rnw+kCfXMHT5bqiOwrNoBMyFuX0f+CZVsX5qAEQogy5PSMtA3WBRQO94e4Sj\nDwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 2, + posts: 1668, + comments: 0, + communities: 2, + users_active_day: 1, + users_active_week: 1, + users_active_month: 1, + users_active_half_year: 1, + }, + }, + admins: [ + { + person: { + id: 2, + name: "lemmy", + display_name: null, + avatar: null, + banned: false, + published: "2021-12-08T07:05:56.239791", + updated: null, + actor_id: "https://dev18.b-shock.local/u/lemmy", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://dev18.b-shock.local/u/lemmy/inbox", + shared_inbox_url: "https://dev18.b-shock.local/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 0, + post_score: 0, + comment_count: 0, + comment_score: 0, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: null, + }, + }, { domain: "lemmy.rimkus.it", site_info: { @@ -5402,10 +5588,10 @@ export const instance_stats = { id: 1, site_id: 1, users: 2, - posts: 9, - comments: 7, + posts: 11, + comments: 15, communities: 1, - users_active_day: 0, + users_active_day: 1, users_active_week: 1, users_active_month: 1, users_active_half_year: 1, @@ -5479,41 +5665,43 @@ export const instance_stats = { }, }, { - domain: "lemmy.shrieker.net", + domain: "foro.markoop.org", site_info: { site_view: { site: { id: 1, - name: "美食レミー", - sidebar: null, - published: "2021-12-08T07:05:57.214388", - updated: "2021-12-09T20:19:48.864788", - enable_downvotes: true, - open_registration: false, - enable_nsfw: true, - icon: null, - banner: null, - description: null, + name: "Foro de Markoop", + sidebar: + "Markoop es un proyecto estratégico de **cultura libre** para una digitalización cualitativa en entornos cooperativos. \n\nA través de Markoop, exploramos, creamos e implementamos herramientas y contenidos basados en software y licencias libres para poner en valor la cultura libre y prácticas para tejer redes sociales en una economía más humana, sostenible y cooperativa alentando la reflexión, soberanía y madurez digital.\n\nSi quieres unirte seguro que tienes algo que aportar, échale un vistazo al manifiesto y netiqueta.\n\n\n", + published: "2022-05-08T18:49:54.346218", + updated: "2022-05-09T12:42:16.621895", + enable_downvotes: false, + open_registration: true, + enable_nsfw: false, + icon: "https://foro.markoop.org/pictrs/image/528d7d7d-43ef-4ccc-b256-8a49b7d436a5.png", + banner: + "https://foro.markoop.org/pictrs/image/6b99e57d-d130-4fa2-907e-6f5104c486cd.png", + description: "Un océano de redes en cooperación", community_creation_admin_only: true, - require_email_verification: false, + require_email_verification: true, require_application: false, application_question: null, private_instance: false, - actor_id: "https://lemmy.shrieker.net/", - last_refreshed_at: "2022-05-13T07:21:38.792130", - inbox_url: "https://lemmy.shrieker.net/site_inbox", + actor_id: "https://foro.markoop.org/", + last_refreshed_at: "2022-05-09T14:00:26.223866", + inbox_url: "https://foro.markoop.org/site_inbox", private_key: null, public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqKFx+n6CHEdP5X5LzxPb\nBWniHYCqd9UKgclZqEYPp4211PbcKocAsl09hwyoKu4yfFgdocyL0mCYZrPig387\n5TQ2l9r6onb7XcE/XZZcZ1dniv7AxIbrT6LmMm+e4hQKLssmjDfse/XNCJeH6d8I\nSacP/ZFvVaM+hUhjUCgEqYxIcy751aDsZLKeKy98e7NqzWPVFuYPDzSjLhnwhVaF\nsD6oV8LdEFX0RFivNLfdN+qVgxXfiw04LYBRf7Mbv02UqCKHEwdyelkOLoEkasQE\n1yp0Rnw+kCfXMHT5bqiOwrNoBMyFuX0f+CZVsX5qAEQogy5PSMtA3WBRQO94e4Sj\nDwIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "browser", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApKlh+5xEYsCIb2x1hPzW\nU7Gd0+FMxZW/Lr2dQ9dSPSCMd25rsc7APylXtkB+l7/jfPRXp6Nub4gJ6ye1AfN6\n/E2HqsT3ou3HF/O6jX1oOSGIWQazubXxA0e6jV79TJs+hnyTqMvx9XJWz0pigCN1\nflKQIPsf+relseIpPmCJYiU+G8tPpgamlRN8yNthYiEHrVtP7M6hpfOH2idPFHq5\nncdTKTD3cvELSIIPiU+dIdT7MgJd5IPIfHoRUZXz+VsdyqhB4riqYa913z0X/Q51\nuYUE/X/WXCmXVTi37KwZjHnDOTscrALAYcAM5KKyH29QgO8qg+SmQAwwhF8gjUTF\n2wIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "minty", }, counts: { id: 1, site_id: 1, users: 2, - posts: 1604, + posts: 2, comments: 0, - communities: 2, + communities: 5, users_active_day: 1, users_active_week: 1, users_active_month: 1, @@ -5524,19 +5712,19 @@ export const instance_stats = { { person: { id: 2, - name: "lemmy", + name: "admin", display_name: null, avatar: null, banned: false, - published: "2021-12-08T07:05:56.239791", + published: "2022-05-08T18:49:53.483122", updated: null, - actor_id: "https://dev18.b-shock.local/u/lemmy", + actor_id: "https://mydomain.ml/u/admin", bio: null, local: true, banner: null, deleted: false, - inbox_url: "https://dev18.b-shock.local/u/lemmy/inbox", - shared_inbox_url: "https://dev18.b-shock.local/inbox", + inbox_url: "https://mydomain.ml/u/admin/inbox", + shared_inbox_url: "https://mydomain.ml/inbox", matrix_user_id: null, admin: true, bot_account: false, @@ -5545,8 +5733,8 @@ export const instance_stats = { counts: { id: 1, person_id: 2, - post_count: 0, - post_score: 0, + post_count: 2, + post_score: 2, comment_count: 0, comment_score: 0, }, @@ -5558,390 +5746,6 @@ export const instance_stats = { federated_instances: null, }, }, - { - domain: "lemmy.mesh.party", - site_info: { - site_view: { - site: { - id: 1, - name: "Mesh.Party", - sidebar: - 'This lemmy instance is accessible via clearnet and Yggdrasil (though it currently requires clearnet DNS).\n\nFeel free to create communities centered around mesh/decentralized/tech/selfhosting/mesh-hosting, or simply use this instance to access the lemmyverse from Yggdrasil.\n\n#### Rules\n1. No bigotry, racism, sexism, ableism, homophobia, or xenophobia\n2. No sexually explicit content, use NSFW for anything else not ~"kid friendly"\n3. No botting/spamming\n4. Typical forum etiquette applies, be respectful, etc.\n\n#### Licenses\n* Logo from Twemoji', - published: "2022-01-09T20:49:02.104493", - updated: "2022-01-27T03:27:57.757483", - enable_downvotes: true, - open_registration: true, - enable_nsfw: true, - icon: "https://lemmy.mesh.party/pictrs/image/3653fdce-1fdc-4514-aceb-38c6ba29006c.png", - banner: null, - description: "A Lemmy instance for mesh network denizens.", - community_creation_admin_only: false, - require_email_verification: true, - require_application: false, - application_question: null, - private_instance: false, - actor_id: "https://lemmy.mesh.party/", - last_refreshed_at: "2022-04-26T01:15:36.314262", - inbox_url: "https://lemmy.mesh.party/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQgbNKLrVXWqhHkiAEwj\n6/xvZXKfuVqpdTfrbHGutZfpyP/XOpkt3eUv+kpfaZBBriPXQPuqsB5WVOLd7IaO\nUSupZEqOvI7vNKlJ+iolRpK/EvAa6JQNW3gKDVfqiK8WH5B4GTZ4KYiRmjSAD5TB\nZjoFGfF7lHcuUWRIde3h8I25xASj7yAzqTAQBrHTq/A7ZQvAetVwsw0kfzuB0Jba\nRwnRn8je4uf+x7ZHWTcgwnPcOcyopMeSWwuiEB3hrwihxKAG5DEPiTi0NW4ymigB\nd6tIyzqtQu0LhDmJNmNH7C/9xCxsZUCdcFBzZfXVdzVQIfalU4juiSnX8IYFch2/\nwwIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "browser", - }, - counts: { - id: 1, - site_id: 1, - users: 9, - posts: 8, - comments: 14, - communities: 2, - users_active_day: 0, - users_active_week: 0, - users_active_month: 1, - users_active_half_year: 2, - }, - }, - admins: [ - { - person: { - id: 2, - name: "admin", - display_name: null, - avatar: null, - banned: false, - published: "2022-01-09T20:49:01.408649", - updated: null, - actor_id: "https://lemmy.mesh.party/u/admin", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://lemmy.mesh.party/u/admin/inbox", - shared_inbox_url: "https://lemmy.mesh.party/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 1, - post_score: 1, - comment_count: 0, - comment_score: 0, - }, - }, - { - person: { - id: 3, - name: "Stephen304", - display_name: null, - avatar: null, - banned: false, - published: "2022-01-10T00:11:38.382067", - updated: "2022-01-14T22:55:59.338334", - actor_id: "https://lemmy.mesh.party/u/Stephen304", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://lemmy.mesh.party/u/Stephen304/inbox", - shared_inbox_url: "https://lemmy.mesh.party/inbox", - matrix_user_id: "@Stephen304:matrix.org", - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 2, - person_id: 3, - post_count: 7, - post_score: 28, - comment_count: 14, - comment_score: 22, - }, - }, - ], - online: 1, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: [ - "f.freinetz.ch", - "lemmy.ml", - "lemmy.perthchat.org", - "lemmygrad.ml", - "midwest.social", - ], - allowed: null, - blocked: ["legbeard.xyz", "wolfballs.com"], - }, - }, - }, - { - domain: "Heapoverflow.ml", - site_info: { - site_view: { - site: { - id: 1, - name: "Heap Overflow", - sidebar: - "[General programming discussion](https://lemmy.ml/c/programming), \n[Additional resources](https://heapoverflow.ml/c/learn_programming@lemmy.ml), [challenges](https://projecteuler.net/archives)\n\nTo post or comment:\n1. Create an account on [another lemmy instance](https://join-lemmy.org/instances) \n2. Then search for the community url like [here](https://lemmy.ml/search/q/https%3A%2F%2Fheapoverflow.ml%2Fc%2Fpython/type/All/sort/TopAll/listing_type/All/community_id/0/creator_id/0/page/1)\n\n\n**RULES:**\n1. No politics\n2. No flaming / trolling\n3. No proprietary BS\n4. Stay on topic\n\nPlease keep questions & examples short! \n\nAll content is **[Public Domain](https://unlicense.org/)** unless otherwise specified. \nOnly [CC0](https://creativecommons.org/publicdomain/zero/1.0/legalcode), [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/), or [CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/) alternate licenses are allowed.\n\nNo affiliation with StackOverflow.com", - published: "2022-01-21T18:50:07.074200", - updated: "2022-05-06T20:44:47.693536", - enable_downvotes: true, - open_registration: true, - enable_nsfw: false, - icon: "https://heapoverflow.ml/pictrs/image/f910bf1c-215b-47c0-a9ff-d65f483c02a3.png", - banner: null, - description: - "A place to ask programming questions and share free resources", - community_creation_admin_only: true, - require_email_verification: false, - require_application: true, - application_question: - "You don't need an account here to participate! \nI suggest joining [lemmy.ml](https://lemmy.ml) but if you want an account here, that's cool too. \nTo combat spam, just briefly tell me what your favorite languages are and maybe link your git repos =]", - private_instance: false, - actor_id: "https://heapoverflow.ml/", - last_refreshed_at: "2022-04-14T20:37:15.207808", - inbox_url: "https://heapoverflow.ml/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA49o/7I00UxbL6HWZtL4G\nrfdgMJAOL0CYOI4LLNTRc9utTcursPwJGe3GOwOgwBCq7zFkx7x6dHQ1JmjdTxLh\nuh7+gEFeY3c1sFLqgj8lTQJIemvTINOvh3zWZRBT/9FRLyojgfV2ytn/AWpanWHB\nxGJPShMGPOjHokiIVgMdqKB6OXttzVpTJx91ERLTtJsixrDRYwPdiaSlj3nbvPsr\ngFJ/TDobjeqBLyY8ujVMq2V62f/L9Wj/KMgVNXgqjQXHQxUjK+/P2LNrmjxZdhDs\nw1zcBK1Dg6uL0HM9sBRuVTIUCN8/uLUaZiNYiaKSzjbHGz/Tlout6Fr2v2YWehNh\nawIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "darkly-mono", - }, - counts: { - id: 1, - site_id: 1, - users: 11, - posts: 0, - comments: 26, - communities: 16, - users_active_day: 0, - users_active_week: 1, - users_active_month: 1, - users_active_half_year: 1, - }, - }, - admins: [ - { - person: { - id: 2, - name: "thann", - display_name: null, - avatar: - "https://heapoverflow.ml/pictrs/image/ba342abb-4ed8-403c-9139-387d1b91fa83.jpeg", - banned: false, - published: "2022-01-21T18:50:06.448286", - updated: "2022-04-14T23:01:38.496786", - actor_id: "https://heapoverflow.ml/u/thann", - bio: "https://lemmy.ml/u/Thann \nhttps://gitlab.com/thann \nhttps://github.com/thann ", - local: true, - banner: null, - deleted: false, - inbox_url: "https://heapoverflow.ml/u/thann/inbox", - shared_inbox_url: "https://heapoverflow.ml/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 0, - post_score: 0, - comment_count: 26, - comment_score: 50, - }, - }, - ], - online: 1, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: ["feddit.de", "heapoverflow.ml", "lemmy.ml"], - allowed: null, - blocked: null, - }, - }, - }, - { - domain: "lemmy.wiredentrypoint.xyz", - site_info: { - site_view: { - site: { - id: 1, - name: "Wiredentrypoint", - sidebar: null, - published: "2022-03-25T13:36:10.127624", - updated: "2022-03-25T16:17:47.720022", - enable_downvotes: true, - open_registration: false, - enable_nsfw: true, - icon: "https://lemmy.wiredentrypoint.xyz/pictrs/image/826b6251-bf21-41b4-b8f2-7a39a0b09313.png", - banner: null, - description: null, - community_creation_admin_only: true, - require_email_verification: false, - require_application: false, - application_question: null, - private_instance: false, - actor_id: "https://lemmy.wiredentrypoint.xyz/", - last_refreshed_at: "2022-03-25T14:20:54.034816", - inbox_url: "https://lemmy.wiredentrypoint.xyz/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4qyJS70Kw/sspYmb9YSs\nx/k/BeYiBYrAX4QKj7pyjoyIUbqt0glDx3+R7y3OrNrVsAXjDLGYjHOpzxKZafDO\n9ZUa3vdi879px247tPiSQw7FgQrHMtVD0A7NGLeA02QLtKInZN9cMU7K2nO0YqFe\nKjkCb3vBHkd30TYPE/J4Zq3m0ZYmu5+I+EOXSIo+fhvHWZmjp9GS1ChS+4blF1je\n2LWMSuCJUHbhgKU7UqD82AI18ZPVmfQRVdqOaWngLUW6zgSQz2b5F3+aiySdsv/9\nRjjYT4miPRULGX7EmRZ8jVMZ+rO6uRxMb76G5NwvQaltxqPF30jcYbmiRUE2yyy+\nDQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "darkly", - }, - counts: { - id: 1, - site_id: 1, - users: 1, - posts: 5, - comments: 24, - communities: 0, - users_active_day: 0, - users_active_week: 0, - users_active_month: 1, - users_active_half_year: 1, - }, - }, - admins: [ - { - person: { - id: 2, - name: "axeltherabbit", - display_name: null, - avatar: - "https://lemmy.wiredentrypoint.xyz/pictrs/image/b6c79296-ac29-4679-a324-373eea8852a1.jpeg", - banned: false, - published: "2022-03-25T13:35:29.536095", - updated: "2022-03-25T13:39:23.050948", - actor_id: "https://lemmy.wiredentrypoint.xyz/u/axeltherabbit", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: - "https://lemmy.wiredentrypoint.xyz/u/axeltherabbit/inbox", - shared_inbox_url: "https://lemmy.wiredentrypoint.xyz/inbox", - matrix_user_id: "@axel:wiredentrypoint.xyz", - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 5, - post_score: 30, - comment_count: 24, - comment_score: 47, - }, - }, - ], - online: 0, - version: "0.16.1", - my_user: null, - federated_instances: { - linked: [ - "ds9.lemmy.ml", - "feddit.de", - "lemmy.ml", - "lemmy.wiredentrypoint.xyz", - ], - allowed: null, - blocked: null, - }, - }, - }, - { - domain: "lemmy.fediverse.jp", - site_info: { - site_view: { - site: { - id: 1, - name: "Fediverse.jp: Lemmy", - sidebar: null, - published: "2022-04-14T16:58:34.040562", - updated: "2022-04-19T23:49:44.568206", - enable_downvotes: true, - open_registration: true, - enable_nsfw: true, - icon: null, - banner: null, - description: null, - community_creation_admin_only: true, - require_email_verification: true, - require_application: false, - application_question: null, - private_instance: false, - actor_id: "https://lemmy.fediverse.jp/", - last_refreshed_at: "2022-05-16T11:05:13.335338", - inbox_url: "https://lemmy.fediverse.jp/site_inbox", - private_key: null, - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuqBz7aD19QqcI27b9tiZ\n6ydYf59rDemzobCLQzM+dJvfWfywkFMSGoAhemxDlftTTquQXIrvg1PNSDJRkwNB\nG9X65+AxDaPi0+ZJhiXR5MIuK9uTb92gJZaPSLbqpd7zpvJzv+JEaPfEtF076qHb\ncV5m3ZHLWmu48OjMQrhlVrLu5o6bjAmcGlbvPddsyapO84n+zmq5/hbn0LCHeYw+\nJ45dfviZNJjmcDQKRnApoCIIuTDjyFHk0UNPrWEOMhKBa77VT0wncxm8Tb9BkXY2\nbwa8PwZO+idrT5SKkpBhjAElFAtC3+9qT+f4Kj7xqZXCpskjW1z3DilpGF7VDD9w\nJQIDAQAB\n-----END PUBLIC KEY-----\n", - default_theme: "browser", - }, - counts: { - id: 1, - site_id: 1, - users: 2, - posts: 1, - comments: 0, - communities: 2, - users_active_day: 0, - users_active_week: 0, - users_active_month: 1, - users_active_half_year: 1, - }, - }, - admins: [ - { - person: { - id: 2, - name: "admin", - display_name: null, - avatar: null, - banned: false, - published: "2022-04-14T16:58:33.455080", - updated: null, - actor_id: "https://lemmy.fediverse.jp/u/admin", - bio: null, - local: true, - banner: null, - deleted: false, - inbox_url: "https://lemmy.fediverse.jp/u/admin/inbox", - shared_inbox_url: "https://lemmy.fediverse.jp/inbox", - matrix_user_id: null, - admin: true, - bot_account: false, - ban_expires: null, - }, - counts: { - id: 1, - person_id: 2, - post_count: 1, - post_score: 3, - comment_count: 0, - comment_score: 0, - }, - }, - ], - online: 1, - version: "0.16.3", - my_user: null, - federated_instances: { - linked: ["lemmy.fediverse.jp"], - allowed: null, - blocked: null, - }, - }, - }, { domain: "verity.fail", site_info: { @@ -6016,7 +5820,7 @@ export const instance_stats = { }, }, ], - online: 0, + online: 1, version: "0.16.0", my_user: null, federated_instances: { @@ -6128,6 +5932,127 @@ export const instance_stats = { }, }, }, + { + domain: "lemmy.mesh.party", + site_info: { + site_view: { + site: { + id: 1, + name: "Mesh.Party", + sidebar: + 'This lemmy instance is accessible via clearnet and Yggdrasil (though it currently requires clearnet DNS).\n\nFeel free to create communities centered around mesh/decentralized/tech/selfhosting/mesh-hosting, or simply use this instance to access the lemmyverse from Yggdrasil.\n\n#### Rules\n1. No bigotry, racism, sexism, ableism, homophobia, or xenophobia\n2. No sexually explicit content, use NSFW for anything else not ~"kid friendly"\n3. No botting/spamming\n4. Typical forum etiquette applies, be respectful, etc.\n\n#### Licenses\n* Logo from Twemoji', + published: "2022-01-09T20:49:02.104493", + updated: "2022-01-27T03:27:57.757483", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: "https://lemmy.mesh.party/pictrs/image/3653fdce-1fdc-4514-aceb-38c6ba29006c.png", + banner: null, + description: "A Lemmy instance for mesh network denizens.", + community_creation_admin_only: false, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.mesh.party/", + last_refreshed_at: "2022-04-26T01:15:36.314262", + inbox_url: "https://lemmy.mesh.party/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQgbNKLrVXWqhHkiAEwj\n6/xvZXKfuVqpdTfrbHGutZfpyP/XOpkt3eUv+kpfaZBBriPXQPuqsB5WVOLd7IaO\nUSupZEqOvI7vNKlJ+iolRpK/EvAa6JQNW3gKDVfqiK8WH5B4GTZ4KYiRmjSAD5TB\nZjoFGfF7lHcuUWRIde3h8I25xASj7yAzqTAQBrHTq/A7ZQvAetVwsw0kfzuB0Jba\nRwnRn8je4uf+x7ZHWTcgwnPcOcyopMeSWwuiEB3hrwihxKAG5DEPiTi0NW4ymigB\nd6tIyzqtQu0LhDmJNmNH7C/9xCxsZUCdcFBzZfXVdzVQIfalU4juiSnX8IYFch2/\nwwIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 10, + posts: 8, + comments: 14, + communities: 2, + users_active_day: 0, + users_active_week: 0, + users_active_month: 0, + users_active_half_year: 2, + }, + }, + admins: [ + { + person: { + id: 2, + name: "admin", + display_name: null, + avatar: null, + banned: false, + published: "2022-01-09T20:49:01.408649", + updated: null, + actor_id: "https://lemmy.mesh.party/u/admin", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.mesh.party/u/admin/inbox", + shared_inbox_url: "https://lemmy.mesh.party/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1, + post_score: 1, + comment_count: 0, + comment_score: 0, + }, + }, + { + person: { + id: 3, + name: "Stephen304", + display_name: null, + avatar: null, + banned: false, + published: "2022-01-10T00:11:38.382067", + updated: "2022-01-14T22:55:59.338334", + actor_id: "https://lemmy.mesh.party/u/Stephen304", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.mesh.party/u/Stephen304/inbox", + shared_inbox_url: "https://lemmy.mesh.party/inbox", + matrix_user_id: "@Stephen304:matrix.org", + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 2, + person_id: 3, + post_count: 7, + post_score: 28, + comment_count: 14, + comment_score: 22, + }, + }, + ], + online: 1, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: [ + "f.freinetz.ch", + "lemmy.ml", + "lemmy.perthchat.org", + "lemmygrad.ml", + "midwest.social", + ], + allowed: null, + blocked: ["legbeard.xyz", "wolfballs.com"], + }, + }, + }, { domain: "lem.ph3j.com", site_info: { @@ -6221,6 +6146,90 @@ export const instance_stats = { }, }, }, + { + domain: "lemmy.fediverse.jp", + site_info: { + site_view: { + site: { + id: 1, + name: "Fediverse.jp: Lemmy", + sidebar: null, + published: "2022-04-14T16:58:34.040562", + updated: "2022-04-19T23:49:44.568206", + enable_downvotes: true, + open_registration: true, + enable_nsfw: true, + icon: null, + banner: null, + description: null, + community_creation_admin_only: true, + require_email_verification: true, + require_application: false, + application_question: null, + private_instance: false, + actor_id: "https://lemmy.fediverse.jp/", + last_refreshed_at: "2022-05-25T14:21:14.418707", + inbox_url: "https://lemmy.fediverse.jp/site_inbox", + private_key: null, + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1xvv47hSwLkm15sI11t7\n5GzkK/U0iZS/CHN5Up4vxHLPjy9EBGDcF3FjAXUTaCdtrxlVpCDq1/icmj99S3lH\nBym/TiS5a0X0jqNwXkJ/qwWylmqCY1fYdJCWrCdvhn+CeFflGt7OBZcDfUHcXiFp\nwOl+y/sZBm7KutzZ/UOnHP4a/fyrlEjz/F8rUg+KuoAZTn/BTwyEBDwm3Cn5THo0\nvHenwSEJ3XtV16k+34pMN9oYAkyUJBgKQeV05RS6KayNjitdQVVKTefaIK49kMLb\nj3lSqd4YCl+lPuQBbwtrUsPdJdkHpzyYUBXE4TcqjX1/BdGq7npUK2k0ZbH5Fgdo\n/wIDAQAB\n-----END PUBLIC KEY-----\n", + default_theme: "browser", + }, + counts: { + id: 1, + site_id: 1, + users: 2, + posts: 1, + comments: 0, + communities: 2, + users_active_day: 0, + users_active_week: 0, + users_active_month: 0, + users_active_half_year: 1, + }, + }, + admins: [ + { + person: { + id: 2, + name: "admin", + display_name: null, + avatar: null, + banned: false, + published: "2022-04-14T16:58:33.455080", + updated: null, + actor_id: "https://lemmy.fediverse.jp/u/admin", + bio: null, + local: true, + banner: null, + deleted: false, + inbox_url: "https://lemmy.fediverse.jp/u/admin/inbox", + shared_inbox_url: "https://lemmy.fediverse.jp/inbox", + matrix_user_id: null, + admin: true, + bot_account: false, + ban_expires: null, + }, + counts: { + id: 1, + person_id: 2, + post_count: 1, + post_score: 3, + comment_count: 0, + comment_score: 0, + }, + }, + ], + online: 0, + version: "0.16.4-rc.9", + my_user: null, + federated_instances: { + linked: ["lemmy.fediverse.jp"], + allowed: null, + blocked: null, + }, + }, + }, ], }, recommended: {