2004-06-09 19:09:16 +00:00
|
|
|
<?php
|
2003-12-24 00:50:51 +00:00
|
|
|
require_once("docutil.php");
|
2006-07-17 16:38:53 +00:00
|
|
|
require_once("projects.inc");
|
2008-05-22 03:09:11 +00:00
|
|
|
require_once("get_platforms.inc");
|
2006-05-09 18:25:15 +00:00
|
|
|
page_head("Choosing BOINC projects");
|
2006-07-17 16:38:53 +00:00
|
|
|
|
|
|
|
echo "
|
2006-08-29 20:39:44 +00:00
|
|
|
<p>
|
2008-10-20 18:28:58 +00:00
|
|
|
BOINC is used by many independent volunteer computing <b>projects</b>.
|
2007-06-27 20:09:18 +00:00
|
|
|
Some are based at universities and research labs,
|
|
|
|
others are run by companies and individuals.
|
2008-10-20 18:28:58 +00:00
|
|
|
You can participate in several projects (ensuring that
|
|
|
|
your computer will be kept busy even when one project has no work)
|
|
|
|
and you can control how your computer's resources
|
|
|
|
are divided among these projects.
|
|
|
|
<p>
|
2007-06-27 20:09:18 +00:00
|
|
|
In deciding whether to participate in a project,
|
|
|
|
read its web site and consider the following questions:
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li> Does it clearly describe its goals,
|
|
|
|
and are these goals important and beneficial?
|
2008-05-13 21:46:50 +00:00
|
|
|
<li> Do they have any published results? See
|
2008-05-20 00:11:28 +00:00
|
|
|
<a href=/wiki/Publications_by_BOINC_projects>
|
2008-05-13 21:46:50 +00:00
|
|
|
A list of scientific publications of BOINC projects</a>.
|
2007-06-27 20:09:18 +00:00
|
|
|
<li> Do you trust it to use proper security practices on its servers?
|
|
|
|
<li> Who owns the results of the computation?
|
|
|
|
Will they be freely available to the public
|
|
|
|
or will they belong to a for-profit business?
|
|
|
|
</ul>
|
2008-10-20 18:28:58 +00:00
|
|
|
<p>
|
2008-05-13 21:46:50 +00:00
|
|
|
|
|
|
|
We at BOINC have communicated with the following projects,
|
|
|
|
and we believe that their descriptions
|
|
|
|
(institution and area of research) are accurate.
|
|
|
|
See also
|
2008-05-20 00:11:28 +00:00
|
|
|
<a href=wiki/Project_list>a complete list of projects</a>.
|
2009-06-27 21:10:40 +00:00
|
|
|
|
|
|
|
<p>
|
|
|
|
Note: if your computer is equipped with an NVIDIA Graphics Processing Unit
|
|
|
|
(GPU), you may be able to
|
|
|
|
<a href=http://boinc.berkeley.edu/cuda.php>use it to compute faster</a>.
|
2006-07-17 16:38:53 +00:00
|
|
|
";
|
2008-05-20 00:11:28 +00:00
|
|
|
list_start("cellpadding=2 width=100%");
|
2008-05-22 03:09:11 +00:00
|
|
|
list_heading(
|
|
|
|
"Project name<br><span class=note>Mouse over for details; click to visit web site</span>",
|
|
|
|
"Project URL",
|
|
|
|
"Supported platforms"
|
|
|
|
);
|
2006-07-25 21:07:14 +00:00
|
|
|
shuffle($areas);
|
|
|
|
foreach ($areas as $area) {
|
2006-12-21 16:56:33 +00:00
|
|
|
list_bar($area[0]);
|
2006-07-25 21:07:14 +00:00
|
|
|
$projects = $area[1];
|
|
|
|
shuffle($projects);
|
2008-05-22 03:09:11 +00:00
|
|
|
$n = 0;
|
2006-07-25 21:07:14 +00:00
|
|
|
foreach ($projects as $p) {
|
|
|
|
$img = "";
|
|
|
|
if ($p[5]) {
|
|
|
|
$img= "<img align=right vspace=4 hspace=4 src=images/$p[5]>";
|
|
|
|
}
|
2007-03-04 02:30:48 +00:00
|
|
|
$desc = addslashes($p[4]);
|
|
|
|
$x = "<a href=$p[1] onmouseover=\"return escape('$img <b>Home:</b> $p[2]<hr><b>Area:</b> $p[3]<hr><b>Goal:</b> $desc')\">$p[0]</a>";
|
2006-12-21 16:56:33 +00:00
|
|
|
$y = $p[1];
|
2009-01-13 19:34:04 +00:00
|
|
|
if (array_key_exists(6, $p)) {
|
|
|
|
$y = $p[6];
|
|
|
|
}
|
2009-01-08 19:12:13 +00:00
|
|
|
$p = get_platforms_string($y);
|
2008-05-22 03:09:11 +00:00
|
|
|
echo "<tr class=row$n>
|
|
|
|
<td valign=top>$x</td>
|
|
|
|
<td valign=top>$y</td>
|
|
|
|
<td width=30% valign=top>$p</td>
|
|
|
|
</tr>
|
|
|
|
";
|
|
|
|
$n = 1-$n;
|
2006-07-25 21:07:14 +00:00
|
|
|
}
|
2006-07-17 16:38:53 +00:00
|
|
|
}
|
2006-12-21 16:56:33 +00:00
|
|
|
list_end();
|
2003-12-24 00:50:51 +00:00
|
|
|
echo "
|
2006-07-17 16:38:53 +00:00
|
|
|
</ul>
|
2003-12-24 00:50:51 +00:00
|
|
|
|
2008-10-20 18:28:58 +00:00
|
|
|
<p>
|
|
|
|
If you would like to have your project included on this list,
|
|
|
|
please <a href=http://boinc.berkeley.edu/trac/wiki/ProjectPeople>contact us</a>.
|
2007-06-27 20:09:18 +00:00
|
|
|
<script language=\"JavaScript\" type=\"text/javascript\" src=\"wz_tooltip.js\"></script>
|
2003-12-24 00:50:51 +00:00
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|