The following programs complement or enhance BOINC,
but were not developed by the BOINC project.
-
These applications are not endorsed by BOINC and
you use them at your own risk.
-
We do not provide instructions for installing or using these applications.
In most cases the author has provided these instructions.
If not, contact the author.
Instructions for installing and running BOINC are
here.
-
To submit software for inclusion in this list,
please email David Anderson.
BOINC provides several
APIs for
developing add-on software.
";
}
function show_group($name, $list, $short_name) {
echo "
$name
Add-on click for info |
Description |
";
shuffle($list);
foreach ($list as $item) {
$file = $item[0];
$itemname = $item[1];
$desc = $item[3];
$iname = urlencode($file);
echo "
$itemname |
$desc |
";
}
echo "
";
}
echo "\n";
show_group("Windows", $win, 'win');
echo "\n";
show_group("Linux", $linux, 'linux');
echo "\n";
show_group("Mac", $mac, 'mac');
echo "\n";
show_group("Mobile", $mobile, 'mobile');
echo "\n";
show_group("Web browser toolbars and plugins", $browser, 'browser');
echo "\n";
show_group("Web applications", $web, 'web');
if (!$strip_header) {
page_tail();
}
?>