Computing power
Top 100 volunteers · Statistics
"; show_totals(); include("piecharts/$i.html"); echo ""; } function show_totals() { $fn = "boinc_state.xml"; if (!file_exists($fn) || filemtime($fn) < time()-86400) { $x = file_get_contents("http://www.boincstats.com/xml/boinc_state.php"); if ($x) { $f = fopen($fn, "w"); fwrite($f, $x); } else return; } $x = file_get_contents($fn); $users = parse_element($x, ""); $hosts = parse_element($x, ""); $credit_day = parse_element($x, ""); $users = number_format($users); $hosts = number_format($hosts); $teraflops = number_format($credit_day/100000, 2); echo "Active: $users volunteers, $hosts computers.
24-hour average: $teraflops TeraFLOPS.
"; } function show_news_items() { require_once("boinc_news.php"); require_once("../html/inc/news.inc"); echo "
News
"; $nnews_items = 6; show_news($project_news, $nnews_items); if (count($project_news) > $nnews_items) { echo "... more\n"; } echo "

News is available as an RSS feed \"RSS

"; } function show_participate() { echo "
".tra("Volunteer")."
".tra("Download")." · Help · Documentation

".sprintf( tra(" Use the idle time on your computer (Windows, Mac, or Linux) to cure diseases, study global warming, discover pulsars, and do many other types of scientific research. It's safe, secure, and easy: %sChoose%s projects %sDownload%s and run BOINC software %sEnter%s an email address and password. "), "

  1. ", "", "
  2. ", "", "
  3. ", "" )."

".sprintf( tra("Or, if you run several projects, try an %saccount manager%s such as %sGridRepublic%s or %sBAM!%s. "), "", "", "", "", "", "" )." "; } function show_create() { echo "

Compute with BOINC
Documentation · Software updates
Related software:
  • Bolt: middleware for web-based education and training
  • Bossa: middleware for distributed thinking projects
"; } function show_other() { echo "
The BOINC project

"; } function show_nsf() { echo " \"NSF BOINC is supported by the National Science Foundation through awards SCI-0221529, SCI-0438443, SCI-0506411, PHY/0555655, and OCI-0721124. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation. "; } // how to add language names: // paste into notepad++, select ANSI format, // then copy/paste into here function language_form() { echo "
"; } //if (defined("CHARSET")) { header("Content-type: text/html; charset=".tra(CHARSET)); //} html_tag(); echo " BOINC
\"BOINC ".sprintf(tra("Open-source software for %svolunteer computing%s and %sgrid computing%s."), '', '', '', '')."
"; language_form(); echo ""; search_form(); echo "
"; echo "
"; show_participate(); show_create(); show_other(); show_nsf(); echo "
"; show_participant(); show_news_items(); echo "
"; page_tail(true, true); ?>