Results 1 to 15 of 15

Thread:

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User
    Join Date: Jul:2001
    Location:
    Posts: 10,936

    4 - . ?

  2. #2
    Dark Traveler massacre's Avatar
    Join Date: May:2003
    Location: Ta'Xbiex, Malta
    Posts: 7,100
    , , . , .
    Sarcasm is just one more service I ffer.
    Me, mad? Haha... quite likely.
    There is life. There is death. And then there is me.

  3. #3
    Dementia senilis Nicholas's Avatar
    Join Date: Oct:2003
    Location:
    Posts: 6,162
    , ... chavv .
    - Riva TNT2 M64 Vanta | GeForce 2 MX 400 | GeForce FX 5200 | GeForce 6600 | GeForce 6800 | GeForce GTX 960 -

  4. #4
       
    Join Date: Aug:2003
    Location:  
    Posts: 8,103
    vBulletin, .
    ASRock X99 Extreme6/3.1 | Core i7 6950X | 32GB G.Skill DDR4-3200 | Samsung 970 PRO 1TB | MSI GeForce RTX 4080 Gaming X Trio

  5. #5
    ⛧ ⛧ mitku's Avatar
    Join Date: Oct:2003
    Location: Sofia
    Posts: 17,904
    ... "" . - .
    * Last Words: Modding... clocking?! Never!... This is bullshit! ... well... maybe only this time... just a little...
    * , ... , .

  6. #6
    XaMaB's Avatar
    Join Date: Nov:2001
    Location:
    Posts: 20,387
    4 , , .

    . .
    : XaMaB; . 0.42

    In God we Trust (all others must submit a X.509 certificate). , ()

  7. #7
    Registered User 's Avatar
    Join Date: Jul:2003
    Location:
    Posts: 23,490
    ( )?
    !

  8. #8
    ... Cenzor's Avatar
    Join Date: Jan:2003
    Location:
    Posts: 17,879
    Quote Originally Posted by View Post
    ( )?
    .

    P.S. , ?
    "May your glass be ever full.
    May the roof over your head be always strong.
    And may you be in heaven half an hour before the devil knows you're dead."

  9. #9
    Registered User 's Avatar
    Join Date: Jul:2003
    Location:
    Posts: 23,490
    !

  10. #10
    12 Roshav's Avatar
    Join Date: Oct:2002
    Location:
    Posts: 7,897
    4 ?
    " ", , .
    - 4
    , , , . .

  11. #11
    Banned
    Join Date: Oct:2001
    Location: , -5
    Posts: 2,637

    :

    UserScript :
    Code:
    // ==UserScript==
    // @name           hardwareignore.user.js
    // @namespace      *
    // @include        https://hardwarebg.com/forum/*
    // ==/UserScript==
    
    ignored_topics = ['135445', '135580'];
    
    myhash = Array()
    for (var i = 0; i < ignored_topics[i]; i++) {
    	myhash[ignored_topics[i]] = 1
    }
    
    var threads = document.getElementById("threadslist");
    
    var tbodies = threads.getElementsByTagName("tbody");
    for (var j = 0; j < tbodies.length; j++) {
    	var topics = tbodies[j].getElementsByTagName("tr");
    	for (var i = 0; i < topics.length; i++) { 
    		var topic = topics[i].getElementsByTagName("td");
    		topic = topic[2].id.match(/^td_threadtitle_([0-9]+)$/)
    		if (topic) {
    			topic = topic[1]
    			if (myhash[topic] == 1) {
    				topics[i].style.display = 'none';
    			}
    		}
    	}
    }
    :
    Code:
    ignored_topics = ['135445', '135580'];
    'https://hardwarebg.com/forum/*' 'http://hardwarebg.com/forum/*', . Greasemonkey, Opera. , . , .
    Last edited by exabyte; 24th September 2008 at 23:08.

  12. #12

    Join Date: Apr:2006
    Location:
    Posts: 8,666
    Last edited by smelkomar; 25th September 2008 at 23:41.

  13. #13
    Banned
    Join Date: Oct:2001
    Location: , -5
    Posts: 2,637
    Quote Originally Posted by smelkomar View Post
    , , , ?

    .
    Code:
    // ==UserScript==
    // @name           hardwareignore.user.js
    // @namespace      *
    // @include        https://hardwarebg.com/forum/*
    // ==/UserScript==
    
    ignored_topics = ['135445', '135580'];
    
    myhash = Array()
    for (var i = 0; i < ignored_topics[i]; i++) {
    	myhash[ignored_topics[i]] = 1
    }
    
    var threads = document.getElementById("threadslist");
    if (threads) {
    	var tbodies = threads.getElementsByTagName("tbody");
    	for (var j = 0; j < tbodies.length; j++) {
    		var topics = tbodies[j].getElementsByTagName("tr");
    		for (var i = 0; i < topics.length; i++) { 
    			var topic = topics[i].getElementsByTagName("td");
    			topic = topic[2].id.match(/^td_threadtitle_([0-9]+)$/)
    			if (topic) {
    				topic = topic[1];
    				if (myhash[topic] == 1) {
    					topics[i].style.display = 'none';
    				}
    			}
    		}
    	}
    }
    else {
    	var tbodies = document.getElementsByTagName("tbody");
    	for (var j = 0; j < tbodies.length; j++) {
    		if (!tbodies[j].id.match(/^collapseobj_forumbit_/)) {
    			continue;
    		}
    		var forums = tbodies[j].getElementsByTagName("tr");
    		for (var i = 0; i < forums.length; i++) {
    			try {
    				var suspect = forums[i].getElementsByTagName("td")[2].getElementsByTagName("div")[0];
    				var topic = suspect.getElementsByTagName("a")[0].href.match(/showthread\.php\?goto=newpost&t=([0-9]+)$/)
    				if (topic) {
    					topic = topic[1];
    					if (myhash[topic] == 1) {
    						suspect.style.display = 'none';
    					}
    				}
    			}
    			catch (e) {}
    		}
    	}
    }

  14. #14

    Join Date: Apr:2006
    Location:
    Posts: 8,666
    ( ),

  15. #15
    Banned
    Join Date: Oct:2001
    Location: , -5
    Posts: 2,637
    , , , , , .
    Code:
    // ==UserScript==
    // @name           hardwareignore.user.js
    // @namespace      *
    // @include        https://hardwarebg.com/forum/*
    // ==/UserScript==
    
    ignored_topics = ['135445', '135580', '136664' ];
    
    myhash = Array()
    for (var i = 0; i < ignored_topics[i]; i++) {
    	myhash[ignored_topics[i]] = 1
    }
    
    var threads = document.getElementById("threadslist");
    if (threads) {
    	var tbodies = threads.getElementsByTagName("tbody");
    	for (var j = 0; j < tbodies.length; j++) {
    		var topics = tbodies[j].getElementsByTagName("tr");
    		//var topics = document.getElementsByTagName("tr");
    		for (var i = 0; i < topics.length; i++) { 
    			var columns = topics[i].getElementsByTagName("td");
    			for (var k = 0; k < columns.length; k++) {
    				
    				topic = columns[k].id.match(/^td_threadtitle_([0-9]+)$/);
    				var change = false;
    				if (topic) {
    					topic = topic[1];
    					if (myhash[topic] == 1) {
    						topics[i].style.display = 'none';
    					}
    				}
    				
    			}
    		}
    		
    	}
    }
    else {
    	var tbodies = document.getElementsByTagName("tbody");
    	for (var j = 0; j < tbodies.length; j++) {
    		if (!tbodies[j].id.match(/^collapseobj_forumbit_/)) {
    			continue;
    		}
    		var forums = tbodies[j].getElementsByTagName("tr");
    		for (var i = 0; i < forums.length; i++) {
    			try {
    				var suspect = forums[i].getElementsByTagName("td")[2].getElementsByTagName("div")[0];
    				var topic = suspect.getElementsByTagName("a")[0].href.match(/showthread\.php\?goto=newpost&t=([0-9]+)$/)
    				if (topic) {
    					topic = topic[1];
    					if (myhash[topic] == 1) {
    						suspect.style.display = 'none';
    					}
    				}
    			}
    			catch (e) {}
    		}
    	}
    }

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

Copyright © 1999-2011 . .
iskamPC.com | mobility.BG | Bloody's Techblog | | 3D Vision Blog |