Skip to content

Instantly share code, notes, and snippets.

@scripting
Last active December 31, 2023 17:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scripting/f900a093af3f6365992c59a27987403a to your computer and use it in GitHub Desktop.
Save scripting/f900a093af3f6365992c59a27987403a to your computer and use it in GitHub Desktop.
on saveReadingList (screenname, catname, fname) {
local (url = "https://feedland.com/opml?screenname=" + screenname + "&catname=" + catname);
local (opmltext = tcp.httpreadurl (url));
file.writewholefile (githubfolder + "lists:" + fname, opmltext)
};
saveReadingList ("davewiner", "podcasts", "davepodcasts.opml")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment