A curated list of historic quotes on free human neurosecurity.
Getting a random quote in PHP using the local fs:
$randomizer = new Random\Randomizer();
$url = '/home/www/static/freethinking.md'; # avoid making useless dns queries
$data = $randomizer->shuffleArray(file($url));
$int = $randomizer->getInt(1, count($data) - 1);
$q = $data[$int];
GPL version 3 or later
Etienne Robillard smart@open-neurosecurity.org