diff --git a/.drone.yml b/.drone.yml index 81776dc..f6fac38 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: @@ -41,5 +51,5 @@ steps: password: from_secret: docker_password when: - ref: - - refs/tags/* + event: + - cron diff --git a/.gitmodules b/.gitmodules index 6025dae..aeb7abe 100644 --- a/.gitmodules +++ b/.gitmodules @@ -10,11 +10,10 @@ 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 branch = main +[submodule "lemmy-stats-crawler"] + path = lemmy-stats-crawler + url = https://yerbamate.ml/LemmyNet/lemmy-stats-crawler.git 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..b3e2680 --- /dev/null +++ b/crawl.mjs @@ -0,0 +1,55 @@ +import fs from 'fs'; +import path from 'path'; +import { exit } from 'process'; +import { spawn } 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 = 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; + }); + + run.stderr.on('data', data => { + const strData = data.toString(); + process.stdout.write(strData); + }); + + 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/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 36fdc84..6889961 100644 --- a/generate_translations.mjs +++ b/generate_translations.mjs @@ -4,39 +4,10 @@ import path from 'path'; 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 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) - ); - - let stats2 = { - crawled_instances: stats.crawled_instances, - total_users: stats.total_users, - recommended: recommended, - remaining: remaining, - } - - let data = `export const instance_stats = \n `; - data += JSON.stringify(stats2, null, 2) + ";"; - const target = outDir + "instance_stats.ts"; - fs.writeFileSync(target, data); -} catch (err) { - console.error(err); -} - // 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/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 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 new file mode 100644 index 0000000..050fd8e --- /dev/null +++ b/recommended-instances.json @@ -0,0 +1,10 @@ +{ + "en": ["sopuli.xyz", "beehaw.org"], + "de": ["feddit.de"], + "pt": ["lemmy.pt"], + "pt_BR": ["lemmy.pt"], + "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/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 9610cf3..fd42ed5 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,23 @@ export class Instances extends Component { } render() { + var recommended_instances = instance_stats.recommended[i18n.language]; + if (!recommended_instances) { + recommended_instances = instance_stats.recommended["en"]; + } + + var recommended = []; + var remaining = []; + for (var i of instance_stats.stats.instance_details) { + if (recommended_instances.indexOf(i.domain) > -1) { + 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 +42,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 +52,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), })} ); @@ -48,42 +62,51 @@ export class Instances extends Component { renderList(header: string, instances: any[]) { return (
- - - -
-

{header}

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

{i.name}

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

{header}

+
+ {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")} + +

+
+
+
+
-

{i.description}

+
+

{description}

+
- {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 new file mode 100644 index 0000000..87f7a8e --- /dev/null +++ b/src/shared/instance_stats.ts @@ -0,0 +1,6250 @@ +export const instance_stats = { + stats: { + crawled_instances: 47, + 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", + 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-17T14:58:30.360092", + inbox_url: "https://lemmygrad.ml/site_inbox", + private_key: null, + public_key: + "-----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: 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: [ + { + 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: 3082, + post_score: 41396, + comment_count: 4192, + comment_score: 23328, + }, + }, + { + 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: 58, + post_score: 2007, + comment_count: 74, + comment_score: 926, + }, + }, + { + 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: 327, + post_score: 3021, + comment_count: 1567, + comment_score: 9903, + }, + }, + { + 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: 2936, + comment_count: 1221, + comment_score: 7185, + }, + }, + { + 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: 4364, + comment_count: 734, + comment_score: 3268, + }, + }, + { + 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: 333, + post_score: 4855, + comment_count: 659, + comment_score: 3210, + }, + }, + { + 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: 1753, + comment_count: 1818, + comment_score: 10597, + }, + }, + { + person: { + id: 85310, + name: "Based_grandma69", + display_name: "Zoee", + avatar: + "https://lemmygrad.ml/pictrs/image/d95a3677-a193-404c-8417-19d366560c17.jpeg", + banned: false, + published: "2022-01-11T19:09:45.530904", + 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/beb26d46-dc75-45a8-ba7a-3b682575fbe2.png", + 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: 40, + post_score: 1661, + comment_count: 177, + comment_score: 1546, + }, + }, + ], + online: 107, + version: "0.16.4-rc.9", + 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", + "masr.social", + "slrpnk.net", + "sopuli.xyz", + ], + allowed: null, + blocked: [ + "legbeard.xyz", + "wolfballs.com", + "freefedifolk.com", + "lemmy.odat.xyz", + ], + }, + }, + }, + { + domain: "lemmy.ml", + 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-16T18:59:29.318302", + inbox_url: "https://lemmy.ml/site_inbox", + private_key: null, + public_key: + "-----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: 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: [ + { + 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: 7992, + comment_count: 3766, + comment_score: 16506, + }, + }, + { + 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: 5538, + post_score: 37693, + comment_count: 3718, + comment_score: 15692, + }, + }, + { + 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: 325, + comment_count: 123, + comment_score: 511, + }, + }, + { + 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: 1972, + comment_score: 8933, + }, + }, + { + 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: 1551, + comment_score: 4534, + }, + }, + ], + online: 92, + 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", + 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-24T20:10:50.815922", + inbox_url: "https://szmer.info/site_inbox", + private_key: null, + public_key: + "-----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: 1245, + posts: 17832, + comments: 15104, + communities: 197, + users_active_day: 19, + users_active_week: 35, + users_active_month: 66, + users_active_half_year: 305, + }, + }, + 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: 34, + post_score: 289, + comment_count: 57, + comment_score: 134, + }, + }, + ], + online: 19, + 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.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: { + 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-23T18:09:43.977805", + inbox_url: "https://feddit.de/site_inbox", + private_key: null, + public_key: + "-----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: 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: [ + { + 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: 439, + post_score: 1500, + comment_count: 266, + comment_score: 743, + }, + }, + ], + online: 9, + 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: "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-05-19T17:24:35.986141", + inbox_url: "https://lemmy.ca/site_inbox", + private_key: null, + public_key: + "-----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: 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: "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: 259, + comment_score: 580, + }, + }, + { + 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: 33, + comment_score: 81, + }, + }, + ], + online: 2, + 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: "beehaw.org", + 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: 102, + posts: 550, + comments: 612, + communities: 18, + users_active_day: 2, + users_active_week: 4, + users_active_month: 12, + 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: 99, + post_score: 457, + comment_count: 157, + comment_score: 473, + }, + }, + { + 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: 2, + 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.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: 503, + posts: 744, + comments: 1257, + communities: 60, + users_active_day: 1, + users_active_week: 5, + users_active_month: 9, + users_active_half_year: 128, + }, + }, + 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: 147, + comment_score: 192, + }, + }, + { + 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: 79, + post_score: 284, + comment_count: 92, + comment_score: 146, + }, + }, + { + 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: 71, + post_score: 249, + 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: 88, + post_score: 269, + comment_count: 90, + comment_score: 139, + }, + }, + ], + online: 4, + 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", + "lemmygrad.ml", + "mander.xyz", + "sopuli.xyz", + ], + 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: 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: "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: 145, + post_score: 1222, + comment_count: 166, + comment_score: 722, + }, + }, + { + 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: 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: 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", + 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: 15, + posts: 18, + comments: 118, + communities: 6, + users_active_day: 0, + users_active_week: 3, + users_active_month: 7, + users_active_half_year: 10, + }, + }, + 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: 42, + comment_score: 83, + }, + }, + ], + online: 1, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["beehaw.org", "gtio.io", "lemmy.ml"], + allowed: null, + blocked: null, + }, + }, + }, + { + 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: { + 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-05-20T11:23:32.584466", + inbox_url: "https://mander.xyz/site_inbox", + private_key: null, + public_key: + "-----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: 82, + posts: 167, + comments: 457, + communities: 38, + users_active_day: 3, + users_active_week: 6, + users_active_month: 7, + users_active_half_year: 29, + }, + }, + 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: 115, + post_score: 374, + comment_count: 185, + comment_score: 575, + }, + }, + ], + 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: "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: { + 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-05-16T18:59:28.192058", + inbox_url: "https://lemmy.perthchat.org/site_inbox", + private_key: null, + public_key: + "-----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: 38, + posts: 221, + comments: 243, + communities: 25, + users_active_day: 0, + users_active_week: 1, + users_active_month: 5, + 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: "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: 374, + posts: 590, + comments: 310, + communities: 57, + users_active_day: 0, + users_active_week: 1, + users_active_month: 4, + users_active_half_year: 63, + }, + }, + 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: 202, + post_score: 598, + 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: "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!", + private_instance: false, + 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-----\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: 59, + posts: 75, + comments: 84, + communities: 16, + users_active_day: 0, + 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: 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: 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-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: "community.nicfab.it", + site_info: { + site_view: { + site: { + id: 1, + name: "Privacy Community", + sidebar: + "### **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-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: + "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, + 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-18T10:06:00.698265", + inbox_url: "https://community.nicfab.it/site_inbox", + private_key: null, + public_key: + "-----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: 10, + posts: 50, + comments: 9, + communities: 1, + users_active_day: 1, + users_active_week: 2, + 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/1f883ba3-cdde-4ab0-8c85-304b0c5e9bb8.jpeg", + banned: false, + published: "2022-05-11T11:16:05.359549", + 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, + 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: 47, + post_score: 72, + comment_count: 9, + comment_score: 14, + }, + }, + { + 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: 2, + post_score: 3, + comment_count: 0, + comment_score: 0, + }, + }, + ], + online: 0, + 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: "lemmy.pt", + 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: 96, + posts: 321, + comments: 557, + communities: 29, + users_active_day: 1, + users_active_week: 1, + users_active_month: 3, + users_active_half_year: 17, + }, + }, + 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: "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", + "lm.korako.me", + "tabinezumi.net", + ], + allowed: null, + blocked: null, + }, + }, + }, + { + domain: "fapsi.be", + 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-23T15:39:34.279850", + inbox_url: "https://fapsi.be/site_inbox", + private_key: null, + public_key: + "-----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: 164, + posts: 322, + comments: 355, + communities: 9, + users_active_day: 0, + users_active_week: 1, + users_active_month: 2, + users_active_half_year: 26, + }, + }, + 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: 236, + post_score: 600, + comment_count: 243, + comment_score: 834, + }, + }, + ], + online: 1, + 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: "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-25T04:00:23.439272", + inbox_url: "https://forum.nobigtech.es/site_inbox", + private_key: null, + public_key: + "-----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: 9, + posts: 92, + comments: 16, + communities: 1, + users_active_day: 0, + users_active_week: 0, + users_active_month: 2, + 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: "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-25T06:40:43.874220", + inbox_url: "https://stammtisch.hallertau.social/site_inbox", + private_key: null, + public_key: + "-----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: 56, + posts: 160, + comments: 46, + communities: 11, + users_active_day: 0, + users_active_week: 0, + users_active_month: 2, + users_active_half_year: 18, + }, + }, + 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: "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: "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-05-17T11:46:47.811484", + 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: false, + require_email_verification: false, + require_application: false, + application_question: null, + private_instance: false, + 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-----\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: 19, + posts: 1707, + comments: 105, + communities: 57, + users_active_day: 1, + users_active_week: 2, + users_active_month: 2, + 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: 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, + }, + }, + ], + 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: [ + "ds9.lemmy.ml", + "feddit.de", + "lemmy.ml", + "lemmy.wiredentrypoint.xyz", + ], + allowed: null, + blocked: null, + }, + }, + }, + { + 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-25T03:45:06.560561", + inbox_url: "https://lemmy.schuerz.at/site_inbox", + private_key: null, + public_key: + "-----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: 40, + posts: 165, + comments: 167, + communities: 12, + 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: "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: 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: 1, + person_id: 2, + post_count: 0, + post_score: 0, + comment_count: 26, + comment_score: 50, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["feddit.de", "heapoverflow.ml", "lemmy.ml"], + allowed: null, + blocked: null, + }, + }, + }, + { + 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: 18, + posts: 47, + comments: 16, + communities: 7, + users_active_day: 0, + users_active_week: 0, + users_active_month: 1, + 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.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: 81, + posts: 161, + comments: 114, + communities: 20, + users_active_day: 0, + users_active_week: 0, + users_active_month: 1, + users_active_half_year: 7, + }, + }, + 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: 2, + 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: "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: 1, + person_id: 2, + post_count: 0, + post_score: 0, + comment_count: 26, + comment_score: 50, + }, + }, + ], + online: 0, + version: "0.16.3", + my_user: null, + federated_instances: { + linked: ["feddit.de", "heapoverflow.ml", "lemmy.ml"], + allowed: null, + blocked: null, + }, + }, + }, + { + 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: { + 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: 11, + comments: 15, + communities: 1, + users_active_day: 1, + 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: "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: 2, + 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: "verity.fail", + 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: 1, + 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: "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: { + 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, + }, + }, + }, + { + 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: { + en: ["sopuli.xyz", "beehaw.org"], + de: ["feddit.de"], + pt: ["lemmy.pt"], + pt_BR: ["lemmy.pt"], + 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", + ], + }, +}; 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