View feedly-fe04410b-8072-4c43-880f-65a3ff1e3adb-2019-04-10.opml
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- Generated by Feed Curator --> | |
<opml version="1.1"> | |
<head> | |
<title>Andrew subscriptions in feedly Cloud</title> | |
</head> | |
<body> | |
<outline text="Krugman" title="Krugman"> | |
<outline text="Paul Krugman" title="Paul Krugman" description="" type="rss" version="RSS" htmlUrl="https://krugman.blogs.nytimes.com" xmlUrl="http://krugman.blogs.nytimes.com/feed/"/> | |
</outline> |
View json_feed.mtml
This file contains 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
{ | |
"version": "https://jsonfeed.org/version/1", | |
"title": "<$mt:BlogName smarty_pants="1" remove_html="1" escape_for_json="1"$>", | |
"home_page_url": "<$mt:BlogURL$>", | |
"feed_url": "<$mt:BlogURL$>feed.json", | |
"description": "<$mt:BlogDescription smarty_pants="1" remove_html="1" escape_for_json="1"$>", | |
"favicon": "<$mt:BlogURL$>favicon.ico", | |
"items": [ | |
<mt:Entries lastn="5"> | |
{ |
View upgrade_pip_packages.py
This file contains 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
#!/usr/bin/env python2 | |
""" | |
This script upgrades all outdated python packages. | |
""" | |
## based on https://gist.github.com/serafeimgr/b4ca5d0de63950cc5349d4802d22f3f0 | |
## __author__ = "serafeimgr" | |
## modified by AHJ to allow different pip executables (pip2, pip3, etc) | |
## do we really want to do this with multiprocessing, or just a single giant call to pip? | |
## does the parsing really work given the new-style headers in the formatting? | |
## -- no: needed to add --format legacy; could also use freeze (split with "==") |