exist's comments

exist | 8 years ago | on: Ask HN: What are the best MOOCs you've taken?

Definitely agree with this one. It's called Algorithm Specialization on Coursera. I'm now on course 3 and it's definitely helped me a lot in thinking about how reason about algorithms.

exist | 8 years ago | on: Show HN: Hacker News Classics

Yes it looks like they do deduplication, based on the HTML source:

  for (var i in data[yr]) {
    var story = data[yr][i];
    if (seen_titles[story.title]) continue;
    seen_titles[story.title] = 1;
  // ...add story to list of stories
  };

exist | 8 years ago | on: Interactive Vim tutorial

Thank you for that link. I appreciate that he chose to intersperse the history of commands (such as grep!) within his explanation.
page 1