SomethingWentWrong

joined 10 months ago
[–] SomethingWentWrong@lemmy.ca 2 points 15 hours ago

Ah cool, I wasn't aware of dbzero’s Fediseer. Looks like a good way to identify problematic instances to block.

I'm just an end user of lemmy trying to use it more and went down a rabbit hole about blocked instances when I came across something that impacted me.

[–] SomethingWentWrong@lemmy.ca 2 points 18 hours ago (2 children)

Thanks for the context.

Your the request/intent to join link doesn't appear to go where it should be.

Email has been doing the "whack-a-mole" battle with spammers for a long time and have tools like https://www.spamhaus.org/blocklists/ to quickly block the latest bad actor.

The Fediverse will likely need to do something similar in identifying and quickly blocking bad actors.

[–] SomethingWentWrong@lemmy.ca 1 points 19 hours ago

shell commands to gather data about blocked instances across multiple lemmy servers

# create an empty directory to work in to avoid clutter
# suggest running this to create a directory for today's date:
DATE=`date +%Y-%m-%d`; mkdir $DATE; cd $DATE

# loop through list of lemmy servers to download json files of blocked instances
# and extract the blocked domains to a txt file
for site in lemmy.ca lemmy.ml lemmy.world lemmy.zip sh.itjust.works
do
  echo $site
  site_base_fname=`echo $site | tr \. _`
  curl -s --request GET \
     --url https://$site/api/v3/federated_instances?kind=blocked \
     --header 'accept: application/json' > blocked_${site_base_fname}.json
  cat blocked_${site_base_fname}.json | jq -r '.federated_instances.blocked.[].domain' | sort -u > blocked_${site_base_fname}.txt
done

# number of common blocked instances for both lemmy.ca and sh.itjust.works
comm -1 -2 blocked_lemmy_ca.txt blocked_sh_itjust_works.txt | wc

# instances only blocked on lemmy.ca but not on sh.itjust.works
comm -2 -3 blocked_lemmy_ca.txt blocked_sh_itjust_works.txt > only_blocked_for_lemmy_ca.txt

# instances only blocked on sh.itjust.works but not on lemmy.ca
comm -1 -3 blocked_lemmy_ca.txt blocked_sh_itjust_works.txt > only_blocked_for_sh_itjust_works.txt

# instances blocked across at least two lemmy servers
# h/t DDG Search Assist AI
awk '{instances[$0]++} END { for (instance in instances) {if(instances[instance]>1) {print instances[instance], instance }}}' blocked*.txt | sort -k1,1nr -k2,2

# instances blocked on at least one lemmy server
awk '{instances[$0]++} END { for (instance in instances) { print instances[instance], instance }}' blocked*.txt | sort -k1,1nr -k2,2
[–] SomethingWentWrong@lemmy.ca 1 points 19 hours ago

Instances blocked for sh.itjust.works but not lemmy.ca

9kb.me
aethy.com
archaeology.social
beehaw.org
besties.com
bigballchunkyverse.online
bondsdogs.com
botsin.space
bunnyanarchy.org
channels.im
cherryberry.pink
cryptodon.lol
cum.salon
cunnyborea.top
dubvee.org
eda.social
educhat.social
forum-lucifer.com
fun.with.kyun.li
groupsebelah.com
h5q.net
imouto.pics
jenny.nya.pub
kbin.burggit.moe
kernkraft.social
kids.0px.io
kitsui.life
kokuusa.club
kommunismus.social
lawsocial.org
lemmy.byrdcrouse.com
lemmy.fediverse.jp
lemmy.nebtown.info
lemmy.staphup.nl
lolison.top
m.corduba.tech
masost.one
mastadon.astuto.cc
mastodon-ero.xyz
mastodon.integrata-stiftung.de
mastodon.snmsoc.org
mastodon.svgun.ru
mentalhealth-masto.com
mirr0r.city
misskey.doujin.games
mitra.anon-kenkai.com
moar.cachapa.xyz
mstdn.business
mstdn.jp
nasface.cz
neuroscience-mastodon.com
niederbayern.social
nnia.space
owo.town
pedo.school
posting.lolicon.rocks
puls.social
red.computersforpeace.net
redlemmy.com
scfzfilm.org
seda.social
sfw.community
shota.house
social.cutefunny.net
social.tcpcat.net
startrekshitposting.com
tambayan.us
thoughtful.social
transforthe.win
waterlily.tokyo
youjo.love
[–] SomethingWentWrong@lemmy.ca 1 points 19 hours ago

Instances blocked for lemmy.ca but not sh.itjust.works

alien.top
annihilation.social
api.clubsall.com
baomi.tv
bbs.9tail.net
bbs.darkwitch.net
bolha.social
clatter.eu
clubsall-api.appcafe.workers.dev
clubsall-api.renchesterjramos.workers.dev
clubsall-api2.appcafe.workers.dev
clubsall-api2.renchesterjramos.workers.dev
clubsall-api3.renchesterjramos.workers.dev
clubsall-api4.renchesterjramos.workers.dev
clubsall.com
cubing.social
cum.estate
cunnyborea.space
decayable.ink
demotheque.com
detroitriotcity.com
dot.surf
enterprise.lemmy.ml
eveningzoo.club
fasheng.ing
freeatlantis.com
freespeechextremist.com
gameliberty.club
granitestate.social
http://api.clubsall.com/
lemmit.online
lemmy-mormonsatan-u23030.vm.elestio.app
lemmy.almostadatacenter.social
lemmy.cloudsecurityofficehours.com
lemmy.easfrq.live
lemmy.fedi.bub.org
lemmy.fyi
lemmy.jtmn.dev
lemmy.org
lemmy.podycust.co.uk
lemmy.primboard.de
lemmy.shwizard.chat
lemmy.tedomum.net
mindshare.space
news.deghg.org
nicecrew.digital
nightshift.social
noauthority.social
oceanbreeze.earth
poa.st
pravda.me
rebased.social
rebelbase.site
shitposter.world
thediscussion.site
tummy.town
ussr.win
veenk.help
voyager.lemmy.ml
wolfballs.com
wumbo.buzz
 

lemmit.online is currently allowed on sh.itjust.works but blocked on lemmy.ca so I looked into it a bit deeper and found there are other differences between the list of sitewide blocked instances for each server.

I'm bringing this to your attention as a low priority background task request to review the differences and see whether the instance in question should be blocked on both sites or allowed for each since they are both fedecan sites.

Here are some stats about the blocked instances:

  • 90 instances are blocked on lemmy.ca
  • 100 instances are blocked on sh.itjust.works
  • 29 blocked instances are common between lemmy.ca and sh.itjust.works
  • 61 instances are blocked only for lemmy.ca but not on sh.itjust.works
  • 71 instances are blocked only for sh.itjust.works but not on lemmy.ca

I'll post in some comments to this post the list of instances blocked on only one of the two fedecan owned lemmy servers and the shell commands I used to gather the data.

[–] SomethingWentWrong@lemmy.ca 2 points 20 hours ago (1 children)

I posted https://lemmy.ca/post/69414850 in the main community about whether to unblock lemmit.online and the comments are mostly negative.

Was a little journey of exploration as while most peer lemmy servers don't block that instance many of them have banned the bot@lemmit.online user based on lack of recent posts.

[–] SomethingWentWrong@lemmy.ca 2 points 22 hours ago

Thanks for the information!

Need to be an admin on a lemmy server to view the banned users using the lemmy API:

https://lemmy.ca/api/v3/user/banned

https://lemmy.zip/api/v3/user/banned

Looking at https://lemmy.zip/u/bot@lemmit.online I see the last post was 10 months ago so it looks like it was banned around then.

So instead of just looking at whether the lemmit.online instance is/isn't blocked but looking if there are recent posts from bot@lemmit.online across the top 10 lemmy servers I see:

lemmy.world        ❌
lemmy.ml           ❌
sh.itjust.works    ❌
lemmy.dbzer0.com   ✅
lemmy.ca           ❌
programming.dev    ✅
lemmy.zip          ❌
lemmy.blahaj.zone  ❓
ttrpg.network      ✅
lemmy.one          ✅
 

lemmit.online is a controversial lemmy server since its sole purpose is to run a bot that mirrors reddit posts to lemmy. Previous discussion 3 years ago about whether to block it: https://lemmy.ca/post/1380644

Currently it is blocked from lemmy.ca and I would like to unblock it to ease weaning off reddit gradually. If I can use lemmy.ca as my main site with links off to reddit on occassion I don't need to use reddit anymore to browse but just drop in for a specific post of interest.

The main complaint is it can fill up the all category with high volume of low interaction posts. This can be dealt with on a per user basis by blocking either the lemmit.online instance or blocking the bot@lemmit.online user.

Looking at the top 10 lemmy instances on https://fedidb.com/software/lemmy here's who allows or blocks the lemmit.online instance:

lemmy.world        ✅
lemmy.ml           ✅
sh.itjust.works    ✅
lemmy.dbzer0.com   ✅
lemmy.ca           ❌
programming.dev    ✅
lemmy.zip          ✅
lemmy.blahaj.zone  ❓
ttrpg.network      ✅
lemmy.one          ✅
[–] SomethingWentWrong@lemmy.ca 13 points 2 days ago

That article was painful to read about some people's lack of critical thinking skills. There exist people who believe only Donald Trump can save them from the Epstein class of global elites!!?? 🤯

When the separatist leaders were meeting (plotting) with the American State Department in a SCIF didn't they say they would get $500 Billion if Alberta became independent? And then in the future if an independent Alberta would join the USA it would make more sense for Alberta to become an American Territory rather than a State?

So their end goal is to become a future Norte Rico.

 

From a lemmy user perspective I find the Linked Instances and Blocked Instances lists to be annoying to view when there are large numbers of instances. Could these be sorted in alphabetical order?

Also for the Blocked Instances can a short comment field be added so that when a lemmy admin blocks an instance from their site they can enter a reason why it is being blocked which can be shown to users?

[–] SomethingWentWrong@lemmy.ca 2 points 2 days ago

Here's a suggested starting point for contents:

Sitewide Blocked Instances

lemmy.ca blocks instances at a sitewide basis due to them having inappropriate content. The list of blocked instances can be viewed at:

https://lemmy.ca/instances

Discussion about blocked instances of note:

 

Please add a new section under "for Users" in https://fedecan.ca/en/guide/threadiverse/overview about the lemmy.ca sitewide blocked instances and reasons. Don't need to list the reason for every single blocked instance but can call out the more noteworthy ones that had a discussion.

Why I'm asking for this is I was trying to subscribe to some communities from lemmit.online but was getting a terse and confusing error. It took a bit of digging to see it was intentionally blocked from lemmy.ca and the reason why.

 

B.C. Premier David Eby says the entire province is now under a state of emergency as crews grapple with dozens of out-of-control wildfires that have forced thousands of people to evacuate.

https://www.cbc.ca/lite/story/9.7300648

[–] SomethingWentWrong@lemmy.ca 4 points 1 week ago

The BC Provincial government has declared a province wide state of emergency:

https://www.cbc.ca/lite/story/9.7300648

B.C. Premier David Eby says the entire province is now under a state of emergency as crews grapple with dozens of out-of-control wildfires that have forced thousands of people to evacuate.

[–] SomethingWentWrong@lemmy.ca 7 points 1 week ago (1 children)

Funny coincidence in timing, I lurk in the onguardforthee subreddit and was just searching to see if it existed on lemmy.ca.

Let's see how this goes. 🤞

[–] SomethingWentWrong@lemmy.ca 7 points 4 weeks ago

There's a lot of emotional hot wind coming from the USA. Canada is responding with a cool non-emotional breeze using facts and figures.

 

There's been some contradictory messages recently from the Trump administration regarding Canada's efforts in fighting wildfires. Minister Eleanor Olszewski has issued a statement in response:

July 15, 2026

Statement by U.S. Ambassador to Canada Pete Hoekstra on the Wildfire Situation in Canada

https://ca.usembassy.gov/statement-by-u-s-ambassador-to-canada-pete-hoekstra-on-the-wildfire-situation-in-canada/

I commend the outstanding cooperation between the United States and Canada as we confront these fires together. Our two governments are monitoring and sharing information in real time – coordination that reflects our partnership at its best.

July 17, 2026

Truth Social post by US President Donald Trump

https://trumpstruth.org/statuses/40097

We are holding Canada responsible for the fact that they are not properly maintaining their Forests, and Brush therein, and the United States is being unnecessarily invaded by filthy, polluted, and unhealthy air, the quality of which is dangerous, and totally unacceptable!

July 18, 2026

Statement from Eleanor Olszewski, the Candian Minister of Emergency Management and Community Resilience

https://xcancel.com/EleanorO_MP/status/2078272691723719014

Canada and the United States have a long history of working together to fight wildfires on both sides of the border - it is a history that both countries benefit from and that we are building on during this challenging wildfire season.

[...]

Since 2020, Canada has invested $12 billion in forests sustainability and fire prevention. Further we are strengthening emergency managment capacity, federal emergency coordination, and civilian response capacity.

Provinces and territories are also stepping up. For example, Alberta and Ontario are together investing over $1 billion this year to expand their firefighting aircraft fleets.

This is a challenge that knows no borders, and Canada is working with speed, collaboration, and coordination to keep people safe.

 

There are 9 referendum questions which is unusual. Normally referendums have 1 important question instead of flooding the zone.

I'll limit my focus to question 5:

  1. Do you support the Government of Alberta introducing a law requiring individuals to provide proof of citizenship, such as a passport, birth certificate, or citizenship card, to vote in an Alberta provincial election?

The Alberta government is working on a solution to a non-problem. Following in MAGA's footsteps on this issue. There is very little voter fraud with our current system of voters lists and wide range of acceptable ID. Adding more hurdles is an attempt to tip the balance against voters who don't have one of the now limited list of accepted ID.

 

CTV video on Youtube where Thomas Lukaszuk announces the count of collected signatures to be sent to Elections Alberta for verification for a referendum.

https://www.youtube.com/watch?v=7szMqzGWGDI

They needed 296,000 and got over 456,000 signatures.

The referendum question is:

“Do you agree that Alberta should remain within Canada?”

 

Ontario Premier Doug Ford is very car-brained and really, really hates bike lanes. His base is in the suburbs of Toronto and anything that impedes cars gets him wound up. He wants to rip out recently created bike lanes in Toronto. He also banned speed cameras as they were working as intended. 🤷

He also has another proposal for an expensive tunnel to go under a busy freeway: https://www.cbc.ca/news/canada/toronto/doug-ford-hwy-401-tunnel-campaign-promise-1.7453508

"These hard working families, they just want to get to work, get to soccer practice after work, get home, without the headache of bumper-to-bumper traffic from one end of the 401 to the other."

view more: next ›