Skip to content

theoretick/discuss-it

Repository files navigation

Discuss-it

Online link discussion tracker

This repo has been deprecated but is here for archival purposes. Please see https://gitlab.com/theoretick/discuss_it for current version.

Version 0.8.1

Website for locating online discussions about a given article on Reddit, Hacker News, and Slashdot.

Currently hosted at: www.discussitapp.com

Features

Discuss-it takes a URL you think may have interesting discussion online and queries across a number of discussion hubs.

After submitting your URL we return a page of discussions. The links take you directly to the comments page of the article in question so that you can begin talking about the url you searched for immediately.

Current list of queried sites:

  • Hacker News
  • Reddit
  • Slashdot

The returned results include the top discussions as sorted by upvotes/points for each queried site followed by all discussions found.

The API call is source agnostic and converts results from each site into similar listing objects that can be manipulated and sorted easily.

Slashdot does not have an API so results from Slashdot are aggregated by our custom API which scrapes the most recent postings and stores them as listings in a database.

Bookmarklet

For easy searching, add Discuss-It search to your bookmark bar, just add a new bookmark and paste in this hunk of JS:

javascript:(function() {
  function searchDiscussIt() {
    var url = window.location.href;
    var discussit = 'http://www.discussitapp.com/submit?url=';
    window.location.href = discussit+url;
}
searchDiscussIt();
})();

Documentation

Created and maintained by

theoretick :: github, twitter

CodingAntecedent :: github, twitter

ericalthatcher :: github, twitter

Find a bug? Contributions welcome.

License

See LICENSE-APACHE for the full license text.