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
#!/bin/sh | |
# pnrr2wordcloud | |
# | |
# Generates a wordcloud from the most recent version of the Italian National | |
# recovery and resilience plan (Piano Nazionale di Ripresa e Resilienza - PNRR) | |
# | |
# Author: Roberto Reale <[email protected]> | |
# Last updated: 2021-02-11 |
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
#!/bin/sh | |
# Download summaries of all Guardian articles for a given keyword | |
TAG=${1:-covid} | |
APIKEY=test | |
APIROOT=https://content.guardianapis.com | |
# LOOP 1: get all tags containing $TAG |
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
# the order of the two statements is crucial (of course) | |
find \( -path ./.git -prune -false -o -executable \) -a -type f -exec git update-index --chmod=-x {} \; | |
find \( -path ./.git -prune -false -o -executable \) -a -type f -exec chmod -x \{} \; |
OlderNewer