Ask HN: Who is already sick of all of these "Like" buttons plastered everywhere?
21–30 of 53 posts
Re: Ask HN: Who is already sick of all of these "Like" buttons plastered everywhere?
#22I haven't noticed this yet. Would someone kindly point me towards an example?
Every story has a Like, a Buzz and a Retweet button.
Re: Ask HN: Who is already sick of all of these "Like" buttons plastered everywhere?
#23Re: Ask HN: Who is already sick of all of these "Like" buttons plastered everywhere?
#24Re: Ask HN: Who is already sick of all of these "Like" buttons plastered everywhere?
#25Re: Ask HN: Who is already sick of all of these "Like" buttons plastered everywhere?
#26Poor digg, that was supposed to be their trick
Re: Ask HN: Who is already sick of all of these "Like" buttons plastered everywhere?
#27If you want to bookmark something, bookmark it in the way you know how (in browser, Delicious, etc). If you want to tweet about something, go tweet about it in the client of your choice.
Re: Ask HN: Who is already sick of all of these "Like" buttons plastered everywhere?
#28But someone could make a quick userscript to hide them :-)
Edit:
// ==UserScript==
// @name I-Dont-Like-The-New-Facebook-Like
// @namespace I-Dont-Like-The-New-Facebook-Like
// @description Hide all Facebook 'Like' buttons
// @include *
// ==/UserScript==
(function () {
var i = document.getElementsByTagName('iframe');
if(i) {
for(e in i) {
if(i[e].src.match(/http\:\/\/www.facebook.com\/widgets\/like.php/gi)) {
i[e].style.display = 'none';
i[e].style.visibility = 'hidden';
}
}
}
})();Re: Ask HN: Who is already sick of all of these "Like" buttons plastered everywhere?
#29I haven't noticed this yet. Would someone kindly point me towards an example?
Re: Ask HN: Who is already sick of all of these "Like" buttons plastered everywhere?
#30Earlier quoted context omitted.
I'm the same way. I often read articles that I would like to share with people, but since I'm more interested in the ensuing discussion, I'd rather directly link a person during a conversation (or as a way to start one) rather than throw it at my Facebook page or similar. I consider sites like HN quite different, as that is their sole purpose :)
Yea that stuff is totally blocked out of my mind. I use Facebook to connect with my friends and family, and will share a link occasionally if it really pertains to me. For the most part, though, I don't like spamming mass amounts of data to friends. The only benefit I see to things like delicious and other "social bookmarking" tools is the fact that they're "up in the cloud", aka, backed up somewhere away from my bro…