Need to let loose a primal scream without collecting footnotes first? Have a sneer percolating in your system but not enough time/energy to make a whole post about it? Go forth and be mid: Welcome to the Stubsack, your first port of call for learning fresh Awful you’ll near-instantly regret.

Any awful.systems sub may be subsneered in this subthread, techtakes or no.

If your sneer seems higher quality than you thought, feel free to cut’n’paste it into its own post — there’s no quota for posting and the bar really isn’t that high.

The post Xitter web has spawned soo many “esoteric” right wing freaks, but there’s no appropriate sneer-space for them. I’m talking redscare-ish, reality challenged “culture critics” who write about everything but understand nothing. I’m talking about reply-guys who make the same 6 tweets about the same 3 subjects. They’re inescapable at this point, yet I don’t see them mocked (as much as they should be)

Like, there was one dude a while back who insisted that women couldn’t be surgeons because they didn’t believe in the moon or in stars? I think each and every one of these guys is uniquely fucked up and if I can’t escape them, I would love to sneer at them.

  • Architeuthis@awful.systems
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 month ago

    Here’s a quick and dirty vanilla js script that highlights all posts in a thread according to how recent they are, the brighter the newer, to make long running threads easier to follow. I’m posting it in the stubsack because it’s the thread I had in mind when writing it.

    Pasting it in the browser’s console and pressing enter should be enough for the page you have open, not that I’ve cross tested it any… Worst case scenario it does nothing or it colors the posts wrong and you just reload the page, I swear it won’t steal your crypto, or mine any new.

    In Firefox you can find the console by pressing F12 and selecting the console tab.

    (()=>{
        function getHighlightedColor(min, max, value) {
            const percentage = (value - min) / (max - min);
            return `rgba(0,0,255,${percentage})`
        }
    
        const nodes = [...document.querySelectorAll("span.moment-time")]
            .map(x => {
                return {
                    Node: x,
                    Date: Date.parse(
                        x.dataset.tippyContent
                            .split('\n').at(-1)
                            .replace(/Modified |at /g, ""))
                };
            });
    
        const dates = nodes.map(x => x.Date).filter(x => !isNaN(x) && x != null);
        dates.sort();
    
        const minDate = dates[0];
        const maxDate = dates.at(-1);
    
        nodes
            .filter(x => x.Node.closest('.ms-2') != null)
            .forEach(x => x.Node.closest('.ms-2').style.backgroundColor = getHighlightedColor(minDate, maxDate, x.Date))
    })()
    
    • froztbyte@awful.systems
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 month ago

      other handy thing you can do: make a bookmark that has the URL be javascript:(function() { function bits go here} )();, and stick it in your bookmark bar

      • Architeuthis@awful.systems
        link
        fedilink
        English
        arrow-up
        0
        ·
        1 month ago

        Yes, do this if your browser allows it, it’s way better. Just paste the code in the OP prepended by “javascript:” without quotes in place of the url and as far as i can tell it works.

        • froztbyte@awful.systems
          link
          fedilink
          English
          arrow-up
          0
          ·
          1 month ago

          I only now saw how badly the syntax on my post is fucked, that’s what I get for trying to snip things in a dodgy textentry rather than a real editor 😅

          leaving it up for posterity tho.

    • nfultz@awful.systems
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 month ago

      In the spirit of “worse is better”, here is a ublock filter I just threw together to highlight all the comments less than a day old:

      ! Jul 31, 2024 https://awful.systems
      awful.systems##.comment article.comment-node :has-text("hours ago"):style(background-color:#7700AA)
      
    • hrrrngh@awful.systems
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 month ago

      This is really cool!

      I was just thinking it would be cool to have something like RES’s ‘Previously Read’ feature that only shows the new comments, and everything else is darkened or collapsed. This does a similar thing though and it’s great for these weekly threads