Using the Hacker News API, parses a "Who Is Hiring" feed and produces a clean list (one opportunity per line). Useful when combined with grep.
python whoishiring.py [id]
python whoishiring.py 15601729 | grep -i python | grep -i remote | sed -e "s/^.*$/&1\n/" > jerbs.txt
- Python 3