Each version of the BOINC software is subjected about
70 separate tests
on all the major platforms (Windows, Mac, and Linux).
BOINC relies on volunteer 'Alpha testers'
to perform all these tests.
The following volunteers have reported
test results in the last 30 days.
Many thanks to these people for their
help in improving the reliability of BOINC software.
If you're interested in volunteering as an Alpha tester,
go here.
|
";
$t = time() - 30*86400;
$r = mysql_query("select * from test_report where UNIX_TIMESTAMP(mod_time)>$t");
while ($rep = mysql_fetch_object($r)) {
$count[$rep->userid]++;
}
asort($count);
$count = array_reverse($count, true);
table_header("Name", "Test reports in last 30 days");
foreach ($count as $id=>$c) {
$u = BoincUser::lookup_id($id);
row2("id>$u->name", $c);
}
end_table();
?>