this post was submitted on 10 Jan 2025
36 points (100.0% liked)

Mildly Infuriating

36279 readers
1773 users here now

Home to all things "Mildly Infuriating" Not infuriating, not enraging. Mildly Infuriating. All posts should reflect that.

I want my day mildly ruined, not completely ruined. Please remember to refrain from reposting old content. If you post a post from reddit it is good practice to include a link and credit the OP. I'm not about stealing content!

It's just good to get something in this website for casual viewing whilst refreshing original content is added overtime.


Rules:

1. Be Respectful


Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.

Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.

...


2. No Illegal Content


Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.

That means: -No promoting violence/threats against any individuals

-No CSA content or Revenge Porn

-No sharing private/personal information (Doxxing)

...


3. No Spam


Posting the same post, no matter the intent is against the rules.

-If you have posted content, please refrain from re-posting said content within this community.

-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.

-No posting Scams/Advertisements/Phishing Links/IP Grabbers

-No Bots, Bots will be banned from the community.

...


4. No Porn/ExplicitContent


-Do not post explicit content. Lemmy.World is not the instance for NSFW content.

-Do not post Gore or Shock Content.

...


5. No Enciting Harassment,Brigading, Doxxing or Witch Hunts


-Do not Brigade other Communities

-No calls to action against other communities/users within Lemmy or outside of Lemmy.

-No Witch Hunts against users/communities.

-No content that harasses members within or outside of the community.

...


6. NSFW should be behind NSFW tags.


-Content that is NSFW should be behind NSFW tags.

-Content that might be distressing should be kept behind NSFW tags.

...


7. Content should match the theme of this community.


-Content should be Mildly infuriating.

-The Community !actuallyinfuriating has been born so that's where you should post the big stuff.

...


8. Reposting of Reddit content is permitted, try to credit the OC.


-Please consider crediting the OC when reposting content. A name of the user or a link to the original post is sufficient.

...

...


Also check out:

Partnered Communities:

1.Lemmy Review

2.Lemmy Be Wholesome

3.Lemmy Shitpost

4.No Stupid Questions

5.You Should Know

6.Credible Defense


Reach out to LillianVS for inclusion on the sidebar.

All communities included on the sidebar are to be made in compliance with the instance rules.

founded 2 years ago
MODERATORS
 

A couple of days ago i noticed something off with blahaj.zone. I couldn't see images posted by users on blahaj, so i thought it was a problem on their side.

Well guess fucking what? After 3 days, it was STILL broken, so i opened it and...

Blocked. They fucking blocked blahaj.zone. Actually beyond parody🤦‍♂️ Why? What was the point? there's trans content literally everywhere on lemmy. what's next, block them all? So now if i want to see a post by a user on blahaj, i have to turn on my VPN (protonvpn.com is also blocked in saudi, jfc) just to see it. Fuck this place. 🙄

I swear a couple of days ago it worked. This is a mild annoyance (hence the community) but still.

It's so over guys, MBS said no more 196 😔

(page 2) 47 comments
sorted by: hot top controversial new old
[–] Rhoeri@lemmy.world 1 points 3 weeks ago

They must have thought that admin defending a troll was the last straw as well.

[–] Andromxda@lemmy.dbzer0.com 1 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

I quickly threw together a script to check which other Fediverse instances are blocked in Saudi Arabia by using Globalping. I know it's horrible, but it works so far. Will share the results once it's finished running. I'll probably also rewrite the script later.

I got the list of instances from lemmy.world: curl -s https://lemmy.world/instances | rg -o 'href="([^"]+)"' | rg -o 'https?://[^"]+' > instances.txt

#!/usr/bin/env fish

set INSTANCES "./instances.txt"
set OUTPUT_FILE "./output.txt"
set COUNTRY "saudi arabia"

for instance in (cat $INSTANCES)
  if globalping http $instance from $COUNTRY --method GET --limit 3 | rg 'Blocked URL' 2&>1
    echo "Blocked: $instance" >> blocked.txt
  end
end

I'm running tail -f blocked.txt in another terminal to monitor the results in real time.

(Yeah I know the script sucks. Don't judge me, I use fish and prefer its syntax over bash. I also use ripgrep, because I like it.)

Edit: so far I only got 3 blocked instances:

Blocked: becauseimbored.com
Blocked: mamot.fr
Blocked: federotica.com

I need to rewrite this to use the REST API, create an account and use the authentication token, because it runs out of credits and fails.

[–] fxomt@lemm.ee 1 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

I can run it for you if you want. I'll post the results here

It'll be faster for me since I'm in the country itself

EDIT: This won't work. You can "ping" blahaj successfully, but only because it redirects to a gov page, and not an error. I'll have to revise the script because of that.

[–] Andromxda@lemmy.dbzer0.com 1 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

EDIT: This won’t work. You can “ping” blahaj successfully, but only because it redirects to a gov page, and not an error. I’ll have to revise the script because of that.

Globalping has an HTTP method, which I use in the script:

globalping http $instance from $COUNTRY

I then use ripgrep to check if the HTTP response contains the string "Blocked URL", as you can see in the script:

| rg 'Blocked URL'

The if condition uses the exit code from ripgrep to add $instance from the for loop to the blocked.txt file.

I tested this manually and it works as intended. The script could use some optimizations though. And if you intend on running the current version, you need to lower the limit of the globalping command from 3 to 1, otherwise you will run out of credits before all 8100 instances are checked. I will rewrite this to use a globalping auth token though.

Btw I also removed the https:// part from the instance list. Just opened it up in Vim, selected everything using V-Block mode and deleted it. I don't know if that makes a difference, but I'm not sure if the Globalping command can take URLs, or if it only works with domains.

[–] fxomt@lemm.ee 1 points 3 weeks ago (1 children)

Ah, it works for me now. I just ran it with ping instead of globalping, since i had no need to run it with that. And the script didn't work after i did that, i'm not great at shell-scripting.

I made a modification that prints the status, but it's painfully slow to check each site.

[–] Andromxda@lemmy.dbzer0.com 1 points 3 weeks ago (2 children)

What do you use now? Curl? wget?

load more comments (2 replies)
[–] tal@lemmy.today 1 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

So now if i want to see a post by a user on blahaj, i have to turn on my VPN just to see it. Fuck this place. 🙄

One of the first conversations I was on when I joined was one between Ada, the lemmy.blahaj.zone admin, and some guy in a Middle Eastern country. Apparently his country had blocked lemmy.blahaj.zone at the national network level.

The Threadiverse is federated, so one could view posts from lemmy.blahaj.zone elsewhere, but not images, which did not propagate.

I thought that at some point, lemmy servers had started also storing images posted on other lemmy servers, but upon checking, it looks like they have not. I did run into one -- no longer up -- that had, according to the description, had apparently been modified to do this, probably to afford its users more privacy and not expose their IP addresses other than to their home instance. In theory, if you could find one that did so, you could make that your home instance and just rely on propagation of images through the network.

EDIT: It sounds from this year-old post like a lemmy instance can at least be configured to cache remote images:

https://futurology.today/post/6440

I suppose it'd be possible to go look and find out exactly what the current situation is.

[–] kylian0087@lemmy.dbzer0.com 1 points 3 weeks ago* (last edited 3 weeks ago)

If i remember correctly after the downfall of reddit and the mass migration to Lemmy happened, A big issue was CSAM spreading across the Lemmy servers. Wouldn't surprise me that that is the cause that images are no longer stored across servers.

[–] Bezier@suppo.fi 1 points 3 weeks ago* (last edited 3 weeks ago)

geoblocked

"Geoblocking" would mean that it's blahaj who don't want saudis on their instance

[–] superkret@feddit.org 0 points 3 weeks ago (1 children)

Pro tip: Don't "click here"!

[–] fxomt@lemm.ee 0 points 3 weeks ago (2 children)

man that page is so fucking annoying, everything i try to open anything it's just blocked. All sites critical of islam/saudi/sauds, and alcohol/porn/and anything that they hate. Even tor and vpns are blocked, i need to use a mirror to get them, which may not always be safe (atleast for the VPN, tor has trusted mirrors)

ngl i think of running a vpn on my router, literally just not to see that fucking page anymore (and security too, ofc :) )

load more comments (2 replies)
[–] andrew_bidlaw@sh.itjust.works 0 points 3 weeks ago (1 children)

My fuckers blocked catbox.moe, most western news sites and slowed down youtube traffic, but lemmy still flies under radar thankfully. I wish you still have your ways to choose what content you want to consume.

[–] possiblylinux127@lemmy.zip 1 points 3 weeks ago

Tor with Snow flakes is probably what you want.

You could even use Tails to avoid leaving a trace.

[–] earmuff@lemmy.dbzer0.com 0 points 3 weeks ago (1 children)

I blocked blahaj.zone voluntarily. Same as the tankie-zone.

[–] fxomt@lemm.ee 0 points 3 weeks ago (1 children)

There is a difference between state censorship and preference. One is good, the other is a symptom of corruption.

[–] earmuff@lemmy.dbzer0.com 0 points 3 weeks ago (2 children)

I can see that. How about not living in a country with laws like that? It is always easy to complain, but what is it that you have done so far?

[–] spujb@lemmy.cafe 1 points 3 weeks ago

hateful lmao “have you considered the obvious?”

my condolences fxomt, earmuff at dbzero doesn’t think you’re trying hard enough from their cozy armchair

load more comments (1 replies)
load more comments
view more: ‹ prev next ›