Created
July 25, 2012 16:19
-
-
Save capotej/3177047 to your computer and use it in GitHub Desktop.
scrubs useless stories from prismatic based on banned sites, tags, or words; install dotjs to use http://defunkt.io/dotjs/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var banned_sites = ['Bits', 'Forbes.com', 'TechCrunch', 'PCWorld', 'AllThingsD']; | |
var banned_tags = ['Venture Capital', 'Social', 'Startups', 'PHP', 'Social Media']; | |
var banned_words = ['Node', 'PHP', 'Zend', 'Cloud']; | |
var scrubber = function(){ | |
$('.article').each(function(index, object){ | |
var hideit = false; | |
var publisher = $(object).find('.publisher').find('.interest').text(); | |
var title = $(object).find('.title').find('.external').text(); | |
//loop through interests against our banned tags | |
$(object).find('.meta').find('.interest').each(function(i, rawinterest){ | |
var interest = $(rawinterest).text(); | |
$(banned_tags).each(function(index, object){ | |
if(object.toLowerCase() == interest.toLowerCase()){ | |
hideit = true; | |
} | |
}); | |
}); | |
//loop through our sites checking if it matches the publisher | |
$(banned_sites).each(function(index, object){ | |
if(object.toLowerCase() == publisher.toLowerCase()){ | |
hideit = true; | |
} | |
}); | |
//check title against banned_words | |
$(banned_words).each(function(index, object){ | |
if(title.toLowerCase().indexOf(object.toLowerCase()) != -1){ | |
hideit = true; | |
} | |
}); | |
//hide the article if deemed garbage | |
if(hideit == true){ | |
$(object).hide(); | |
} | |
}); | |
} | |
setInterval(scrubber, 2000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Written in Javascript. I approve of this message.