DEV Community

Kai X Intelligence
Kai X Intelligence

Posted on

Crime Pays but Botany Doesn't: What a Punk Botanist Teaches Us About Passion, Open Science, and Hacker Culture

Crime Pays but Botany Doesn't: What a Punk Botanist Teaches Us About Passion, Open Science, and Hacker Culture

If you spent any time on Hacker News in early 2026, you probably saw the phrase "Crime Pays but Botany Doesn't" dominating the front page. It's the kind of cynical one-liner that makes you chuckle and then scroll on. But it's also the name of a real YouTube channel and podcast hosted by Tony Santorella, a sweaty, foul-mouthed, punk-rock botanist who walks through abandoned lots, highway medians, and industrial wastelands, pointing out weeds and telling you exactly which ones are edible, medicinal, or just fascinating as hell.

The fact that this show has become a touchstone for the Hacker News crowd says something profound about how we value knowledge, community, and the unconventional paths we take to build things. In a world obsessed with startup valuations and algorithmic growth, Santorella's mantra is a refreshing reminder: some of the most valuable work in the world pays nothing at all.

The Origin of a Meme

Santorella started "Crime Pays but Botany Doesn't" years ago as a side project. He attended the New York Botanical Garden's School of Professional Horticulture, but he never lost his knack for wearing sunglasses indoors and talking like a guy who just got kicked out of a hardcore show. The show's title is a joke about the absurd economic incentives that reward destruction while ignoring stewardship. Poaching, illegal logging, and corporate land grabs are lucrative. Cataloguing a rare sedge in a drainage ditch? Not so much.

But the irony goes deeper. Santorella's very existence is an act of defiance. He doesn't have a PhD. He doesn't wear a lab coat. He films on a cheap camera and edits himself, stumbling over Latin names while getting chased by dogs and security guards. He's not a polished science communicator; he's a guy who genuinely loves plants and wants you to love them too, all without a paywall or a corporate sponsor.

That raw, DIY aesthetic is exactly what hackers resonate with. It's the same energy that drives someone to disassemble a router or reverse-engineer a protocol just to understand how it works. Santorella isn't showing you slides of stomata in a sterile lecture hall. He's crouching in a parking lot, scraping moss off a curb, and telling you why it's the most underrated organism on the planet.

Why Hacker News Loves It

The Hacker News community loves open-source principles: transparency, collaboration, freedom to tinker, and the belief that knowledge wants to be free. Botany, as practiced by Santorella, is the ultimate open-source discipline. Every plant is a piece of code waiting to be read. Its leaf shape, root system, and reproductive strategy are all functions that have been optimized through millions of years of evolution.

When a hacker learns to identify plants, they're building a mental database of phenotypes and habitats. It's pattern matching at its finest. And just like open-source software, the botanical community has built massive, collaborative databases like GBIF, iNaturalist, and the USDA Plants Database. These are the equivalent of GitHub repositories for biodiversity, and anyone can contribute.

Santorella's show also aligns with hacker culture because it rejects gatekeepers. You don't need a credential to know a slippery elm from a Chinese elm. You just need to look, touch, and learn. This is the same anti-establishment ethos that got Linux started in a college dorm room and put a Raspberry Pi into the hands of every maker with a soldering iron.

The Economic Reality of Botany vs. Crime

There's a bitter truth buried in the show's title. Global biodiversity loss is accelerating, and climate change is reshaping ecosystems at an unprecedented rate. Yet botanists remain among the most poorly funded scientists. A recent survey of NSF grants showed a tiny fraction of overall funding goes to basic plant science, while research on artificial intelligence and defense receives billions. Meanwhile, the global illegal wildlife trade is estimated at billions of dollars annually, with rare orchids and cacti fetching six-figure prices on the black market.

It's a perverse incentive system that rewards the extraction of nature and punishes those who dedicate their lives to understanding and protecting it. Botanists at universities routinely work adjunct gigs for scraps, while apps that gamify plant identification turn $10 million ARR by exploiting the unpaid labor of enthusiasts.

This is something software engineers can intuitively understand. How many times have we seen a brilliant open-source maintainer burn out because corporations use their work without paying for it? The parallels are uncomfortable. The phrase "Crime Pays but Botany Doesn't" is basically the botanical version of "The only people making money from open source are the ones who monetize other people's free labor."

Is Botany the Original Hacking?

Let's be clear: hacking is not just about code. Hacking is about understanding systems well enough to remix them. Plants are the oldest systems on Earth. They've been taking in sunlight, managing water, and communicating via chemical signals for hundreds of millions of years. Learning to read those systems is a form of reverse engineering that predates the first assembly language.

Consider the way a weed like dandelion (Taraxacum officinale) has adapted to human civilization. It grows through cracks in asphalt, stores nutrients in a deep taproot, and releases airborne seeds by the thousands. That's distributed resilience. A hacker sees that and thinks, "I could learn a few things from this plant's architecture."

And you can. Urban botany is a fascinating study of how life colonizes concrete ecosystems. The same iron railings, brick walls, and drainage gutters that form the gritty scenery of a cybersecurity CTF also host ferns, mosses, and liverworts. Santorella calls these micro-habitats "urban ecological hotspots," and he treats them like a system admin treats a password file: valuable, fragile, and worth defending.

A Beginner's Field Guide for Hackers

If you're a programmer and want to start thinking like a botanist, there's no need for a field trip just yet. You can start right in your terminal with the same tools the open-source science community uses.

The Global Biodiversity Information Facility (GBIF) provides a free API for species occurrence records. A quick Python script can pull data on any plant you choose:

import requests

url = "https://api.gbif.org/v1/species/match"
params = {"name": "Taraxacum officinale", "kingdom": "Plantae"}
response = requests.get(url, params=params)
data = response.json()

if data["matchType"] == "EXACT":
    print(f"Species: {data['species']}")
    print(f"Accepted name: {data['accepted']}")
    print(f"Taxon ID: {data['usageKey']}")
else:
    print("No exact match found. Try common names?")
Enter fullscreen mode Exit fullscreen mode

Now you're officially using citizen-science infrastructure. You can also browse iNaturalist's API to get recent observations from your neighborhood. It's like a local git log of biodiversity.

For something more visual, consider using a computer vision library to identify plants from photos. TensorFlow has pre-trained models for plant leaves, and Hugging Face hosts dozens of botany-focused transformers. You could build a simple mobile app that lets users take a photo and get a Latin name in seconds. That's a weekend project, and it's exactly the kind of thing that would make Santorella grunt with approval.

The Punk Ethos of Paying It Forward

The brilliance of "Crime Pays but Botany Doesn't" is that it reframes failure as freedom. When you stop chasing the salary and start chasing the curiosity, you unlock a kind of wealth that's invisible to the stock market. Santorella's content is free. His interviews with famous botanists, soil scientists, and underground growers are unedited and raw. It's a gift economy based on mutual obsession.

Hacker culture has always thrived on this gift economy. An IRC channel where someone asks a stupid question and gets an answer by 3 AM. A forum where a stranger shares a patch that fixes a bug you've been fighting for weeks. That's what it means to be rich in knowledge. And that's exactly what Santorella says about his "crime": he's robbing the corporate botany establishment of its monopoly on curiosity.

There's also a deeply anti-authoritarian element. The show often highlights how plant knowledge was deliberately suppressed — colonial powers eradicated indigenous understanding of local flora, and modern agrochemical giants patent seeds that traditional farmers had cultivated for centuries. Learning botany today is an act of reclamation. It's like learning to read code after letting a black-box SaaS run your entire business.

Why We Need More People Who Care About Plants

2026 is a year where we're finally waking up to the reality that the planet is in trouble. Heatwaves are breaking records, pollinators are declining, and cities are literally getting too hot to live in. Botanists are on the front lines of every climate mitigation strategy, from carbon sequestration to urban forestry. But they can't do it alone.

We need more hackers to build tools for plant identification, more engineers to design environmental monitoring sensors, and more technologists to make biodiversity data accessible. We need people who understand that the natural world is the most complex and important system we will ever touch.

So even if botany doesn't pay, it's not a joke — it's a cause. And that's the kind of thing the Hacker News audience should get behind. When you see a weed cracking through the pavement on your way to work, don't just ignore it. Stop, kneel, and ask what it's doing there. That curiosity is the first step toward building a better, wilder, more resilient future.

As Santorella himself would say (with a heavy dose of profanity added): "The secret is that plants are the hacks. Everything else is just the vapor trail of an operating system that has been around for four billion years."

Top comments (0)