I don't know about others, but anything that requires me to log in with Facebook ends up stopping me from using it because I don't want all my contacts to see that I signed up for it.
fragsworth. We will implement other logins soon. This was just an MVP and we wanted to have something "in the real world" to avoid people posting racist items.
Show HN: TrollBlock, It's Okay to Dislike
61–68 of 68 posts
Re: Show HN: TrollBlock, It's Okay to Dislike
#62Earlier quoted context omitted.
We just needed it for faster integration. And we want to steal market share from FB. :)
Heck, I don't even like using services with a Facebook button.
Re: Show HN: TrollBlock, It's Okay to Dislike
#63I was thinking that this was going to be a filter on HN that blocked the comments by people you didn't like. That would be kind of a cool project. Basically, you could click "hide" and no longer see comments by a particular person. Over time, it could use clustering and machine learning to decide which comments you should see.
someday I hope the progress of technology will bring us back up to the level of 1980s killfiles ;-)
Re: Show HN: TrollBlock, It's Okay to Dislike
#64Earlier quoted context omitted.
Maybe if they have a blank meta description HTML tag?
Yeah, we didn't right a meta tag... On the to do list.
Re: Show HN: TrollBlock, It's Okay to Dislike
#65Earlier quoted context omitted.
We just needed it for faster integration. And we want to steal market share from FB. :)
Try BrowserID, it has the fastest integration I've ever used (this is with django).
Re: Show HN: TrollBlock, It's Okay to Dislike
#66I don't know about others, but anything that requires me to log in with Facebook ends up stopping me from using it because I don't want all my contacts to see that I signed up for it.
I agree 100%. I was going to give it a shot but I won't use anything that requires a facebook login either.
Re: Show HN: TrollBlock, It's Okay to Dislike
#67Earlier quoted context omitted.
mongo and redis - aren't both of those designed to serve basically the same purpose? why both?
Well, I used redis to hold a few sets for each user. You can atomically add items to sets in redis. Mongodb doesn't support this functionality (AFAIK). MongoDB is great for dumping and retrieving lots of data and is more durable than redis. Haven't built a site using these tools before so has all been a learning experience.
Re: Show HN: TrollBlock, It's Okay to Dislike
#68Earlier quoted context omitted.
mongo and redis - aren't both of those designed to serve basically the same purpose? why both?
Well, I used redis to hold a few sets for each user. You can atomically add items to sets in redis. Mongodb doesn't support this functionality (AFAIK). MongoDB is great for dumping and retrieving lots of data and is more durable than redis. Haven't built a site using these tools before so has all been a learning experience.
[1] http://www.mongodb.org/display/DOCS/Updating#Updating-%24add...