Skip to content

Instantly share code, notes, and snippets.

@curiouslychase
Created December 13, 2014 19:40
Show Gist options
  • Select an option

  • Save curiouslychase/3d1c09c5408af9bec6d3 to your computer and use it in GitHub Desktop.

Select an option

Save curiouslychase/3d1c09c5408af9bec6d3 to your computer and use it in GitHub Desktop.
Convert Coursera Lecture List to Todoist
var lectures = Array.prototype.slice.call(document.querySelectorAll('.lecture-link'));
var todoistCollection = [];
lectures.forEach(function(lecture) {
var todoistEntry = lecture.href + ' (' + lecture.innerHTML.replace('\n', '') + ')';
todoistCollection.push(todoistEntry);
});
todoistCollection.join("\n");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment