• 0 Posts
  • 10 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle
  • I feel that, which is why I forked a tampermonkey script to replace his name globally. This is nice because it covers every site, which makes reading articles on WaPo and NYT much less irritating. Here’s what this thread looks like on my end, for instance:

    And the script itself:

    // ==UserScript==
    // @name         Text Replace
    // @version      0.1
    // @description  Text Replace
    // @author       SiameseDream
    // @include     *
    // @grant        none
    // @namespace beepboop
    // ==/UserScript==
    
    (function() {
        'use strict';
    
    var replaceArry = [
        [/ Elon Musk/gi,' the biggest twat on the planet'],
        [/Elon Musk/gi,'The biggest twat on the planet'],
        [/ Mr. Musk/gi,' this dipshit'],
        [/ Musk/gi,' this dipshit'],
        [/Mr. Musk/gi,'This dipshit'],
        [/Musk/gi,'This dipshit'],
        // etc.
    ];
    var numTerms    = replaceArry.length;
    var txtWalker   = document.createTreeWalker (
        document.body,
        NodeFilter.SHOW_TEXT,
        {   acceptNode: function (node) {
                //-- Skip whitespace-only nodes
                if (node.nodeValue.trim() )
                    return NodeFilter.FILTER_ACCEPT;
    
                return NodeFilter.FILTER_SKIP;
            }
        },
        false
    );
    var txtNode     = null;
    
    while (txtNode  = txtWalker.nextNode () ) {
        var oldTxt  = txtNode.nodeValue;
    
        for (var J  = 0;  J < numTerms;  J++) {
            oldTxt  = oldTxt.replace (replaceArry[J][0], replaceArry[J][1]);
        }
        txtNode.nodeValue = oldTxt;
    }
    })();
    
    



  • I work in data analysis and reporting on various feedback systems is part of my regular role. Every company’s data culture is different, so you can’t simply say “X is the reason why they’re doing this”. It could be:

    • Maybe they are incorporating the data into agent/product reviews.
    • Maybe they are trying to guide product & feature development on a quantitative basis
    • Maybe at one point a product manager wanted to be “data-driven”, so a feedback system was set up, but now it’s basically ignored now that they haven’t been with the company for over a year and nobody wants to take ownership of it. But it’s more effort to remove than just leave in place.
    • Maybe it’s used when we want to highlight our successes, and ignored when we want to downplay results we don’t like

    What I’ve found is that there are a lot of confounding factors. For example, I work for a job board, and most people use the Overall Satisfaction category as more of a general measurement of how their job search is going, or whether or not they got the interview, rather than an assessment of how well our platform serves that purpose. And it’s usually going very shittily because job searching is a generally shitty process even when everything is going “right”.






  • Tildes, for what it’s worth, is not intended to be a replacement for Reddit. Its creator/admin is trying to purposefully cultivate a very different culture than what you might find on Reddit or Reddit replacements like lemmy/kbin/squabbles/discuit/etc. From their Philosophy page:

    High-quality content and discussions
    Tildes prioritizes quality content and discussion through its mechanics, design, and organization. Fixation on growth and related metrics results in other sites having a bias towards high-appeal, low-depth content like funny images, gifs, and memes. The priority on Tildes is to cultivate high-quality communities, which are far easier to build when they don’t have to fight an uphill battle against the platform itself.

    Limited tolerance, especially for assholes
    Tildes will not be a victim of the paradox of tolerance; my philosophy is closer to “if your website’s full of assholes, it’s your fault”.

    This is a difficult topic, so I want to try to be clear about where on the spectrum Tildes is trying to land. I’m never going to refer to the site as a “safe space” or ban anyone just for occasionally acting like a jerk in an argument—I’d probably have to ban myself fairly quickly. However, it will also never be described as anything like “an absolute free speech site”.

    Personally as an old, I love it. The whole vibe promotes longer, better thought out replies, as opposed to the modern internet where people are more often looking to do quick hit n’ run posts with popular sentiments for easy internet points. I also love the proactive removal of problem posters. Some people are just looking to stir up trouble wherever they go, but don’t fall under a specific rule that might get their account axed. Tildes isn’t afraid to uninvite problematic assholes.

    If its culture is something that resonates with you, feel free to hit me up for an invite while I have some.