Yesterday, the World Health Organization officially declared COVID-19 a global pandemic. As someone who’s been building software for three decades, I’ve seen the tech community respond to crises before — but nothing quite like what’s unfolding right now. Within days of the virus spreading beyond China’s borders, open source developers around the world started spinning up projects that are genuinely making a difference.
The Johns Hopkins Dashboard#
If you haven’t seen it yet, researchers at Johns Hopkins University built an interactive dashboard that tracks confirmed cases, deaths, and recoveries in real time. What makes this remarkable from a technical standpoint is that it’s powered by a publicly accessible GitHub repository that aggregates data from WHO, CDC, and dozens of regional health authorities.
The repository has exploded in activity. As of this week, it has thousands of stars and hundreds of forks, with contributors submitting pull requests to correct data, add new sources, and improve the ingestion pipeline. The data is published as CSV files — simple, portable, and easily consumed by any tool or language. It’s a masterclass in making critical data accessible.
I’ve been pulling the data into a Jupyter notebook myself, partly out of professional curiosity and partly because the situation demands that we all pay attention. The fact that this resource exists because a handful of researchers decided to open-source their work is exactly why I’ve been an advocate for open source for decades.
Folding@home Breaks Records#
The distributed computing project Folding@home has seen an extraordinary surge in volunteers. The project, which uses idle computing power from volunteers’ machines to simulate protein folding, launched specific COVID-19 work units this week. The response has been staggering — the project’s aggregate computing power has reportedly surpassed some of the world’s top supercomputers.
For those unfamiliar, Folding@home has been around since 2000, running on a simple but elegant model: download a client, donate your spare CPU/GPU cycles, and contribute to scientific research. The COVID-19 proteins they’re simulating could help identify potential drug targets. It’s one of those projects that reminds you what distributed systems are really about — not just microservices and Kubernetes clusters, but actual distributed computing in the original sense of the term.
I installed the client on three machines in my home office this morning. If you have cycles to spare, I’d encourage you to do the same.
Rapid Collaboration on GitHub#
Beyond these headline projects, GitHub is seeing a wave of COVID-related repositories. Developers are building everything from symptom checkers to supply chain coordination tools. Several governments are working on open source contact tracing solutions. The speed at which these projects are materializing is a testament to how much the developer ecosystem has matured.
What strikes me is the tooling. Twenty years ago, coordinating a global open source response to a crisis would have taken weeks just to set up the infrastructure — mailing lists, version control, build systems. Today, a developer can create a GitHub repo, set up CI/CD with GitHub Actions, deploy to a cloud provider, and have contributors from six continents submitting PRs within hours.
The pandemic is also forcing interesting conversations about data standards. How do you normalize case counts across countries that report differently? How do you handle time zones in a global dataset? These are the kinds of mundane but critical engineering problems that open source communities are uniquely positioned to solve through collective expertise.
The Remote Work Experiment#
I should note that this pandemic response is happening while the tech industry itself is undergoing a massive, unplanned experiment. Most major tech companies — Google, Microsoft, Amazon, Twitter — have told employees to work from home. Open source contribution, which has always been inherently remote-first, is suddenly the default mode for all software development.
There’s a certain irony here. The tools we built for distributed collaboration — Git, Slack, Zoom, CI/CD pipelines — are now the critical infrastructure keeping the entire industry running. Every standup is a video call. Every code review is asynchronous. The open source workflow that some managers once viewed skeptically is now the only workflow.
My Take#
I’ve been through the dot-com crash, the 2008 financial crisis, and several “this changes everything” moments in tech. This feels different. The speed and scale of the open source community’s response to COVID-19 is unlike anything I’ve witnessed. It’s not just developers scratching their own itch — it’s developers applying their skills to a genuine humanitarian crisis.
The projects I’m most impressed by aren’t the flashiest. They’re the ones maintaining clean datasets, building accessible APIs, and writing documentation that non-technical researchers can follow. That’s the unglamorous work that actually moves the needle.
If you’re a developer looking to contribute, start with the COVID-19 Open Research Dataset (CORD-19), which contains over 29,000 scholarly articles. There’s meaningful NLP and data engineering work to be done making that corpus searchable and useful. Or contribute cycles to Folding@home. Or help maintain one of the dozens of tracking dashboards that public health officials are relying on.
We’re in for a rough few months. But seeing the open source community mobilize this quickly gives me real confidence that the tech industry’s response will be substantive, not just performative.



