davidbauer / Instacurate

Turn your Twitter timeline into a personalised news site, in an instant. Fetches links from your timeline and displays them in a discovery friendly design.
http://www.instacurate.com
113 stars 29 forks source link

Load reddit front page by default #103

Open davidbauer opened 10 years ago

davidbauer commented 10 years ago

front page not so easy, but the r/all subreddit could be added as default with one line. not so sure if it improves the experience, though.

$(document).ready(function(){

    // load some default content to start with
    getLinks("all");

});
davidbauer commented 10 years ago

turns out it's possible to get a users front page feed without authentication, but they have to copy it over manually. explanation here: http://www.reddit.com/r/learnprogramming/comments/1qmila/i_built_a_little_js_tool_to_browse_reddit_in_a/cdh7mef

not really elegant, but it's something.