From 9d699285149a2e47820e9fb0a416153bae15f433 Mon Sep 17 00:00:00 2001 From: Nutomic Date: Wed, 11 Sep 2024 15:29:35 +0200 Subject: [PATCH] Exclude instances with more than 30% of active users (#359) * Exclude instances with more than 30% of active users * prettier * submodules * reorder --- crawl.mjs | 9 +- recommended-instances.json | 6 +- .../components/instances-definitions.ts | 5 + src/shared/instance_stats.ts | 811 ++++++++++-------- 4 files changed, 472 insertions(+), 359 deletions(-) diff --git a/crawl.mjs b/crawl.mjs index 9777636..eff0e27 100644 --- a/crawl.mjs +++ b/crawl.mjs @@ -65,7 +65,14 @@ try { .filter( i => i.site_info.site_view.counts.users_active_month > min_monthly_users, - ); + ) + // Exclude large instances which represent more than 30% of all active users + .filter(i => { + let active_users_percent = + i.site_info.site_view.counts.users_active_month / + stats.users_active_month; + return active_users_percent < 0.3; + }); let stats2 = { stats: stats, diff --git a/recommended-instances.json b/recommended-instances.json index 60e8357..fde997f 100644 --- a/recommended-instances.json +++ b/recommended-instances.json @@ -10,7 +10,8 @@ "hexbear.net", "discuss.online", "feddit.org", - "lemmings.world" + "lemmings.world", + "lemmy.world" ], "exclude": [ "lemmy.glasgow.social", @@ -23,7 +24,6 @@ "bakchodi.org", "lemmy.comfysnug.space", "rqd2.net", - "test.hexbear.net", - "lemmy.world" + "test.hexbear.net" ] } diff --git a/src/shared/components/instances-definitions.ts b/src/shared/components/instances-definitions.ts index 4c673a8..66af192 100644 --- a/src/shared/components/instances-definitions.ts +++ b/src/shared/components/instances-definitions.ts @@ -201,6 +201,11 @@ export const RECOMMENDED_INSTANCES: RecommendedInstance[] = [ languages: ["en"], topics: [GENERAL], }, + { + domain: "lemmy.world", + languages: ["en"], + topics: [GENERAL], + }, { domain: "startrek.website", languages: ["en"], diff --git a/src/shared/instance_stats.ts b/src/shared/instance_stats.ts index b03f168..c41e94c 100644 --- a/src/shared/instance_stats.ts +++ b/src/shared/instance_stats.ts @@ -1,11 +1,11 @@ export const instance_stats = { stats: { - crawled_instances: 192, - total_users: 200363, - users_active_day: 3406, - users_active_week: 6122, - users_active_month: 9399, - users_active_halfyear: 17913, + crawled_instances: 202, + total_users: 367438, + users_active_day: 11973, + users_active_week: 18738, + users_active_month: 27559, + users_active_halfyear: 47493, instance_details: [ { domain: "lemmynsfw.com", @@ -18,12 +18,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 53995, - activeHalfyear: 7588, - activeMonth: 3557, + total: 54044, + activeHalfyear: 7524, + activeMonth: 3473, }, - posts: 98236, - comments: 101251, + posts: 98559, + comments: 101626, }, openRegistrations: true, }, @@ -92,14 +92,14 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 53995, - posts: 98236, - comments: 101251, - communities: 1700, - users_active_day: 1110, - users_active_week: 2077, - users_active_month: 3557, - users_active_half_year: 7588, + users: 54044, + posts: 98559, + comments: 101626, + communities: 1701, + users_active_day: 654, + users_active_week: 1854, + users_active_month: 3473, + users_active_half_year: 7524, }, }, version: "0.19.3-1-gd05f00d4c", @@ -116,12 +116,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 27582, - activeHalfyear: 4068, - activeMonth: 2503, + total: 27598, + activeHalfyear: 4067, + activeMonth: 2498, }, - posts: 61484, - comments: 555424, + posts: 61688, + comments: 557638, }, openRegistrations: true, }, @@ -195,14 +195,14 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 27582, - posts: 61484, - comments: 555424, - communities: 173, - users_active_day: 1108, - users_active_week: 1801, - users_active_month: 2503, - users_active_half_year: 4068, + users: 27598, + posts: 61688, + comments: 557638, + communities: 176, + users_active_day: 1071, + users_active_week: 1793, + users_active_month: 2498, + users_active_half_year: 4067, }, }, version: "0.19.3", @@ -219,12 +219,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 8953, - activeHalfyear: 1910, - activeMonth: 1101, + total: 8969, + activeHalfyear: 1906, + activeMonth: 1081, }, - posts: 15091, - comments: 141727, + posts: 15138, + comments: 142296, }, openRegistrations: true, }, @@ -296,14 +296,14 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 8953, - posts: 15091, - comments: 141727, + users: 8969, + posts: 15138, + comments: 142296, communities: 311, - users_active_day: 379, - users_active_week: 743, - users_active_month: 1101, - users_active_half_year: 1910, + users_active_day: 385, + users_active_week: 730, + users_active_month: 1081, + users_active_half_year: 1906, }, }, version: "0.19.3", @@ -320,12 +320,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 4605, - activeHalfyear: 878, - activeMonth: 520, + total: 4612, + activeHalfyear: 875, + activeMonth: 510, }, - posts: 9888, - comments: 100761, + posts: 9917, + comments: 101153, }, openRegistrations: true, }, @@ -392,14 +392,14 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 4605, - posts: 9888, - comments: 100761, + users: 4612, + posts: 9917, + comments: 101153, communities: 229, - users_active_day: 245, - users_active_week: 372, - users_active_month: 520, - users_active_half_year: 878, + users_active_day: 211, + users_active_week: 347, + users_active_month: 510, + users_active_half_year: 875, }, }, version: "0.19.3", @@ -417,11 +417,11 @@ export const instance_stats = { usage: { users: { total: 7869, - activeHalfyear: 431, - activeMonth: 240, + activeHalfyear: 429, + activeMonth: 244, }, - posts: 4124, - comments: 71002, + posts: 4128, + comments: 71108, }, openRegistrations: false, }, @@ -490,13 +490,13 @@ export const instance_stats = { counts: { site_id: 1, users: 7869, - posts: 4124, - comments: 71002, + posts: 4128, + comments: 71108, communities: 7, - users_active_day: 74, - users_active_week: 165, - users_active_month: 240, - users_active_half_year: 431, + users_active_day: 85, + users_active_week: 160, + users_active_month: 244, + users_active_half_year: 429, }, }, version: "0.19.3", @@ -513,12 +513,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 1517, - activeHalfyear: 364, - activeMonth: 222, + total: 1518, + activeHalfyear: 362, + activeMonth: 225, }, - posts: 3473, - comments: 39172, + posts: 3480, + comments: 39332, }, openRegistrations: true, }, @@ -587,14 +587,14 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 1517, - posts: 3473, - comments: 39172, + users: 1518, + posts: 3480, + comments: 39332, communities: 72, - users_active_day: 89, - users_active_week: 154, - users_active_month: 222, - users_active_half_year: 364, + users_active_day: 102, + users_active_week: 152, + users_active_month: 225, + users_active_half_year: 362, }, }, version: "0.19.3", @@ -611,12 +611,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 1481, - activeHalfyear: 440, - activeMonth: 205, + total: 1482, + activeHalfyear: 439, + activeMonth: 206, }, - posts: 4147, - comments: 46917, + posts: 4161, + comments: 47223, }, openRegistrations: true, }, @@ -685,14 +685,14 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 1481, - posts: 4147, - comments: 46917, + users: 1482, + posts: 4161, + comments: 47223, communities: 20, - users_active_day: 79, - users_active_week: 157, - users_active_month: 205, - users_active_half_year: 440, + users_active_day: 113, + users_active_week: 161, + users_active_month: 206, + users_active_half_year: 439, }, }, version: "0.19.3", @@ -709,12 +709,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 2851, - activeHalfyear: 355, - activeMonth: 159, + total: 2856, + activeHalfyear: 353, + activeMonth: 151, }, - posts: 1406, - comments: 60847, + posts: 1411, + comments: 60905, }, openRegistrations: true, }, @@ -782,14 +782,14 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 2851, - posts: 1406, - comments: 60847, - communities: 39, - users_active_day: 50, - users_active_week: 103, - users_active_month: 159, - users_active_half_year: 355, + users: 2856, + posts: 1411, + comments: 60905, + communities: 40, + users_active_day: 39, + users_active_week: 96, + users_active_month: 151, + users_active_half_year: 353, }, }, version: "0.19.3", @@ -806,12 +806,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 1666, + total: 1669, activeHalfyear: 326, activeMonth: 132, }, - posts: 3560, - comments: 14573, + posts: 3566, + comments: 14629, }, openRegistrations: true, }, @@ -880,12 +880,12 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 1666, - posts: 3560, - comments: 14573, + users: 1669, + posts: 3566, + comments: 14629, communities: 19, - users_active_day: 32, - users_active_week: 80, + users_active_day: 33, + users_active_week: 79, users_active_month: 132, users_active_half_year: 326, }, @@ -904,12 +904,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 2534, + total: 2535, activeHalfyear: 218, - activeMonth: 117, + activeMonth: 111, }, - posts: 41165, - comments: 34296, + posts: 41203, + comments: 34344, }, openRegistrations: true, }, @@ -980,13 +980,13 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 2534, - posts: 41165, - comments: 34296, + users: 2535, + posts: 41203, + comments: 34344, communities: 249, - users_active_day: 55, - users_active_week: 77, - users_active_month: 117, + users_active_day: 21, + users_active_week: 68, + users_active_month: 111, users_active_half_year: 218, }, }, @@ -1004,12 +1004,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 367, + total: 369, activeHalfyear: 151, - activeMonth: 107, + activeMonth: 108, }, - posts: 167573, - comments: 18432, + posts: 169122, + comments: 18599, }, openRegistrations: true, }, @@ -1076,13 +1076,13 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 367, - posts: 167573, - comments: 18432, + users: 369, + posts: 169121, + comments: 18599, communities: 8, - users_active_day: 43, - users_active_week: 81, - users_active_month: 107, + users_active_day: 44, + users_active_week: 77, + users_active_month: 108, users_active_half_year: 151, }, }, @@ -1100,12 +1100,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 1805, + total: 1810, activeHalfyear: 260, - activeMonth: 106, + activeMonth: 104, }, - posts: 2865, - comments: 20136, + posts: 2879, + comments: 20312, }, openRegistrations: true, }, @@ -1178,13 +1178,13 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 1805, - posts: 2865, - comments: 20136, + users: 1810, + posts: 2879, + comments: 20312, communities: 57, - users_active_day: 23, - users_active_week: 57, - users_active_month: 106, + users_active_day: 32, + users_active_week: 61, + users_active_month: 104, users_active_half_year: 260, }, }, @@ -1203,11 +1203,11 @@ export const instance_stats = { usage: { users: { total: 927, - activeHalfyear: 137, - activeMonth: 62, + activeHalfyear: 135, + activeMonth: 61, }, posts: 3177, - comments: 30648, + comments: 30707, }, openRegistrations: false, }, @@ -1281,12 +1281,12 @@ export const instance_stats = { site_id: 1, users: 927, posts: 3177, - comments: 30648, + comments: 30707, communities: 41, - users_active_day: 23, - users_active_week: 44, - users_active_month: 62, - users_active_half_year: 137, + users_active_day: 20, + users_active_week: 43, + users_active_month: 61, + users_active_half_year: 135, }, }, version: "0.19.2", @@ -1305,10 +1305,10 @@ export const instance_stats = { users: { total: 9338, activeHalfyear: 71, - activeMonth: 44, + activeMonth: 43, }, - posts: 1952, - comments: 18724, + posts: 1953, + comments: 18783, }, openRegistrations: true, }, @@ -1380,12 +1380,12 @@ export const instance_stats = { counts: { site_id: 1, users: 9338, - posts: 1952, - comments: 18724, + posts: 1953, + comments: 18783, communities: 30, - users_active_day: 7, - users_active_week: 26, - users_active_month: 44, + users_active_day: 15, + users_active_week: 29, + users_active_month: 43, users_active_half_year: 71, }, }, @@ -1403,12 +1403,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 446, + total: 448, activeHalfyear: 74, - activeMonth: 32, + activeMonth: 33, }, - posts: 421, - comments: 3239, + posts: 425, + comments: 3276, }, openRegistrations: true, }, @@ -1477,13 +1477,13 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 446, - posts: 421, - comments: 3239, + users: 448, + posts: 425, + comments: 3276, communities: 5, users_active_day: 7, - users_active_week: 16, - users_active_month: 32, + users_active_week: 17, + users_active_month: 33, users_active_half_year: 74, }, }, @@ -1501,12 +1501,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 147, - activeHalfyear: 82, - activeMonth: 25, + total: 148, + activeHalfyear: 83, + activeMonth: 24, }, - posts: 569, - comments: 2223, + posts: 571, + comments: 2233, }, openRegistrations: true, }, @@ -1574,14 +1574,14 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 147, - posts: 569, - comments: 2223, + users: 148, + posts: 571, + comments: 2233, communities: 45, - users_active_day: 5, - users_active_week: 10, - users_active_month: 25, - users_active_half_year: 82, + users_active_day: 4, + users_active_week: 9, + users_active_month: 24, + users_active_half_year: 83, }, }, version: "0.19.3", @@ -1602,8 +1602,8 @@ export const instance_stats = { activeHalfyear: 56, activeMonth: 22, }, - posts: 3990, - comments: 17082, + posts: 4001, + comments: 17114, }, openRegistrations: true, }, @@ -1675,8 +1675,8 @@ export const instance_stats = { counts: { site_id: 1, users: 2271, - posts: 3990, - comments: 17082, + posts: 4001, + comments: 17114, communities: 36, users_active_day: 10, users_active_week: 16, @@ -1687,6 +1687,103 @@ export const instance_stats = { version: "0.19.3", }, }, + { + domain: "lemmy.autism.place", + node_info: { + version: "2.0", + software: { + name: "lemmy", + version: "0.19.3", + }, + protocols: ["activitypub"], + usage: { + users: { + total: 56, + activeHalfyear: 25, + activeMonth: 19, + }, + posts: 160, + comments: 1158, + }, + openRegistrations: true, + }, + site_info: { + site_view: { + site: { + id: 1, + name: "Autism Place", + sidebar: + "![](https://lemmy.autism.place/pictrs/image/57640621-2926-4864-9089-4a735dbb7034.webp)\n\n[What is Autism Place](https://lemmy.autism.place/post/4)?\n\n[Getting Started at Lemmy.Autism.Place - A Lemmy Guide](https://lemmy.autism.place/post/431)\n\nDonations\n\n* Autism.Place is personally financed by the admins. Please help contribute to server, domain name, and growth costs:\n\n* [Ko-fi](https://ko-fi.com/I2I7YU7DE)\n* [OpenCollective](https://opencollective.com/autismplace)\n* [Patreon](https://www.patreon.com/autismplace)\n\n\n\n[Instance Rules - Please Review.](https://lemmy.autism.place/post/2)\n\n[Our Matrix Chat.](https://matrix.to/#/#autism.place-verification:autism.place)\n\n[Guidelines for Moderators.](https://lemmy.autism.place/post/3)", + published: "2024-05-24T13:56:34.182510Z", + updated: "2024-08-15T12:42:43.069352Z", + icon: "https://lemmy.autism.place/pictrs/image/b8cb8a5b-2a07-4a73-ad0e-82a1de4a447c.webp", + description: + "A lemmy instance for autistic people and our allies based on the principle of autism acceptance.", + actor_id: "https://lemmy.autism.place/", + last_refreshed_at: "2024-05-24T13:56:34.179678Z", + inbox_url: "https://lemmy.autism.place/inbox", + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwNRFzAEgIqeqL+Bh8EcI\nMD3ZHPLA8ip64qw3bPNlVwMWH+mh3vRn+rJbryvdB6duk+jqECc5ZA72tKgamCqX\nNlub+zS+Dg6RyebxX95UIcm67omm4BiLxUqKh6XhEVUcz6hhXTOs0p2IjFSgKIma\ns8R8+h0fr8qhhlBdFc7Bdv42yeHtKWn+n741EQPdt+BEx+XFOwf9eugoyGLguoMk\ntLZQbr1B7B69KkxXVYoCxUilYuP+sb8tH5Ugma6lOlVtHrjL1aYr2rrfnjipAuIR\nx92IaZaZYEV6wBX75aRu0EPc/Tu/yn5gCet2AJm2MPyriI7OBGqVSP89AwQueXcc\n9QIDAQAB\n-----END PUBLIC KEY-----\n", + instance_id: 1, + }, + local_site: { + id: 1, + site_id: 1, + site_setup: true, + enable_downvotes: true, + enable_nsfw: true, + community_creation_admin_only: false, + require_email_verification: false, + application_question: + "Please answer the following questions honestly and concisely.\n\n1. Why do you want to join lemmy.autism.place?\n\n2. Are you a troll?\n\n3. What is your favorite things about autism or autistic people?\n\n4. How did you hear about autism.place?\n\nSignups may take up to 24 hrs for approval.", + private_instance: false, + default_theme: "browser", + default_post_listing_type: "Local", + hide_modlog_mod_names: true, + application_email_admins: true, + actor_name_max_length: 20, + federation_enabled: true, + captcha_enabled: false, + captcha_difficulty: "medium", + published: "2024-05-24T13:56:34.257467Z", + updated: "2024-08-15T12:42:43.070699Z", + registration_mode: "RequireApplication", + reports_email_admins: false, + federation_signed_fetch: false, + }, + local_site_rate_limit: { + local_site_id: 1, + message: 999, + message_per_second: 60, + post: 999, + post_per_second: 600, + register: 999, + register_per_second: 3600, + image: 999, + image_per_second: 3600, + comment: 999, + comment_per_second: 600, + search: 999, + search_per_second: 600, + published: "2024-05-24T13:56:34.258992Z", + import_user_settings: 1, + import_user_settings_per_second: 86400, + }, + counts: { + site_id: 1, + users: 56, + posts: 160, + comments: 1158, + communities: 11, + users_active_day: 6, + users_active_week: 9, + users_active_month: 19, + users_active_half_year: 25, + }, + }, + version: "0.19.3", + }, + }, { domain: "dormi.zone", node_info: { @@ -1699,11 +1796,11 @@ export const instance_stats = { usage: { users: { total: 1078, - activeHalfyear: 37, - activeMonth: 20, + activeHalfyear: 36, + activeMonth: 19, }, - posts: 925, - comments: 5186, + posts: 926, + comments: 5211, }, openRegistrations: true, }, @@ -1776,110 +1873,13 @@ export const instance_stats = { counts: { site_id: 1, users: 1078, - posts: 925, - comments: 5186, + posts: 926, + comments: 5211, communities: 4, - users_active_day: 8, + users_active_day: 10, users_active_week: 14, - users_active_month: 20, - users_active_half_year: 37, - }, - }, - version: "0.19.3", - }, - }, - { - domain: "lemmy.autism.place", - node_info: { - version: "2.0", - software: { - name: "lemmy", - version: "0.19.3", - }, - protocols: ["activitypub"], - usage: { - users: { - total: 55, - activeHalfyear: 25, - activeMonth: 19, - }, - posts: 156, - comments: 1124, - }, - openRegistrations: true, - }, - site_info: { - site_view: { - site: { - id: 1, - name: "Autism Place", - sidebar: - "![](https://lemmy.autism.place/pictrs/image/57640621-2926-4864-9089-4a735dbb7034.webp)\n\n[What is Autism Place](https://lemmy.autism.place/post/4)?\n\n[Getting Started at Lemmy.Autism.Place - A Lemmy Guide](https://lemmy.autism.place/post/431)\n\nDonations\n\n* Autism.Place is personally financed by the admins. Please help contribute to server, domain name, and growth costs:\n\n* [Ko-fi](https://ko-fi.com/I2I7YU7DE)\n* [OpenCollective](https://opencollective.com/autismplace)\n* [Patreon](https://www.patreon.com/autismplace)\n\n\n\n[Instance Rules - Please Review.](https://lemmy.autism.place/post/2)\n\n[Our Matrix Chat.](https://matrix.to/#/#autism.place-verification:autism.place)\n\n[Guidelines for Moderators.](https://lemmy.autism.place/post/3)", - published: "2024-05-24T13:56:34.182510Z", - updated: "2024-08-15T12:42:43.069352Z", - icon: "https://lemmy.autism.place/pictrs/image/b8cb8a5b-2a07-4a73-ad0e-82a1de4a447c.webp", - description: - "A lemmy instance for autistic people and our allies based on the principle of autism acceptance.", - actor_id: "https://lemmy.autism.place/", - last_refreshed_at: "2024-05-24T13:56:34.179678Z", - inbox_url: "https://lemmy.autism.place/inbox", - public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwNRFzAEgIqeqL+Bh8EcI\nMD3ZHPLA8ip64qw3bPNlVwMWH+mh3vRn+rJbryvdB6duk+jqECc5ZA72tKgamCqX\nNlub+zS+Dg6RyebxX95UIcm67omm4BiLxUqKh6XhEVUcz6hhXTOs0p2IjFSgKIma\ns8R8+h0fr8qhhlBdFc7Bdv42yeHtKWn+n741EQPdt+BEx+XFOwf9eugoyGLguoMk\ntLZQbr1B7B69KkxXVYoCxUilYuP+sb8tH5Ugma6lOlVtHrjL1aYr2rrfnjipAuIR\nx92IaZaZYEV6wBX75aRu0EPc/Tu/yn5gCet2AJm2MPyriI7OBGqVSP89AwQueXcc\n9QIDAQAB\n-----END PUBLIC KEY-----\n", - instance_id: 1, - }, - local_site: { - id: 1, - site_id: 1, - site_setup: true, - enable_downvotes: true, - enable_nsfw: true, - community_creation_admin_only: false, - require_email_verification: false, - application_question: - "Please answer the following questions honestly and concisely.\n\n1. Why do you want to join lemmy.autism.place?\n\n2. Are you a troll?\n\n3. What is your favorite things about autism or autistic people?\n\n4. How did you hear about autism.place?\n\nSignups may take up to 24 hrs for approval.", - private_instance: false, - default_theme: "browser", - default_post_listing_type: "Local", - hide_modlog_mod_names: true, - application_email_admins: true, - actor_name_max_length: 20, - federation_enabled: true, - captcha_enabled: false, - captcha_difficulty: "medium", - published: "2024-05-24T13:56:34.257467Z", - updated: "2024-08-15T12:42:43.070699Z", - registration_mode: "RequireApplication", - reports_email_admins: false, - federation_signed_fetch: false, - }, - local_site_rate_limit: { - local_site_id: 1, - message: 999, - message_per_second: 60, - post: 999, - post_per_second: 600, - register: 999, - register_per_second: 3600, - image: 999, - image_per_second: 3600, - comment: 999, - comment_per_second: 600, - search: 999, - search_per_second: 600, - published: "2024-05-24T13:56:34.258992Z", - import_user_settings: 1, - import_user_settings_per_second: 86400, - }, - counts: { - site_id: 1, - users: 55, - posts: 156, - comments: 1124, - communities: 11, - users_active_day: 5, - users_active_week: 9, users_active_month: 19, - users_active_half_year: 25, + users_active_half_year: 36, }, }, version: "0.19.3", @@ -1972,7 +1972,7 @@ export const instance_stats = { comments: 28, communities: 11, users_active_day: 0, - users_active_week: 8, + users_active_week: 7, users_active_month: 17, users_active_half_year: 23, }, @@ -1991,12 +1991,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 269, + total: 270, activeHalfyear: 30, - activeMonth: 13, + activeMonth: 12, }, - posts: 225, - comments: 1577, + posts: 226, + comments: 1596, }, openRegistrations: true, }, @@ -2064,13 +2064,13 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 269, - posts: 225, - comments: 1577, + users: 270, + posts: 226, + comments: 1596, communities: 14, - users_active_day: 3, - users_active_week: 9, - users_active_month: 13, + users_active_day: 7, + users_active_week: 10, + users_active_month: 12, users_active_half_year: 30, }, }, @@ -2089,11 +2089,11 @@ export const instance_stats = { usage: { users: { total: 437, - activeHalfyear: 39, + activeHalfyear: 40, activeMonth: 12, }, - posts: 361, - comments: 2128, + posts: 363, + comments: 2129, }, openRegistrations: true, }, @@ -2163,13 +2163,13 @@ export const instance_stats = { counts: { site_id: 1, users: 437, - posts: 361, - comments: 2128, + posts: 363, + comments: 2129, communities: 43, - users_active_day: 2, + users_active_day: 3, users_active_week: 6, users_active_month: 12, - users_active_half_year: 39, + users_active_half_year: 40, }, }, version: "0.19.3", @@ -2188,10 +2188,10 @@ export const instance_stats = { users: { total: 58, activeHalfyear: 22, - activeMonth: 9, + activeMonth: 8, }, - posts: 218, - comments: 459, + posts: 219, + comments: 460, }, openRegistrations: true, }, @@ -2260,12 +2260,12 @@ export const instance_stats = { counts: { site_id: 1, users: 58, - posts: 218, - comments: 459, + posts: 219, + comments: 460, communities: 26, - users_active_day: 2, + users_active_day: 0, users_active_week: 4, - users_active_month: 9, + users_active_month: 8, users_active_half_year: 22, }, }, @@ -2283,12 +2283,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 309, + total: 310, activeHalfyear: 15, activeMonth: 8, }, posts: 9681, - comments: 24096, + comments: 24098, }, openRegistrations: true, }, @@ -2355,11 +2355,11 @@ export const instance_stats = { }, counts: { site_id: 1, - users: 309, + users: 310, posts: 9681, - comments: 24096, + comments: 24098, communities: 226, - users_active_day: 2, + users_active_day: 0, users_active_week: 2, users_active_month: 8, users_active_half_year: 15, @@ -2383,8 +2383,8 @@ export const instance_stats = { activeHalfyear: 9, activeMonth: 7, }, - posts: 1656, - comments: 4697, + posts: 1658, + comments: 4720, }, openRegistrations: true, }, @@ -2459,8 +2459,8 @@ export const instance_stats = { counts: { site_id: 1, users: 40, - posts: 1656, - comments: 4697, + posts: 1658, + comments: 4720, communities: 11, users_active_day: 2, users_active_week: 4, @@ -2472,7 +2472,7 @@ export const instance_stats = { }, }, { - domain: "sffa.community", + domain: "lemmy.whynotdrs.org", node_info: { version: "2.0", software: { @@ -2482,12 +2482,12 @@ export const instance_stats = { protocols: ["activitypub"], usage: { users: { - total: 340, - activeHalfyear: 14, + total: 894, + activeHalfyear: 46, activeMonth: 7, }, - posts: 539, - comments: 2232, + posts: 829, + comments: 3455, }, openRegistrations: true, }, @@ -2495,18 +2495,21 @@ export const instance_stats = { site_view: { site: { id: 1, - name: "SFFA", + name: "DRSGME/WhyDRS Lemmy", sidebar: - "Welcome to The Science-Fiction Fantasy Alliance, a Lemmy hub for all forms of media related to science-fiction and fantasy from critically acclaimed published books to indie games you can only get if you know the secret handshake.\n\n#### Site Rules\n\n1. Be respectful of others and remember the human.\n2. No links to piracy software or websites.\n3. All NSFW content should be in NSFW communities and flagged as NSFW properly.\n4. No brigading.\n5. No hate speech, intolerance of protected classes, etc. This community is LGBTQ+ safe.\n\n#### Registration\nRegistration is open to anyone to create a verified account. Please check your spam/junk folder if you don’t seem to get the verification email.\n\n#### Discord\nYou can also join us on [Discord](https://discord.gg/sffa-959795934240309248) for real-time chat about all things SFF.", - published: "2023-06-17T18:49:31.949987Z", - updated: "2023-09-28T01:57:12.144701Z", - icon: "https://sffa.community/pictrs/image/3f94bbd3-13af-4181-80f4-ab4e8336dd2e.png", - description: "The Science-Fiction Fantasy Alliance", - actor_id: "https://sffa.community/", - last_refreshed_at: "2023-06-17T18:50:43.567898Z", - inbox_url: "https://sffa.community/inbox", + "The same admin team maintaining this Lemmy also maintains:\n\n[DRSGME.org](https://www.drsgme.org)\n\n[WhyDRS.org](https://www.whydrs.org)\n\n[Computershared.net](https://www.computershared.net/)\n\n[DRS Discord](https://mee6.xyz/i/xyGz2buGJR)\n\nThese online libraries and resources are great for further reading:\n\n[The Ape's Guide to Lemmy](https://lemmy.whynotdrs.org/post/33703)\n\n[Due Diligence Library](https://fliphtml5.com/bookcase/kosyg)\n\nReddit Historical Archives\n\n[Ihsoyct's Reddit Archive](https://ihsoyct.github.io/index.html?mode=submissions&subreddit=&sort_type=created_utc&sort=desc&limit=100&after=&before=&author=&score=&num_comments=&q=)\n\n[Ape Historian's PowerBi Directory](https://app.powerbi.com/view?r=eyJrIjoiMDljZTA3NGUtMjJiYS00YjQwLTk5MTktM2VlNWQ5ODViYjM5IiwidCI6IjI4YzVlNGJkLTVkNmMtNGI1OS1hMGU5LTBhMjQ0Mzk4OTNiZSJ9)", + published: "2023-06-13T06:18:58.759601Z", + updated: "2023-12-12T00:51:53.819789Z", + icon: "https://lemmy.whynotdrs.org/pictrs/image/999f1fd3-ca64-4304-a7b7-b647bc7c0bdd.webp", + banner: + "https://lemmy.whynotdrs.org/pictrs/image/9844bf8b-8ddd-4170-9f7c-4b29b3a4b6ea.jpeg", + description: + "GameStop, US stock markets, direct registration, holding Wall Street accountable, and more", + actor_id: "https://lemmy.whynotdrs.org/", + last_refreshed_at: "2023-06-13T06:18:58.755314Z", + inbox_url: "https://lemmy.whynotdrs.org/inbox", public_key: - "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw05MrJvz/LKywN+vkIEA\nCGXvsNXoE5GCgYuI4P5bDB5Wul3xYzrXfoWynmo7Im/6O9iePozXkptb8GZg1XDS\nUqOWSFIgVBsNn+PSBpqzzeFai0UAVqdwKfXMhZuGKjLipSbnbzxbEi+uSL1xDAGV\nVkuBGmEzxGCWNU5a4xaUVCmFbkyYlfMBeDWszKWqFtJsmFg3avmpElGeGCR8JhsQ\nH/1D9x77nIIsll/LZeW7N75fF+viZCVij4WCxt8BjTy5qdNSy7UPIWqXJKDonrLU\n/9wMG/JsUHIotQkeQrHadAuKLSImJ75WTKza8PXt1VNC7M1s6y1TKMSbcHtPzGhh\n7wIDAQAB\n-----END PUBLIC KEY-----\n", + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqTXuTiLadnoylwpnSDQp\npNXfY6Hw2ckWaeR0zx0QY8krI7vdlHM8MRKatGMPtxsgev0FkMFF6yeN46q3Tcz2\n1eJqU/0BQvlwCKs8LoYS53Z1ReMCXJLezBjAYvT5KV7HAxXWBFrfhTAoBL5Sf5Gm\nQOsQTqW0CcYZuEXcQ6zPVLVAlCpRPKRAFJ98Kn567+z2ORBafEhwfSslDoEVKcL+\nRImjBWyWdWL51nHfS3U2pxJd/c+N7BS2qGV9VZPV3WTqrhHcjBpcBsKHUOp+XHWZ\nhiMkI8r3xXUmNmkMErkhKVfVRS9hwMXPsDk+0Bb28dV7uH8sDItEATWzK1db296Z\nKwIDAQAB\n-----END PUBLIC KEY-----\n", instance_id: 1, }, local_site: { @@ -2515,23 +2518,25 @@ export const instance_stats = { site_setup: true, enable_downvotes: true, enable_nsfw: true, - community_creation_admin_only: true, - require_email_verification: true, + community_creation_admin_only: false, + require_email_verification: false, application_question: - "to verify that you are human, please explain why you want to create an account on this site", + 'Please read and understand our instance policies before signing up: https://lemmy.whynotdrs.org/post/1209\n\nTLDR: Treat *everything* you submit to this instance as public\n\nOnce you are approved, you may want to create a post in the "Introductions" community.\n\nType "ok" below to acknowledge. Optional: What would you like to freely discuss on this instance?\n\nOnce submitted, please wait for approval before attempting to login. We typically approve submissions within 12 hours, so please check back and you\'ll be able to get started. If you are not able to login or having issues trying to register, please reach out to us on [Discord](https://mee6.xyz/i/xyGz2buGJR) and post in the #lemmy channel.', private_instance: false, default_theme: "browser", default_post_listing_type: "Local", - hide_modlog_mod_names: true, - application_email_admins: true, + legal_information: + "Please read and understand our instance policies before signing up: https://lemmy.whynotdrs.org/post/1209\n\nTreat *everything* you submit to this instance as public.", + hide_modlog_mod_names: false, + application_email_admins: false, actor_name_max_length: 20, federation_enabled: true, captcha_enabled: true, captcha_difficulty: "medium", - published: "2023-06-17T18:49:32.066970Z", - updated: "2023-09-28T01:57:12.145940Z", - registration_mode: "Open", - reports_email_admins: true, + published: "2023-06-13T06:18:58.879767Z", + updated: "2023-12-12T00:51:53.886368Z", + registration_mode: "RequireApplication", + reports_email_admins: false, federation_signed_fetch: false, }, local_site_rate_limit: { @@ -2548,20 +2553,20 @@ export const instance_stats = { comment_per_second: 600, search: 999, search_per_second: 600, - published: "2023-06-17T18:49:32.070980Z", + published: "2023-06-13T06:18:58.882765Z", import_user_settings: 1, import_user_settings_per_second: 86400, }, counts: { site_id: 1, - users: 340, - posts: 539, - comments: 2232, - communities: 17, - users_active_day: 2, + users: 894, + posts: 829, + comments: 3455, + communities: 18, + users_active_day: 1, users_active_week: 2, users_active_month: 7, - users_active_half_year: 14, + users_active_half_year: 46, }, }, version: "0.19.3", @@ -2655,8 +2660,8 @@ export const instance_stats = { posts: 140, comments: 80, communities: 13, - users_active_day: 2, - users_active_week: 4, + users_active_day: 3, + users_active_week: 3, users_active_month: 6, users_active_half_year: 12, }, @@ -2664,12 +2669,109 @@ export const instance_stats = { version: "0.19.3", }, }, + { + domain: "sffa.community", + node_info: { + version: "2.0", + software: { + name: "lemmy", + version: "0.19.3", + }, + protocols: ["activitypub"], + usage: { + users: { + total: 342, + activeHalfyear: 14, + activeMonth: 6, + }, + posts: 539, + comments: 2233, + }, + openRegistrations: true, + }, + site_info: { + site_view: { + site: { + id: 1, + name: "SFFA", + sidebar: + "Welcome to The Science-Fiction Fantasy Alliance, a Lemmy hub for all forms of media related to science-fiction and fantasy from critically acclaimed published books to indie games you can only get if you know the secret handshake.\n\n#### Site Rules\n\n1. Be respectful of others and remember the human.\n2. No links to piracy software or websites.\n3. All NSFW content should be in NSFW communities and flagged as NSFW properly.\n4. No brigading.\n5. No hate speech, intolerance of protected classes, etc. This community is LGBTQ+ safe.\n\n#### Registration\nRegistration is open to anyone to create a verified account. Please check your spam/junk folder if you don’t seem to get the verification email.\n\n#### Discord\nYou can also join us on [Discord](https://discord.gg/sffa-959795934240309248) for real-time chat about all things SFF.", + published: "2023-06-17T18:49:31.949987Z", + updated: "2023-09-28T01:57:12.144701Z", + icon: "https://sffa.community/pictrs/image/3f94bbd3-13af-4181-80f4-ab4e8336dd2e.png", + description: "The Science-Fiction Fantasy Alliance", + actor_id: "https://sffa.community/", + last_refreshed_at: "2023-06-17T18:50:43.567898Z", + inbox_url: "https://sffa.community/inbox", + public_key: + "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw05MrJvz/LKywN+vkIEA\nCGXvsNXoE5GCgYuI4P5bDB5Wul3xYzrXfoWynmo7Im/6O9iePozXkptb8GZg1XDS\nUqOWSFIgVBsNn+PSBpqzzeFai0UAVqdwKfXMhZuGKjLipSbnbzxbEi+uSL1xDAGV\nVkuBGmEzxGCWNU5a4xaUVCmFbkyYlfMBeDWszKWqFtJsmFg3avmpElGeGCR8JhsQ\nH/1D9x77nIIsll/LZeW7N75fF+viZCVij4WCxt8BjTy5qdNSy7UPIWqXJKDonrLU\n/9wMG/JsUHIotQkeQrHadAuKLSImJ75WTKza8PXt1VNC7M1s6y1TKMSbcHtPzGhh\n7wIDAQAB\n-----END PUBLIC KEY-----\n", + instance_id: 1, + }, + local_site: { + id: 1, + site_id: 1, + site_setup: true, + enable_downvotes: true, + enable_nsfw: true, + community_creation_admin_only: true, + require_email_verification: true, + application_question: + "to verify that you are human, please explain why you want to create an account on this site", + private_instance: false, + default_theme: "browser", + default_post_listing_type: "Local", + hide_modlog_mod_names: true, + application_email_admins: true, + actor_name_max_length: 20, + federation_enabled: true, + captcha_enabled: true, + captcha_difficulty: "medium", + published: "2023-06-17T18:49:32.066970Z", + updated: "2023-09-28T01:57:12.145940Z", + registration_mode: "Open", + reports_email_admins: true, + federation_signed_fetch: false, + }, + local_site_rate_limit: { + local_site_id: 1, + message: 999, + message_per_second: 60, + post: 999, + post_per_second: 600, + register: 999, + register_per_second: 3600, + image: 999, + image_per_second: 3600, + comment: 999, + comment_per_second: 600, + search: 999, + search_per_second: 600, + published: "2023-06-17T18:49:32.070980Z", + import_user_settings: 1, + import_user_settings_per_second: 86400, + }, + counts: { + site_id: 1, + users: 342, + posts: 539, + comments: 2233, + communities: 17, + users_active_day: 3, + users_active_week: 3, + users_active_month: 6, + users_active_half_year: 14, + }, + }, + version: "0.19.3", + }, + }, ], }, recommended: { start_scan_instances: [ "lemmy.ml", "lemm.ee", + "lemmy.world", "feddit.it", "lemmygrad.ml", "reddthat.com", @@ -2692,7 +2794,6 @@ export const instance_stats = { "lemmy.comfysnug.space", "rqd2.net", "test.hexbear.net", - "lemmy.world", ], }, };