53
submitted 11 months ago by stopthatgirl7@kbin.social to c/tech@kbin.social

Since Elon Musk became Twitter’s CEO, he’s been pushing through a lot of changes to the social network. But perhaps...

you are viewing a single comment's thread
view the rest of the comments
[-] peter@feddit.uk 20 points 11 months ago

Someone please make a lemmy client with a word filtering option so I can stop hearing about elmo

[-] stopthatgirl7@kbin.social 17 points 11 months ago

Or just scroll past things you don’t want to read about? That is a very viable option.

[-] galaxies_collide@lemmy.world 11 points 11 months ago

Not viable when every single post is about him.

[-] Madbrad200@lemmy.world 13 points 11 months ago* (last edited 11 months ago)

There's plenty of communities on Lemmy that don't discuss Elon at all. Curate your own homefeed

[-] Zima@kbin.social 8 points 11 months ago* (last edited 11 months ago)

are there any communities that discuss technology advancements ? I can't find any sub for technology enthusiasts.

edit: ah gotcha you're just telling him to go away while trying to sound reasonable.

[-] Itty53@kbin.social 2 points 11 months ago

You and the other guy both sound like you're whining that free content isn't being catered to your every taste for you when you have every tool at your disposal to curate your own content.

Y'all are entitled as shit.

[-] Zima@kbin.social 2 points 11 months ago

You might want to start paying more attention to what people say instead of focusing on how it makes you feel when you participate in an argument.

[-] Itty53@kbin.social 3 points 11 months ago

I thought about it.

Y'all are entitled as shit.

[-] galaxies_collide@lemmy.world 0 points 11 months ago
[-] Itty53@kbin.social 1 points 11 months ago

You sound like you're a teenager.

[-] stopthatgirl7@kbin.social 2 points 11 months ago

Unless every finger on your hand is broken, it’s always viable. And if every finger is broken, I’m pretty sure you’ve got bigger problems.

[-] crowsby@kbin.social 14 points 11 months ago* (last edited 11 months ago)

I can do you one better with a Tampermonkey script that will replace every reference to his name on every webpage to either "the biggest twat on the planet" or "this dipshit", depending on which works better syntactically.

// ==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;
}
})();

In practice it looks like this

[-] lowdownfool@kbin.social 5 points 11 months ago

Options that empower you:

  • Downvote button
  • Ignore button
  • Unsubscribe button
[-] peter@feddit.uk 2 points 11 months ago

Downvoting is kind of unfair because it is technology based, ignore button just ignores that specific post, unsubscribe unsubscribes me from all technology posts which I don't want

[-] Infiltrated_ad8271@kbin.social 2 points 11 months ago* (last edited 10 months ago)

... You are putting the responsibility on the victim?!

(/j)

[-] FaceDeer@kbin.social 5 points 11 months ago

Why didn't you downvote this thread? In kbin I can see who downvoted it and you're not there.

[-] peter@feddit.uk 4 points 11 months ago

Because the downvote button isn't for what I personally don't want to see, it's for what isn't relevant. As much as I don't want to see this, it is technology

[-] Auzy@beehaw.org 4 points 11 months ago

Beeshaw actually won't let you downvote. Has it's pros and cons

[-] FaceDeer@kbin.social 2 points 11 months ago

The user I'm asking is from feddit.uk.

[-] Ertebolle@kbin.social 1 points 11 months ago

Elmo loves you even if you don't love Elmo

this post was submitted on 27 Jul 2023
53 points (100.0% liked)

Technology

19 readers
2 users here now

This magazine is dedicated to discussions on the latest developments, trends, and innovations in the world of technology. Whether you are a tech enthusiast, a developer, or simply curious about the latest gadgets and software, this is the place for you. Here you can share your knowledge, ask questions, and engage in discussions on topics such as artificial intelligence, robotics, cloud computing, cybersecurity, and more. From the impact of technology on society to the ethical considerations of new technologies, this category covers a wide range of topics related to technology. Join the conversation and let's explore the ever-evolving world of technology together!

founded 1 year ago