Writers at Wired must have some kind of ridiculous policy about titles. An open source "secret weapon", Docker is the "next big thing" in cloud computing. Every single wired title that makes it HN makes me cringe. Everyone of them. The titles are silly, dishonest, upworthy, linkbait. I'm going to write an HN extension for chrome that just auto removes wired.com submissions when I load HN, it bothers me that much.<p>I wrote a little chrome extension that removes Wired, the content script is:<p><pre><code> var hn_blacklist = [
"wired.com"
];
$(document).ready(function () {
$(".comhead").each(function (i, e) {
var $e, tr;
$e = $(e);
hn_blacklist.forEach(function (domain) {
if ($e.text().indexOf(domain) !== -1) {
tr = $e.closest("tr");
tr.next().remove();
tr.remove();
}
});
});
});
</code></pre>
You can add your own domains to it. I created a manifest.json to make this a chrome extension, included jQuery and now it works.