Bitcoin Forum

Other => Meta => Topic started by: Husires on May 17, 2021, 01:50:20 PM



Title: How to hide Elon Musk topics? Reqest for userscript
Post by: Husires on May 17, 2021, 01:50:20 PM
Things have gotten out of control. I wanted to read some topics and 90% of them are talking about Elon Musk directly or indirectly. >:( >:( >:( it is Bitcointalk not Elonmusk trolling.
Is there any way to hide topics with a specific name or special words? I'm looking for a similar feature to mute words on twitter.
If it is not available, then I hope that someone will create a userscript that hides the topics that carry certain words.


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: Lucius on May 17, 2021, 02:10:59 PM
I think it would be very good for the mods to bring some order to Bitcoin Discussion, there is no logic for 5 different users to open an almost identical topic - the thing is very simple, leave only the one that is open first and delete the others. Some have definitely gone overboard with this topic, and we need one moderator in a good mood to sweep Mr.Musk where he belongs - maybe in Off-topic?


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: NeuroticFish on May 17, 2021, 02:14:59 PM
Is there any way to hide topics with a specific name or special words? I'm looking for a similar feature to mute words on twitter.

Patience, like any (useless) hype, it will die off and I expect (hope?) that it'll happen soon.
So just a little more time and you won't need those  :)


PS. Maybe we should also start reporting the topics as duplicates...


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: mprep on May 17, 2021, 03:05:18 PM
I'm not aware of any feature on Bitcointalk that allows you to filter out topics by title name. As for the userscript, enjoy (may contain bugs, use at your own risk, license: MIT license (https://opensource.org/licenses/MIT)):

Code:
// ==UserScript==
// @name         Bitcointalk Board De-Musk-ifier
// @namespace    mprep
// @version      0.2
// @description  Attempts to filter out topics related to Elon Musk (or any other terms in the blacklist)
// @author       mprep
// @match        https://bitcointalk.org/index.php?board=*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    ////////////////////////////////////////////// Blacklisted terms  //////////////////////////////////////////////////////
    //                   (add or remove terms to update blacklist; save the userscript after doing so)                    //
    //                            (must be lowercased, only letters, numbers and underscore)                              //

    let blacklist = ["elon", "musk", "tesla"];

    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


    let allTopics = document.querySelectorAll("[id^='topic_'] [id^='msg_'] a");
    for (let i = 0; i < allTopics.length; i++)
    {
        let topicTitleWords = allTopics[i].innerText.replace(/[^\w\s]/gi, '').toLowerCase().split(' ');
        for (let u = 0; u < blacklist.length; u++)
        {
            if (topicTitleWords.includes(blacklist[u]))
            {
                allTopics[i].closest("tr").remove();
                break;
            }
        }
    }
})();


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: FIFA worldcup on May 17, 2021, 03:19:45 PM
Things have gotten out of control. I wanted to read some topics and 90% of them are talking about Elon Musk directly or indirectly. >:( >:( >:( it is Bitcointalk not Elonmusk trolling.

Well, its the influence of Elon Musk which is causing the price movement in bitcoin. So at the present moment, unfortunately we cannot discuss about the price movement in bitcoin without taking Elon Musk in consideration.
You can stop reading the threads which have Elon Musk in the title, but then Elon Musk is everywhere even in the WO thread.  >:(


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: mk4 on May 17, 2021, 04:49:21 PM
I'm not against any discussion, even if it's as pointless as the typical Elon-Bitcoin topic. It's just that there should only be one topic, or at the very least two(completely depending on the subject). It's just that when Elon makes a dumb Tweet about Bitcoin, people here rush into creating topics hence why we see a lot of duplicates. Probably all we need is just to report the duplicates for merging into the main topic.


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: Rikafip on May 17, 2021, 05:39:41 PM
So after having Bitcoin Discussion board spammed with topics about Elon, we are on the way to get the same thing in Meta  ;D


https://media.giphy.com/media/a0h7sAqON67nO/giphy.gif


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: NotATether on May 17, 2021, 09:53:35 PM
Install uBlock Origin or any other adblocker that lets you add rules and add the following lines as custom filters to it:

Code:
##div>a:has-text(/Elon/)
##div>a:has-text(/elon/)
##div>a:has-text(/Musk/)
##div>a:has-text(/musk/)

It hides all DIVs (title entries or individual posts) that contain those words.


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: khaled0111 on May 18, 2021, 01:32:31 AM
add OPs to your ignore list. you won't miss them.


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: Cryptojurnalist on June 07, 2021, 09:31:51 PM
Things have gotten out of control. I wanted to read some topics and 90% of them are talking about Elon Musk directly or indirectly. >:( >:( >:( it is Bitcointalk not Elonmusk trolling.

Well, its the influence of Elon Musk which is causing the price movement in bitcoin. So at the present moment, unfortunately we cannot discuss about the price movement in bitcoin without taking Elon Musk in consideration.
You can stop reading the threads which have Elon Musk in the title, but then Elon Musk is everywhere even in the WO thread.  >:(
Elon Musk have not done any harm rather he is man that knows how to play his game and he was doing his things to the favour of his self. Elon musk never sponsored anyone to write any topic about him in the thread  but I will advise forum member to jump over any topic concerning him without any further replies to stop the pandemonium going in the forum just because of one single whale
elon Musk


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: Timelord2067 on June 08, 2021, 02:15:39 AM
I've been able to add greasemonkey to the Tor browser, however, I can't seem to be able to add any scripts - the "new user script" button seems to be disabled in Tor (Firefox I'm able to add the script, however it too doesn't seem to want to work - that said, a "total merit sent and received on merit page" script is still ok on Firefox)


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: The Cryptovator on June 08, 2021, 05:30:16 PM
Still this thread about Elon Musk. We can't or shouldn't prevent it. This is called freedom of speech. Just don't engage with such as discussion if you don't like it. Automatically you will not find any threads after a few days. Different users want to express different opinions, as a result, many threads have been creating. A few months ago there was many discussion about John McAfee, now all are gone. So the same thing will happen with Elon's thread as well. Better to ignore or use some other tools. We shouldn't expect something like hiding thread by words from the forum.


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: worldofcoins on June 08, 2021, 08:00:42 PM
Things have gotten out of control. I wanted to read some topics and 90% of them are talking about Elon Musk directly or indirectly. >:( >:( >:( it is Bitcointalk not Elonmusk trolling.
Is there any way to hide topics with a specific name or special words? I'm looking for a similar feature to mute words on twitter.
If it is not available, then I hope that someone will create a userscript that hides the topics that carry certain words.

I think it's possible but it'll make things more complicated for the admin to implement the stuff if official being the case.
However, you can hire someone on freelancer to get some sort of script done in around 100-200$ easily.


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: Emanuelaeventry on June 11, 2021, 12:57:19 AM
Elon musk every where. What so special about him? Because I see people taking him as something else. I have heard and read so much about him and I think the mod has to put his topic behind bar.


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: The Sceptical Chymist on June 11, 2021, 01:48:55 AM
<snip>
<snip>
Wow, two newbies who created accounts on the forum about an hour and a half apart posting consecutively with shitposts.  Guess people really are still account farming these days. 

This thread should probably be locked at this point, since the Elon Musk threads have either died down or been moved to Off-Topic with the rest of the nonsense.  Keeping it open is only going to invite more garbage posts spewed out by members trying to get to Jr. Member so they can join bounties.


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: lovesmayfamilis on June 11, 2021, 06:05:41 AM
<snip>
<snip>
Wow, two newbies who created accounts on the forum about an hour and a half apart posting consecutively with shitposts.  Guess people really are still account farming these days.  


This character is sick, and he suffers from a split personality. It is naive to think that we will not notice his writing style. He loves to talk to himself, impersonating each of his accounts as different people.
The only thing I regret is that the moderators regretted Delight Media for plagiarism, and did not block him and his IP.
https://bitcointalk.org/index.php?topic=1926895.msg57050646#msg57050646

Until then, we will see this poster in META every day.

1.Delightcrypto1 (https://bitcointalk.org/index.php?action=profile;u=2751225)
2.Delight Media (https://bitcointalk.org/index.php?action=profile;u=2682674)
3.Emanuelaeventry (https://bitcointalk.org/index.php?action=profile;u=3340879)
4.iroseyike (https://bitcointalk.org/index.php?action=profile;u=3340809)
5.Cryptojurnalist (https://bitcointalk.org/index.php?action=profile;u=3337884)
6.Cryptoflirt (https://bitcointalk.org/index.php?action=profile;u=3337934)


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: cabalism13 on June 13, 2021, 08:24:24 PM
Install uBlock Origin or any other adblocker that lets you add rules and add the following lines as custom filters to it:

Code:
##div>a:has-text(/Elon/)
##div>a:has-text(/elon/)
##div>a:has-text(/Musk/)
##div>a:has-text(/musk/)

It hides all DIVs (title entries or individual posts) that contain those words.
is this usable to other website on my browser? I also wanted to get rid of those shits from other sites as I've been still keep seeing them on my timelines, no. 1 is on twitter, I had to unfollow Musk and other stuffs but still the posts are there.


Title: Re: How to hide Elon Musk topics? Reqest for userscript
Post by: joker_josue on June 14, 2021, 11:13:06 AM
I don't see this as a problem on the forum.
But if there are so many topics related to Musk, you can always create a section dedicated to topics about it.  ;D ::) 8)