Bitcoin Forum
May 04, 2024, 03:53:49 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
Pages: [1]
  Print  
Author Topic: Ignore User --> Ignore thread? LTC bounty.  (Read 535 times)
rafsoaken (OP)
Full Member
***
Offline Offline

Activity: 166
Merit: 100


View Profile
May 12, 2013, 05:37:54 PM
 #1

So I'm done with all the alt spam,
just learned how to use the ignore link on some users (hdclover, serge79 and mill0601).
Now my question is, how can I also make their threads disappear?
3LTC bounty.

1714838029
Hero Member
*
Offline Offline

Posts: 1714838029

View Profile Personal Message (Offline)

Ignore
1714838029
Reply with quote  #2

1714838029
Report to moderator
I HATE TABLES I HATE TABLES I HA(╯°□°)╯︵ ┻━┻ TABLES I HATE TABLES I HATE TABLES
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714838029
Hero Member
*
Offline Offline

Posts: 1714838029

View Profile Personal Message (Offline)

Ignore
1714838029
Reply with quote  #2

1714838029
Report to moderator
syn999
Full Member
***
Offline Offline

Activity: 196
Merit: 100



View Profile
May 12, 2013, 05:39:08 PM
 #2

nope, unless you are admin or use other software stuffs





LdgZbmcovU3tXJv6haULEXzn3ABdoKYHEb

mc_lovin
Legendary
*
Offline Offline

Activity: 1190
Merit: 1000


www.bitcointrading.com


View Profile WWW
May 12, 2013, 05:39:56 PM
 #3

I betcha a greasemonkey script could do it.
rafsoaken (OP)
Full Member
***
Offline Offline

Activity: 166
Merit: 100


View Profile
May 12, 2013, 05:42:04 PM
 #4

nope, unless you are admin or use other software stuffs





LdgZbmcovU3tXJv6haULEXzn3ABdoKYHEb

Sorry, bounty is for getting the job done only.

rafsoaken (OP)
Full Member
***
Offline Offline

Activity: 166
Merit: 100


View Profile
May 12, 2013, 05:43:03 PM
 #5

I betcha a greasemonkey script could do it.

post the script, get the bounty. Greasemonkey is fine although i prefer something i can use on chrome.
Edit: I could use Tampermonkey on chrome.

Balthazar
Legendary
*
Offline Offline

Activity: 3108
Merit: 1358



View Profile
May 12, 2013, 05:49:57 PM
 #6

greasemonkey, privoxy, proxomitron, adblock plus... You can write rules for this tools to do this.
Joerii
Legendary
*
Offline Offline

Activity: 1274
Merit: 1050



View Profile WWW
May 12, 2013, 05:54:56 PM
 #7

The thing with those annoying, scammy posters is... the replies others make in their threads could be a worthwhile read.

That's the reason I never ignore someone, eventhough I cringe everytime I read their posts. It takes away the context of replies of others.

Hypercube - get the attention you deserve
nocoin
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
May 12, 2013, 05:59:23 PM
 #8

Ok, script is like this one, simple and stupid.
Code:
// ==UserScript==
// @name           noname
// @description    Hide those scammers threads
// @include        *bitcointalk.org*
// ==/UserScript==

var threads = document.getElementsByTagName('tr')
var l = threads.length
regexp = /(hdclover|serge79|mill0601)/i;
for(var i=1; i<l; i++) {
if(threads[i].innerHTML.match(regexp))
{
threads[i].innerHTML=""
}
}
Works great with Firefox+Greasemonkey. Please, test in on Chrome+Tampermonkey.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!