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");
|
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
|
|
|
A partial list of current projects is below;
|
|
|
|
you can find others using <a href=http://google.com>Google</a>.
|
|
|
|
<p>
|
|
|
|
Mouse over a project for details.
|
2006-07-17 16:38:53 +00:00
|
|
|
<ul>
|
|
|
|
";
|
2006-07-25 21:07:14 +00:00
|
|
|
shuffle($areas);
|
|
|
|
foreach ($areas as $area) {
|
|
|
|
echo "<li> ".$area[0]."<ul>\n";
|
|
|
|
$projects = $area[1];
|
|
|
|
shuffle($projects);
|
|
|
|
foreach ($projects as $p) {
|
|
|
|
$img = "";
|
|
|
|
if ($p[5]) {
|
|
|
|
$img= "<img align=right vspace=4 hspace=4 src=images/$p[5]>";
|
|
|
|
}
|
|
|
|
echo "<li> <a href=$p[1] onmouseover=\"return escape('$img <b>Home:</b> $p[2]<hr><b>Area:</b> $p[3]<hr><b>Goal:</b> $p[4]')\">$p[0]</a>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
echo "</ul>\n";
|
2006-07-17 16:38:53 +00:00
|
|
|
}
|
2003-12-24 00:50:51 +00:00
|
|
|
echo "
|
2006-07-17 16:38:53 +00:00
|
|
|
</ul>
|
|
|
|
<p>
|
|
|
|
You can participate in several projects, ensuring that
|
|
|
|
your computer will be kept busy even when one project has no work.
|
|
|
|
You can control how your resources (such as computer time
|
2006-01-14 08:23:57 +00:00
|
|
|
and disk space) are divided among these projects.
|
2006-07-17 16:38:53 +00:00
|
|
|
When you attach to a project, you will be asked for its URL.
|
|
|
|
This is simply its web address: visit each project's web site,
|
|
|
|
and copy the URL from your browser's address field.
|
2003-12-24 00:50:51 +00:00
|
|
|
|
|
|
|
<p>
|
2006-07-17 16:38:53 +00:00
|
|
|
Projects are independent.
|
2006-08-16 19:45:43 +00:00
|
|
|
BOINC does not control or endorse BOINC-based projects.
|
2006-01-14 08:23:57 +00:00
|
|
|
When you participate in a project,
|
2003-12-24 00:50:51 +00:00
|
|
|
you entrust that project with the health of your
|
2006-05-09 18:25:15 +00:00
|
|
|
computer and the privacy of your data.
|
2006-01-14 08:23:57 +00:00
|
|
|
In deciding whether to participate in a project,
|
2003-12-24 00:50:51 +00:00
|
|
|
you should consider the following questions:
|
|
|
|
|
|
|
|
<ul>
|
2006-01-14 08:23:57 +00:00
|
|
|
<li> Do you trust the project to ensure that its applications
|
2006-05-09 18:25:15 +00:00
|
|
|
won't damage your computer or violate your privacy?
|
2003-12-24 00:50:51 +00:00
|
|
|
<li> Do you trust the project to use proper security practices on their servers?
|
2006-05-09 18:25:15 +00:00
|
|
|
<li> Does the project clearly describe its goals,
|
|
|
|
and are these goals important and beneficial?
|
2003-12-24 00:50:51 +00:00
|
|
|
<li> Who owns the results of the computation?
|
|
|
|
If the results are valuable, will they be freely available to the public
|
|
|
|
or will they belong to a for-profit business?
|
|
|
|
</ul>
|
|
|
|
|
2006-07-17 16:38:53 +00:00
|
|
|
";
|
|
|
|
echo "
|
|
|
|
<script language=\"JavaScript\" type=\"text/javascript\" src=\"wz_tooltip.js\"></script>
|
2003-12-24 00:50:51 +00:00
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|