I don’t know if this was asked before and I don’t know how to look for that so I’m sorry if this is a repeat but, I keep seeing American football posts which I couldn’t care less about and I keep blocking the communities but they’re like thousands of millions of communities that never end. And no, I don’t wanna stick to the subscribed feed cause I wanna possibly find new communities or see posts from communities that I’m not subscribing to but are mildly interesting. I can’t think of good words to block either, without catching other communities I care about as well.

  • Wrend@lemmy.world
    link
    fedilink
    arrow-up
    52
    ·
    8 months ago

    I know that people are claiming that this isn’t an issue, but I am seeing the same. I just started blocking those communities every time I see one. They are probably just sorting their feed differently and assuming that their experience is the same as everyone else’s. Blocking them (the bot, or the community) is really the only option.

  • yata@sh.itjust.works
    link
    fedilink
    arrow-up
    25
    ·
    8 months ago

    I feel you. They got these bots posting results of games or whatever to each and every sports team community. But it is not one bot doing that, no that would be too easy because you could just block that, each and every sports team community got its own specifically named bot posting the exact same things.

    Really messes a lot with the all/new feed.

  • SnokenKeekaGuard@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    23
    arrow-down
    1
    ·
    8 months ago

    We understand that some users in the fediverse don’t want to see sports content and are frustrated with Fanaticus’s game bots’ daily posts.

    Currently, lemmy doesn’t support blocking entire instance’s at a user level. Because of that limitation, I am providing a list of the current communities on Fanaticus that have active game bots and a little python script so users can block those communities.

    Here's a list of the communities that currently have a game bots running:

    [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]

    If you're comfortable with coding, there's an API endpoint to block a community. I threw together a little python script that would block all the above (I think 🙂).
    from plemmy import LemmyHttp
    
    # must include protocol e.g. https://lemmy.world
    pl = LemmyHttp("INSTANCE_NAME_HERE")
    
    username = "USERNAME_HERE"
    password = "PASSWORD_HERE"
    pl.login(username, password)
    
    fanaticus_communities = [
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
        "[email protected]",
    ]
    
    for comm in fanaticus_communities:
        print("Getting community: ", comm)
        commRes = pl.get_community(name=comm).json()
        if commRes and commRes['community_view']:
            commId = commRes['community_view']['community']['id']
            print("Blocking community: ", comm, " communityId: ", commId)
            pl.block_community(True, commId)
            print("Successfully blocked community: ", comm)
        else:
            print("Failed to find community: ", comm)
    

    In the future, we are planning on adding the game bots for the other major sports as well (they’re not in season now) so I will update this script as those bots come online.

    Heres a post from fanaticus.social. Worth a look if your issue arrises in all

  • JohnnyCanuck@lemmy.ca
    link
    fedilink
    arrow-up
    22
    arrow-down
    4
    ·
    8 months ago

    Weird, I never see any sports posts (and would be mildly interested in them.) What communities are you seeing them from and how are you browsing Lemmy?

  • squiblet@kbin.social
    link
    fedilink
    arrow-up
    12
    ·
    8 months ago

    I tend to browse All>New and have also encountered this. Until the new Lemmy release has instance blocking, not much to do but block each community individually. There are also mobile clients that offer instance-level filtering. I’m sure someone finds it interesting (…. I guess) so I wouldn’t request defederation, but I certainly do not need a feed with 18 auto-posted threads about sports events.

    • scops@reddthat.com
      link
      fedilink
      English
      arrow-up
      7
      ·
      8 months ago

      I remember seeing a Lemmy feature request for hierarchical community tags. I love the idea of being able to, say, allow Game communities but block anything created under the Game -> Racing tag because I am very unlikely to have interest in it. Or in this case, block Sports altogether, that way if someone creates Sports -> American Football -> Carolina Panthers -> Panthers Memes it’s already out of my view and I’m none the wiser.

    • Etterra@lemmy.world
      link
      fedilink
      arrow-up
      4
      arrow-down
      1
      ·
      edit-2
      8 months ago

      Yeah I asked this question about foreign languages, and I think it was the same answer. I don’t speak or read German (as the most common example I’ve seen) so I have to keep blocking various instances that pop up in the newest feed like whack-a-mole. Similar to physical community-specific subs and sports; I just gotta keep blocking them one at a time

      • squiblet@kbin.social
        link
        fedilink
        arrow-up
        1
        ·
        8 months ago

        We could request that bot instance admins use a single user account vs a bunch of different users. That’s the problem with fanaticus - they have a bot for every different team - and I don’t see why that’s necessary. A single bot, like for the HN reposters, means someone can block all the posts with a single action, which would be nice.

        • HamSwagwich@showeq.com
          link
          fedilink
          arrow-up
          1
          ·
          8 months ago

          What if you want some scores and not others though? Then those people couldn’t block the bot. I think that’s the thought process behind that.

          Not saying I agree with it, just pointing that out

          • squiblet@kbin.social
            link
            fedilink
            arrow-up
            1
            ·
            8 months ago

            The way to arrange that would be different communities for each team, then people subscribe to the ones they want. It’s also what the sports instance already does.

      • squiblet@kbin.social
        link
        fedilink
        arrow-up
        5
        arrow-down
        3
        ·
        8 months ago

        I am not super up on lemmy development, but I assume they’re working on the rest of the features for the release, or are busy thinking about communism.

  • dmention7@lemm.ee
    link
    fedilink
    English
    arrow-up
    11
    ·
    8 months ago

    Blocking the handful (okay more like couple dozen) sports-related bots did the trick for me.

    I don’t mind seeing posts I’m not interested when I scroll All, the annoying part is a wall of 20+ posts, which is mainly a problem when bots are mass-reposting content (sports score for example)

    But if you’re really annoyed by seeing irrelevant content, there are two main options:

    1. Stop browsing All or Local and switch to your Frontpage, which is only the communities you’ve subscribed to. It’s still nice to browse All once in awhile to get turned onto new communities, but there are also certain communities you can subscribe to specifically for the purpose of seeing new and trending communities.

    2. This is more porn-related, but switch to an instance that is not federated with porn-instances. For example, I’m on lemm.ee, and I only rarely see moderately-NSFW content on All or Local.

    • QuinceDaPence@kbin.social
      link
      fedilink
      arrow-up
      5
      ·
      8 months ago

      My thing is when browsing all I want to see all, not just the most popular communities. The Hot/rising functions don’t seem to work that well at least on kbin.

      So I blocked a lot of the communities that show up too much or the ones that will never have anything of interest to me. It’s better.

      • dmention7@lemm.ee
        link
        fedilink
        English
        arrow-up
        1
        ·
        8 months ago

        Fully agreed that Hot/rising is garbage right now. It seems to weight very recent posts with zero comments or upvotes equally with older posts that have robust discussion, so >80% of the content is the same as sorting by New.

    • Art35ian@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      8 months ago

      Blocking a handful of something hasn’t worked for me. I must have blocked about 100 anime/furry porn sites and I still get a dozen every day in my ALL feed.

      Even when I sort HOT, they still come up constantly with no comments and no upvotes.

  • Orbituary@lemmy.world
    link
    fedilink
    arrow-up
    10
    arrow-down
    2
    ·
    8 months ago

    I’ve managed to block every US baseball, football, and MLS team. I have also gotten rid of most of the Yiff trash (man, that shit creeps me the fuck out), and the ADHD and Traps.

    It’s definitely not ideal. If I change devices, I will be in trouble unless this is stored server-side.

    • glimse@lemmy.world
      link
      fedilink
      arrow-up
      6
      ·
      8 months ago

      I have yiffit.com or whatever blocked but I hate that it stops me from seeing comments by users there. Just because I don’t want to see furry porn on my feed doesn’t mean I think people who do aren’t making worthwhile comments…

  • BabyWah@lemmy.world
    link
    fedilink
    arrow-up
    7
    ·
    8 months ago

    It took me a few days of browsing All and blocking anything sports, games and anime related and now it’s far far better. They still pop up sometimes, but I make it a war effort to block them. It is exhausting, but worth the time.

  • SbisasCostlyTurnover@feddit.uk
    link
    fedilink
    English
    arrow-up
    9
    arrow-down
    2
    ·
    8 months ago

    I’m a big sports guy and I rarely see random sports posts in the wild. Could OP be viewing the “all” page maybe? We had a similar issue a few days ago with Elon Posts and I wonder if it’s not a similar issue here?

      • Atemu@lemmy.ml
        link
        fedilink
        arrow-up
        5
        ·
        8 months ago

        If these are local and they’re botted to hell, perhaps get in contact with your instance’s admins. I’m sure they don’t appreciate that sort of behaviour either.

      • Magister@lemmy.world
        link
        fedilink
        arrow-up
        5
        arrow-down
        2
        ·
        8 months ago

        Almost nothing you can do, viewing local will show you every communities/posts especially made by bots… Just use “Subscribed” instead.

      • edric@lemm.ee
        link
        fedilink
        arrow-up
        3
        ·
        8 months ago

        Ah that’s why I don’t experience the same. It looks like your specific instance has a lot of bots posting the sports stuff. As the other commenter said, you can try contacting your instance admin if they can help. You can also maybe block the bot account if you can narrow it down…

  • DrQuint@lemm.ee
    link
    fedilink
    arrow-up
    7
    ·
    8 months ago

    Just block them. I’ve blocked 20 more times the number of communities and users here than on reddit.

  • kambusha@feddit.ch
    link
    fedilink
    arrow-up
    7
    arrow-down
    1
    ·
    8 months ago

    I know you said you didn’t want to stick to the subscribed feed, but can I suggest doing that while at the same time subscribing to the “trending communities” community so you can discover new ones. https://feddit.nl/post/5227714

    I think blocking is just going to be a constant battle for you, as you’ll likely need a blacklist of every sports team, sports team abbreviations, sports keywords etc. etc.

  • paddirn@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    8 months ago

    It’s not just sports, but alot of other topics that I’m just not interested in seeing somehow dominate my feed at times. Foreign language communities that I can’t even read pop up now and again. There’s so many small niche communities popping up that somehow pop up in the ‘Top’ view for whatever reason, then you have to go through and block each on individually. Is the Fediverse so sparsely populated that literally any posts that get any sort of attention suddenly shoot to the top? I sort by Top Six Hours most of the time. I try to block them when they come up, but I feel like Reddit never had this issue, even with all the extremely niche subreddits they have. It just seems like top/trending communities aren’t showing up correctly or some posts are showing up when they shouldn’t.

  • amio@kbin.social
    link
    fedilink
    arrow-up
    3
    ·
    8 months ago

    I keep seeing […] which I couldn’t care less about and I keep blocking the communities but they’re like thousands of millions of communities that never end. And no, I don’t wanna stick to the subscribed feed cause I wanna possibly find new communities or see posts from communities that I’m not subscribing to but are mildly interesting. I can’t think of good words to block either, without catching other communities I care about as well.

    That’s the fediverse for ya. The politics are relentless and the sportsball isn’t that far behind. All you can do is keep blocking.

  • Dandroid@dandroid.app
    link
    fedilink
    arrow-up
    2
    arrow-down
    1
    ·
    8 months ago

    I think a sports instance would be great for this reason. Starting with the next major release of Lemmy, anyone would be able to block the whole damn sports instance and be done with it. Though as far as I know, the sports communities are spread throughout different instances, so it won’t be that easy.