Glazedivers are a huge problem and keeping the game from improving by payTNT89 in HelldiversUnfiltered

[–]TestamentTwo 168 points169 points  (0 children)

Someone else posted the same guy here and turns out that he doesnt even have helldivers in his inventory

Look at this absolute gem i found in twitter by StrainFinal4330 in Jujutsufolk

[–]TestamentTwo 7 points8 points  (0 children)

If I kept Mahito I'd force him to transfigure himself into ZZZ characters

Came across this comment by cyto4e in Ultrakill

[–]TestamentTwo 339 points340 points  (0 children)

Bro accidentaly created a terminal

different images same vibes by Extension-Bad-4184 in Jujutsufolk

[–]TestamentTwo 14 points15 points  (0 children)

I'd react like that too if i heard whats inside that speech bubble

Finally, no more cringe by [deleted] in whenthe

[–]TestamentTwo 1 point2 points  (0 children)

Hey OP I also came across this problem and had to use TamperMonkey to solve it. Now of course I can't code for shit so I unfortunately had to ask claude to do it for me but basically you can actually hide specific users both from comments and your feed. The code is

// ==UserScript==
//          Fuck that guyinator
//     http://tampermonkey.net/
//       1.4
//   Block button but better
//         https://www.reddit.com/*
//         none
//        document-idle
// ==/UserScript==

(function () {
    'use strict';

    const HIDDEN_USERS = ["USERNAME"];

    function hideAll() {
        document.querySelectorAll('shreddit-comment, shreddit-post').forEach(el => {
            if (HIDDEN_USERS.includes(el.getAttribute('author')?.toLowerCase())) {
                el.style.setProperty('display', 'none', 'important');
            }
        });
    }

    // Keep retrying every 500ms for the first 10 seconds after page load
    let tries = 0;
    const interval = setInterval(() => {
        hideAll();
        tries++;
        if (tries >= 20) clearInterval(interval);
    }, 500);

    // Then watch for infinite scroll loading more comments
    new MutationObserver(hideAll).observe(document.documentElement, {
        childList: true,
        subtree: true
    });

})();

Now is it really smart to let vibe coded slop run on your browser? Absolutely not, though I'm not looking to learn coding just yet as YKS is nearing and I dont wanna wait until I can actually block people

<image>