".tra("Computing power")."
".tra("Top 100 volunteers")." · ".tra("Statistics")."
"; show_totals(); include("piecharts/$i.html"); echo ""; } function show_totals() { $fn = "boinc_state.xml"; if (!file_exists($fn) || filemtime($fn) < time()-86400) { $uid = time(); $x = file_get_contents("https://boincstats.com/en/xml/boincState?uid=$uid"); 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); $petaflops = number_format($credit_day/200000000, 3); echo tra("Active:")." $users ".tra("volunteers,")." $hosts ".tra("computers. ")."
".tra("24-hour average:")." $petaflops ".tra("PetaFLOPS.")."
"; } function show_news_items() { require_once("../html/inc/news.inc"); require_once("../html/inc/forum.inc"); echo "
".tra("News")."
"; if (!file_exists("stop_web")) { show_news(0, 5); } else { echo "

Database not available; please try again later."; } echo "

"; } function show_participate() { echo "
" // "Volunteer" is used as a verb .tra("Volunteer") ."
".tra("Download")." · ".tra("Help")." · ".tra("Documentation")." · ".tra("Add-ons")." · ".tra("Links")."

".tra("Use the idle time on your computer (Windows, Mac, Linux, or Android) to cure diseases, study global warming, discover pulsars, and do many other types of scientific research. It's safe, secure, and easy:")."

  1. ".tra("Choose projects")."
  2. ".tra("Download BOINC software")."
  3. ".tra("Enter an email address and password.")."

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

For Android devices, download the BOINC " // or HTC Power To Give ." app from the Google Play Store or (for Kindle) the Amazon App Store. " // // // ." "; } function show_create() { echo "

".tra("Compute with BOINC")."
".tra("Documentation")." · ".tra("Software updates")."
  • ", tra("%1Scientists%2: use BOINC to create a %3volunteer computing project%4, giving you the power of thousands of CPUs and GPUs.", "", "", "", "" ), "
  • ", tra("%1Universities%2: use BOINC to create a %3Virtual Campus Supercomputing Center%4.", "", "", "", "" ), "
  • ", tra("%1Companies%2: use BOINC for %3desktop Grid computing%4.", "", "", "", "" ), "
"; } function show_other() { echo "
".tra("About BOINC")."
Project
Software
Contribute
"; } 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. "; } header("Content-type: text/html; charset=utf-8"); html_tag(); $rh_col_width = 390; echo " BOINC
\"BOINC ".sprintf(tra("Open-source software for volunteer computing"))."

"; search_form(); language_form(); echo "
"; echo "
"; show_participate(); show_create(); show_other(); //show_nsf(); echo "
"; show_participant(); show_news_items(); echo "
"; page_tail(true, true); ?>