• Lua 70.6%
  • Shell 29.4%
Find a file
2022-02-21 23:45:16 +01:00
.gitignore Initial commit 2022-02-17 15:12:03 +01:00
index.lua Use redbean-unsecure 2022-02-21 23:45:16 +01:00
README.org Initial commit 2022-02-17 15:12:03 +01:00
redbean.com Use redbean-unsecure 2022-02-21 23:45:16 +01:00
sqlite3.com Initial commit 2022-02-17 15:12:03 +01:00
update-data.sh make update script quiet 2022-02-21 22:20:54 +01:00

Readme

Rough Concept

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.

What this is about

This project is first and formost about giving the collective experience of loss a space. It tweets one 🖤 per dead person, until every single dead person has at least been given the little bit of honor this can provide.

How does it work

In regular intervals, this 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. Tweets are sent as often as the Twitter API allows.