Last active
December 31, 2023 17:18
-
-
Save scripting/f900a093af3f6365992c59a27987403a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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