You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
nein.wtf 9fd8fdac31 Add note about officially confirmed numbers vs estimated true numbers 1 year ago
.gitattributes Exclude *.com files from gitea language stats 1 year ago
.gitignore Initial commit 1 year ago
LICENSE Add license 1 year ago
README.org Be a bit more detailed about deployment 1 year ago
index.lua Add note about officially confirmed numbers vs estimated true numbers 1 year ago
redbean.com Add note about officially confirmed numbers vs estimated true numbers 1 year ago
sqlite3.com Initial commit 1 year ago
update-data.sh Fix ordering quirk in update script 1 year ago

README.org

Dimensions of Covid

Fuck this. Millions of people have died of COVID and probably there are millions more to come. Instead of a coordinated effort of keeping the global suffering as small as possible, most of the energy goes towards squeezing the last bit out of collective organization so that already powerful countries can be kept running and get an edge in the post-pandemic economic recovery. Early pandemic hopes that it could lead to a significant and lasting disruption of business-as-usual seem infinitely far away while the abolition of health protective measures is discussed even in regions with hundreds or thousands of people suffering and dying each day.

How does it work

In regular intervals, update-data.sh fetches the current covid data from https://covid-19.datasettes.com, which provides data by the Johns Hopkins university, using the following query:

select day, last_update, sum(deaths) sum_deaths
from johns_hopkins_csse_daily_reports
where country_or_region not like '%Olympics%'
group by day
order by day desc
limit 1

This provides an up-to-date approximation of total covid 19 deaths. In a somewhat backwards manner this is saved in a CSV, which is then again imported into an SQLite database. The database is queried in index.lua, where a single HTML page is created as a response.

Bundling

Just add it all to the redbean executable:

nix run nixpkgs#zip -- redbean.com *.lua

The executable can just be put somewhere and run, and the update script should be run regularly:

rsync -rztsv --info=progress2 redbean.com sqlite3.com update-data.sh ...
# crontab -e ...

Note that there were some problems deploying the executable to uberspace, which could be resolved by using redbean-unsecure.com, which comes without built-in SSL support.