2006-07-28 03:30:09 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
2003-11-26 18:49:56 +00:00
|
|
|
|
require_once("docutil.php");
|
2004-06-29 04:34:55 +00:00
|
|
|
|
|
2006-02-14 22:30:42 +00:00
|
|
|
|
include("../html/inc/stats_sites.inc");
|
2005-10-02 18:23:38 +00:00
|
|
|
|
|
2004-12-15 07:08:54 +00:00
|
|
|
|
function language($lang, $sites) {
|
2008-12-01 22:06:24 +00:00
|
|
|
|
echo "<tr><td bgcolor=eeeeee valign=top width=250>$lang</td><td>\n";
|
2006-03-02 07:17:18 +00:00
|
|
|
|
shuffle($sites);
|
2004-12-15 07:08:54 +00:00
|
|
|
|
foreach ($sites as $s) {
|
|
|
|
|
echo "$s<br>\n";
|
|
|
|
|
}
|
2004-12-19 20:35:37 +00:00
|
|
|
|
echo "</td></tr>\n";
|
2004-12-15 07:08:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function site($url, $name) {
|
|
|
|
|
return "<a href=$url>$name</a>";
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-12 16:15:53 +00:00
|
|
|
|
$info_sites = array(
|
2007-07-20 18:47:52 +00:00
|
|
|
|
array(
|
|
|
|
|
"http://www.boincteams.com/",
|
|
|
|
|
"BOINC Team Leaders Forum",
|
|
|
|
|
"(a meeting place to chat and discuss team building on BOINC projects)"
|
|
|
|
|
),
|
2007-06-12 16:15:53 +00:00
|
|
|
|
array(
|
|
|
|
|
"http://www.hyper.net/dc-howto.html",
|
|
|
|
|
"How to participate in grid computing projects that benefit humanity",
|
|
|
|
|
"(survey of volunteer computing, including non-BOINC projects)"
|
|
|
|
|
),
|
2007-05-29 21:45:01 +00:00
|
|
|
|
array(
|
|
|
|
|
"http://www.kd-web.info/clanky.php",
|
|
|
|
|
"Flash-based BOINC tutorials", "(in Czech, English, and Slovak)"
|
|
|
|
|
),
|
2008-04-06 03:15:36 +00:00
|
|
|
|
//array(
|
|
|
|
|
// "http://www.kazlev.karoo.net/noob_help.htm",
|
|
|
|
|
// "BOINC mini-FAQ"
|
|
|
|
|
//),
|
2006-12-19 22:11:53 +00:00
|
|
|
|
array(
|
|
|
|
|
"http://boincfaq.mundayweb.com/",
|
2007-01-24 22:55:00 +00:00
|
|
|
|
"The BOINC FAQ Service",
|
2008-05-09 20:54:52 +00:00
|
|
|
|
"(English, German, Dutch, Spanish and French)"
|
2006-12-19 22:11:53 +00:00
|
|
|
|
),
|
2006-08-21 19:41:25 +00:00
|
|
|
|
array(
|
2007-09-27 21:03:15 +00:00
|
|
|
|
"http://www.boinc-wiki.info/",
|
2006-08-21 19:41:25 +00:00
|
|
|
|
"The Unofficial BOINC Wiki",
|
|
|
|
|
"(in English)",
|
|
|
|
|
),
|
|
|
|
|
array(
|
|
|
|
|
"http://www.seti-argentina.com.ar/instrucciones-boinc-manager",
|
|
|
|
|
"BOINC Argentina",
|
|
|
|
|
"(in Spanish)",
|
|
|
|
|
),
|
|
|
|
|
array(
|
|
|
|
|
"http://faq.boinc.de/",
|
|
|
|
|
"Deutsche BOINC FAQ",
|
|
|
|
|
"(in German)",
|
|
|
|
|
),
|
|
|
|
|
array(
|
2007-04-13 22:55:18 +00:00
|
|
|
|
"http://www.boincfrance.org/",
|
2006-08-21 19:41:25 +00:00
|
|
|
|
"BOINCFrance.org",
|
|
|
|
|
"(in French)",
|
|
|
|
|
),
|
|
|
|
|
array(
|
|
|
|
|
"http://www.crunching-family.at/wiki/",
|
|
|
|
|
"Crunching Family Wiki",
|
|
|
|
|
"(In German)",
|
|
|
|
|
),
|
2007-10-21 20:54:24 +00:00
|
|
|
|
array(
|
|
|
|
|
"http://www.angelfire.com/jkoulouris-boinc/",
|
|
|
|
|
"The Big BOINC! Projects and Chronology Page",
|
|
|
|
|
"(by John Koulouris)"
|
|
|
|
|
),
|
2006-08-21 19:41:25 +00:00
|
|
|
|
);
|
|
|
|
|
|
2006-02-20 07:55:32 +00:00
|
|
|
|
page_head("Web resources for BOINC participants");
|
2004-12-15 07:08:54 +00:00
|
|
|
|
|
|
|
|
|
echo "
|
2006-12-04 17:10:39 +00:00
|
|
|
|
<h3>Contents</h3>
|
|
|
|
|
<ul>
|
2006-12-19 22:11:53 +00:00
|
|
|
|
<li> <a href=#info>Help and Information</a>
|
2006-12-04 17:10:39 +00:00
|
|
|
|
<li> <a href=#stats>Credit statistics</a>
|
2009-03-01 19:00:40 +00:00
|
|
|
|
<li> <a href=#sigs>Signature images</a>
|
2006-12-04 17:10:39 +00:00
|
|
|
|
<li> <a href=#team_stats>Team statistics</a>
|
2009-07-16 20:14:57 +00:00
|
|
|
|
";
|
|
|
|
|
//<li> <a href=#status>Project status</a>
|
|
|
|
|
echo "
|
2007-01-07 19:45:26 +00:00
|
|
|
|
<li> <a href=#misc>Miscellaneous</a>
|
2006-12-05 03:50:36 +00:00
|
|
|
|
<li> <a href=#skins>Skins for the BOINC Manager</a>
|
2006-12-04 17:10:39 +00:00
|
|
|
|
<li> <a href=#sites>Other BOINC-related sites</a>
|
|
|
|
|
(Information, message boards, and teams)
|
2007-12-27 18:37:22 +00:00
|
|
|
|
<li> <a href=#video>BOINC-related videos</a>
|
2006-12-04 17:10:39 +00:00
|
|
|
|
</ul>
|
2007-02-02 17:12:07 +00:00
|
|
|
|
<a name=info></a>
|
2006-12-19 22:11:53 +00:00
|
|
|
|
<h3>Help and Information</h3>
|
|
|
|
|
Sites with information and documentation about BOINC.
|
|
|
|
|
";
|
2007-06-12 16:15:53 +00:00
|
|
|
|
shuffle($info_sites);
|
|
|
|
|
site_list($info_sites);
|
2006-12-19 22:11:53 +00:00
|
|
|
|
echo "
|
2006-12-04 17:10:39 +00:00
|
|
|
|
<a name=stats></a>
|
|
|
|
|
<h3>Credit statistics</h3>
|
|
|
|
|
<p>
|
|
|
|
|
The following web sites show statistics for one or more BOINC projects.
|
2007-06-20 16:27:27 +00:00
|
|
|
|
These sites use XML-format data exported by BOINC projects,
|
|
|
|
|
as described
|
|
|
|
|
<a href=http://boinc.berkeley.edu/trac/wiki/CreditStats>here</a>.
|
2006-12-04 17:10:39 +00:00
|
|
|
|
If you're interested in running your own site or
|
|
|
|
|
participating in the development efforts,
|
|
|
|
|
please contact the people listed below.
|
|
|
|
|
";
|
|
|
|
|
shuffle($stats_sites);
|
|
|
|
|
site_list($stats_sites);
|
|
|
|
|
echo "
|
|
|
|
|
<a name=sigs></a>
|
2009-03-01 19:00:40 +00:00
|
|
|
|
<h3>Signature images</h3>
|
2006-12-04 17:10:39 +00:00
|
|
|
|
<p>
|
|
|
|
|
The following sites offer dynamically-generated
|
2009-03-01 19:00:40 +00:00
|
|
|
|
images showing your statistics in BOINC projects,
|
|
|
|
|
and/or news from projects.
|
2006-12-04 17:10:39 +00:00
|
|
|
|
Use these in your email or message-board signature.
|
|
|
|
|
";
|
|
|
|
|
shuffle($sig_sites);
|
|
|
|
|
site_list($sig_sites);
|
|
|
|
|
echo "
|
|
|
|
|
<a name=team_stats></a>
|
|
|
|
|
<h3>Team statistics</h3>
|
|
|
|
|
";
|
|
|
|
|
shuffle($team_stats_sites);
|
|
|
|
|
site_list($team_stats_sites);
|
2009-07-16 20:14:57 +00:00
|
|
|
|
if (0) {
|
|
|
|
|
echo "
|
|
|
|
|
<a name=status></a>
|
|
|
|
|
<h3>Project status sites</h3>
|
|
|
|
|
Show if the servers of various projects are up or down.
|
|
|
|
|
<ul>
|
|
|
|
|
";
|
|
|
|
|
//<li> <a href=http://www.esea.dk/esea/bos.asp>BOS (BOINC Online Schedulers></a>
|
|
|
|
|
echo "
|
|
|
|
|
<li> <a href=http://boincprojectstatus.ath.cx/>BOINC Project Status</a>
|
|
|
|
|
</ul>
|
|
|
|
|
";
|
|
|
|
|
}
|
2006-12-04 17:10:39 +00:00
|
|
|
|
echo "
|
2007-01-07 19:45:26 +00:00
|
|
|
|
<a name=misc></a>
|
|
|
|
|
<h3>Miscellaneous</h3>
|
2007-03-30 03:33:57 +00:00
|
|
|
|
";
|
|
|
|
|
$misc_sites = array(
|
|
|
|
|
array("http://www.myboinc.com/", "BOINC Users of the Day"),
|
2007-10-28 15:03:14 +00:00
|
|
|
|
//array("http://groups.myspace.com/BOINConMYSPACE", "BOINC on MySpace"),
|
2007-03-30 03:33:57 +00:00
|
|
|
|
array("http://www.boincuk.com/repository.php", "bunc", "(excellent newsletter produced by BOINC UK)"),
|
2008-08-19 21:33:21 +00:00
|
|
|
|
array("http://www.linkedin.com/groups?gid=678497", "BOINC Users group on LinkedIn"),
|
2007-03-30 03:33:57 +00:00
|
|
|
|
);
|
|
|
|
|
echo "<ul>";
|
|
|
|
|
foreach ($misc_sites as $m) {
|
|
|
|
|
$u = $m[0];
|
|
|
|
|
$t1 = $m[1];
|
|
|
|
|
$t2 = $m[2];
|
|
|
|
|
echo "<li> <a href=$u>$t1</a> $t2
|
|
|
|
|
";
|
|
|
|
|
}
|
|
|
|
|
echo "
|
2006-11-28 03:27:13 +00:00
|
|
|
|
</ul>
|
2006-12-05 03:50:36 +00:00
|
|
|
|
<a name=skins></a>
|
|
|
|
|
<h3>Skins for the BOINC Manager</h3>
|
|
|
|
|
<ul>
|
|
|
|
|
<li> <a href=http://www.crunching-family.at/download-center/>Crunching Family Skin Download</a>
|
2008-01-21 14:02:22 +00:00
|
|
|
|
<li> <a href=http://www.grid-france.fr/tutoriaux/comment-personnaliser-boinc-au-couleur-de-l-equipe-france/>Skin for Equipe France (WCG)</a>
|
2008-04-06 03:15:36 +00:00
|
|
|
|
<li> <a href=http://wcg.userfriendly.org/resources.jspx>Skin for team UserFriendly.org</a>
|
2006-12-05 03:50:36 +00:00
|
|
|
|
</ul>
|
2006-12-04 17:10:39 +00:00
|
|
|
|
<a name=sites></a>
|
|
|
|
|
<h3>Other BOINC-related web sites</h3>
|
2005-05-29 07:19:27 +00:00
|
|
|
|
";
|
|
|
|
|
list_start();
|
|
|
|
|
echo "
|
2004-12-15 07:08:54 +00:00
|
|
|
|
<tr><th>Language</th><th>Site</th></tr>
|
|
|
|
|
";
|
|
|
|
|
|
2005-11-19 19:49:46 +00:00
|
|
|
|
language("Belgium (Dutch/French/English)", array(
|
2007-09-28 18:27:02 +00:00
|
|
|
|
site("http://www.boinc.be", "www.boinc.be"),
|
2007-10-02 03:19:03 +00:00
|
|
|
|
site("http://icewolves.plid.be", "IceWolves"),
|
2005-02-16 01:21:41 +00:00
|
|
|
|
));
|
2008-02-11 23:38:31 +00:00
|
|
|
|
language("Bulgarian", array(
|
|
|
|
|
site("http://www.boinc-bulgaria.net", "BOINC Bulgaria")
|
|
|
|
|
));
|
2006-05-15 00:27:15 +00:00
|
|
|
|
language("Catalan", array(
|
|
|
|
|
site("http://www.boinc.cat", "BOINC.cat"),
|
|
|
|
|
));
|
2004-12-15 07:08:54 +00:00
|
|
|
|
language("Chinese", array(
|
2005-02-02 22:58:46 +00:00
|
|
|
|
site("http://boinc.equn.com/", "boinc.equn.com")
|
2004-12-15 07:08:54 +00:00
|
|
|
|
));
|
|
|
|
|
language("Czech", array(
|
2007-06-11 21:56:56 +00:00
|
|
|
|
site("http://www.czechnationalteam.cz/", "Czech National Team"),
|
2005-03-11 23:13:27 +00:00
|
|
|
|
site("http://www.boincteamcz.net/", "BOINC Team CZ"),
|
2004-12-15 07:08:54 +00:00
|
|
|
|
site("http://www.boinc.cz/", "www.boinc.cz")
|
|
|
|
|
));
|
|
|
|
|
language("Danish", array(
|
2006-11-14 17:30:59 +00:00
|
|
|
|
site("http://boincdenmark.dk", "BOINC@Denmark"),
|
2004-12-15 07:08:54 +00:00
|
|
|
|
site("http://www.boinc.dk", "www.boinc.dk"),
|
|
|
|
|
site("http://www.setihome.dk", "www.setihome.dk")
|
|
|
|
|
));
|
2005-02-16 01:21:41 +00:00
|
|
|
|
language("Dutch", array(
|
2005-11-28 00:40:54 +00:00
|
|
|
|
site("http://www.dutchpowercows.org/", "Dutch Power Cows
|
|
|
|
|
</a>(also <a href=http://gathering.tweakers.net/forum/list_topics/5>forums</a>)"
|
|
|
|
|
),
|
2005-02-23 06:19:20 +00:00
|
|
|
|
site("http://www.seti.nl/content.php?c=boincmain",
|
2005-02-16 01:21:41 +00:00
|
|
|
|
"SETI@Netherlands"
|
2005-10-26 05:38:40 +00:00
|
|
|
|
),
|
|
|
|
|
site("http://www.boinc.be", "www.boinc.be"),
|
2004-12-15 07:08:54 +00:00
|
|
|
|
));
|
2005-01-28 04:57:56 +00:00
|
|
|
|
language("English", array(
|
2008-01-28 15:48:09 +00:00
|
|
|
|
site("http://z15.invisionfree.com/The_Boinc_Bar/index.php?act=idx", "The BOINC Bar"),
|
2008-01-07 23:33:48 +00:00
|
|
|
|
site("http://www.s15.invisionfree.com/Crunchers_Inc/index.php?act=idx", "Crunchers Inc."),
|
2007-11-07 17:23:29 +00:00
|
|
|
|
site("http://www.calmchaosonline.com/", "Calm Chaos"),
|
2006-08-13 04:27:24 +00:00
|
|
|
|
site("http://www.teamphoenixrising.net/", "Team Phoenix Rising"),
|
2006-07-11 03:44:14 +00:00
|
|
|
|
site("http://www.unitedmacs.com/", "United Macs"),
|
2008-04-06 03:15:36 +00:00
|
|
|
|
//site("http://sirans-boincnews.com/", "Siran's BOINC Projects News Site"),
|
2006-02-22 22:21:40 +00:00
|
|
|
|
site("http://www.ukboincteam.org.uk/", "UK BOINC Team"),
|
2006-02-20 07:55:32 +00:00
|
|
|
|
site("http://symbion.madnezz.com/", "Symbion"),
|
2006-02-07 20:53:46 +00:00
|
|
|
|
site("http://scotlandsseti.blogspot.com/", "Megacruncher's Blog"),
|
2006-02-13 06:53:46 +00:00
|
|
|
|
site("http://www.bc-team.org/", "BOINC Confederation"),
|
2008-04-06 03:15:36 +00:00
|
|
|
|
//site("http://theclangers.net/", "The Clangers"),
|
2005-11-26 20:56:54 +00:00
|
|
|
|
site("http://www.free-dc.org/", "Free-DC"),
|
2005-11-26 00:12:44 +00:00
|
|
|
|
site("http://forums.anandtech.com/categories.aspx?catid=39&entercat=y", "TeAm Anandtech"),
|
|
|
|
|
site("http://www.boinc-australia.net", "BOINC@Australia"),
|
2008-04-06 03:15:36 +00:00
|
|
|
|
//site("http://www.boinc-doc.net", "boinc-doc.net"),
|
2006-03-21 06:52:30 +00:00
|
|
|
|
site("http://www.boincuk.com/", "BOINC UK and Team Lookers"),
|
2008-04-06 03:15:36 +00:00
|
|
|
|
//site("http://www.kazlev.karoo.net/", "TeamACC (Arthur C. Clarke fans)"),
|
2005-11-13 05:50:11 +00:00
|
|
|
|
site("http://www.setiusa.net/", "SETI.USA"),
|
2005-04-18 17:54:03 +00:00
|
|
|
|
site("http://www.boincsynergy.com/", "BOINC Synergy"),
|
2008-04-06 03:15:36 +00:00
|
|
|
|
//site("http://www.esea.dk/esea/boinc.asp", "Earth Space Exploration Agency"),
|
2006-08-01 21:22:25 +00:00
|
|
|
|
site("http://www.tswb.org", "Team Starfire World BOINC"),
|
2005-01-28 04:57:56 +00:00
|
|
|
|
//site("http://www.geocities.com/boinc_volunteers/", "BOINC Volunteers")
|
|
|
|
|
));
|
2004-12-15 07:08:54 +00:00
|
|
|
|
language("Estonian", array(
|
2006-03-30 00:45:24 +00:00
|
|
|
|
site("http://boinc.tmac.pri.ee", "boinc.tmac.pri.ee"),
|
2007-04-24 23:21:42 +00:00
|
|
|
|
//site("http://setimehed.net/", "setimehed.net"),
|
2004-12-15 07:08:54 +00:00
|
|
|
|
));
|
|
|
|
|
language("Finnish", array(
|
2005-10-02 18:23:38 +00:00
|
|
|
|
site( "http://www.universe-examiners.org/",
|
2004-12-15 07:08:54 +00:00
|
|
|
|
"Universe Examiners"),
|
2007-04-24 23:21:42 +00:00
|
|
|
|
//site("http://news.universe-examiners.org/asennus/boinc.html",
|
|
|
|
|
// "BOINC instructions in Finnish"
|
|
|
|
|
//),
|
2004-12-15 07:08:54 +00:00
|
|
|
|
));
|
|
|
|
|
language("French", array(
|
2009-04-06 18:27:02 +00:00
|
|
|
|
site("http://boinc.starwars-holonet.com/", "Star Wars [FR]"),
|
2008-04-06 03:15:36 +00:00
|
|
|
|
//site("http://wwww.boinc-2tf.org", "2TF Asso"),
|
2005-02-01 21:11:08 +00:00
|
|
|
|
site("http://boincfrance.org", "BOINCFRANCE.ORG"),
|
2006-03-15 19:27:37 +00:00
|
|
|
|
site("http://www.boinc-af.org", "L'Alliance Francophone"),
|
2004-12-15 07:08:54 +00:00
|
|
|
|
));
|
|
|
|
|
language("German", array(
|
2008-04-06 03:15:36 +00:00
|
|
|
|
//site("http://www.boinc-gemeinschaft.de/", "BOINC Gemeinschaft"),
|
2008-05-11 23:11:16 +00:00
|
|
|
|
site("http://www.gridcommunity.de/index.php", "International Grid Community"),
|
2007-02-06 16:41:33 +00:00
|
|
|
|
site("http://www.swissteam.net/", "SwissTeam.net"),
|
2006-07-11 03:44:14 +00:00
|
|
|
|
site("http://www.unitedmacs.com/", "United Macs"),
|
2006-04-21 00:02:04 +00:00
|
|
|
|
site("http://www.rechenkraft.net/", "Rechenkraft"),
|
2006-03-17 04:47:51 +00:00
|
|
|
|
site("http://www.seti-leipzig.de/", "SETI-Leipzig"),
|
2006-12-11 23:42:54 +00:00
|
|
|
|
site("http://www.dc-gemeinschaft.com/", "DC - Gemeinschaft"),
|
2006-02-20 07:55:32 +00:00
|
|
|
|
site("http://boinccast.podhost.de/", "BOINCcast (Podcast)"),
|
2005-11-23 01:54:18 +00:00
|
|
|
|
site("http://www.boinc-team.de/", "BOINC@Heidelberg"),
|
2005-06-17 23:12:00 +00:00
|
|
|
|
site("http://www.crunching-family.wins.info/", "Crunching Family"),
|
2005-06-16 20:44:33 +00:00
|
|
|
|
site("http://www.boinc.at/", "www.boinc.at"),
|
2005-06-21 02:17:59 +00:00
|
|
|
|
site("http://www.boinc-halle-saale.de", "BOINC@Halle/Saale"),
|
2006-02-13 06:53:46 +00:00
|
|
|
|
site("http://www.bc-team.org/", "BOINC Confederation"),
|
2005-03-29 00:55:04 +00:00
|
|
|
|
site("http://www.boincfun.tk/", "BOINCfun"),
|
2005-03-05 23:12:31 +00:00
|
|
|
|
site("http://www.setigermany.de", "SETI.Germany"),
|
2006-12-04 17:10:39 +00:00
|
|
|
|
site("http://www.sar-hessen.org", "Team Science and Research Hessen"),
|
2004-12-15 07:08:54 +00:00
|
|
|
|
site("http://www.boinc.de/", "www.boinc.de"),
|
2008-04-06 03:15:36 +00:00
|
|
|
|
//site( "http://www.boinc-lubeca.de/", "BOINC - LUBECA (Lübeck, Germany)"),
|
2004-12-15 07:08:54 +00:00
|
|
|
|
site( "http://www.boinc-forum.de/", "www.boinc-forum.de"),
|
2008-04-06 03:15:36 +00:00
|
|
|
|
//site( "http://www.emuleatboinc.de/board", "Official eMule @ BOINC Team Page")
|
2004-12-15 07:08:54 +00:00
|
|
|
|
));
|
2005-04-02 00:36:27 +00:00
|
|
|
|
language("Hungarian", array(
|
|
|
|
|
site("http://seti.hwsw.hu/", "HWSW SETI@home Team")
|
|
|
|
|
));
|
2005-02-01 21:11:08 +00:00
|
|
|
|
language("Italian", array(
|
2008-12-01 22:06:24 +00:00
|
|
|
|
site("http://www.boincitaly.org/", "BOINC.Italy"),
|
2005-09-21 21:39:35 +00:00
|
|
|
|
site("http://gaming.ngi.it/forum/forumdisplay.php?f=73", "NGI forum"),
|
2005-02-01 21:11:08 +00:00
|
|
|
|
site("http://it.groups.yahoo.com/group/BOINC-ITALIA/", "BOINC-ITALIA")
|
|
|
|
|
));
|
2004-12-15 07:08:54 +00:00
|
|
|
|
language("Japanese", array(
|
|
|
|
|
site(
|
|
|
|
|
"http://boinc.oocp.org/",
|
|
|
|
|
"translation by Komori Hitoshi")
|
|
|
|
|
));
|
2006-12-19 20:49:12 +00:00
|
|
|
|
language("Korean", array(
|
2009-11-10 22:19:36 +00:00
|
|
|
|
site("http://cafe.naver.com/setikah", "SETIKAH@home"),
|
2006-12-19 20:49:12 +00:00
|
|
|
|
site("http://boincatkorea.xo.st/", "BOINC@KOREA"),
|
|
|
|
|
));
|
|
|
|
|
|
2004-12-15 07:08:54 +00:00
|
|
|
|
language("Polish", array(
|
2007-04-24 23:21:42 +00:00
|
|
|
|
//site("http://www.boinc-polska.org/", "BOINC-Polska.org"),
|
2006-03-03 21:34:03 +00:00
|
|
|
|
site("http://www.boinc.org.pl/", "Team boinc.pl"),
|
2005-12-06 03:18:02 +00:00
|
|
|
|
site("http://www.boinc.prv.pl", "BOINC@Kolobrzeg"),
|
|
|
|
|
site("http://www.boincatpoland.org", "BOINC@Poland"),
|
2009-07-30 17:00:43 +00:00
|
|
|
|
//site("http://www.boinc.pl", "www.boinc.pl"),
|
2009-10-16 00:13:01 +00:00
|
|
|
|
site("http://www.tomaszpawel.republika.pl/", "TomaszPawelTeam"),
|
2010-01-10 21:57:15 +00:00
|
|
|
|
site("http://www.gpuforce.oxyone.pl/", "GPU Force"),
|
2004-12-15 07:08:54 +00:00
|
|
|
|
));
|
|
|
|
|
language("Portuguese", array(
|
2009-01-21 17:36:26 +00:00
|
|
|
|
site( "http://portugalathome.pt.vu/", "Portugal@home"),
|
|
|
|
|
site("http://www.setibr.org/", "SETIBR"),
|
2004-12-15 07:08:54 +00:00
|
|
|
|
));
|
2006-10-11 16:32:59 +00:00
|
|
|
|
language("Romanian", array(
|
|
|
|
|
site( "http://www.boinc.ro/", "SETI@home Romania")
|
|
|
|
|
));
|
2004-12-15 07:08:54 +00:00
|
|
|
|
language("Russian", array(
|
2006-02-22 22:21:40 +00:00
|
|
|
|
site("http://www.boinc.ru", "BOINC.ru"),
|
2006-02-20 07:55:32 +00:00
|
|
|
|
site("http://distributed.ru", "distributed.ru")
|
2004-12-15 07:08:54 +00:00
|
|
|
|
));
|
|
|
|
|
language("Slovak", array(
|
|
|
|
|
site("http://www.boinc.sk/", "www.boinc.sk")
|
|
|
|
|
));
|
2005-04-06 19:41:31 +00:00
|
|
|
|
language("Spanish", array(
|
2008-11-24 20:27:18 +00:00
|
|
|
|
site("http://www.seti.cl/", "BOINC SETI Chile"),
|
2008-06-14 20:38:57 +00:00
|
|
|
|
site("http://www.easyboinc.org/", "Computaci<EFBFBD>n Distribuida"),
|
2008-02-13 04:25:52 +00:00
|
|
|
|
site("http://foro.noticias3d.com/vbulletin/showthread.php?t=192297", "Noticias3D"),
|
2007-09-02 19:39:21 +00:00
|
|
|
|
site("http://elmajo.blogspot.com", "Computaci<EFBFBD>n Distribuida"),
|
2006-03-09 23:40:10 +00:00
|
|
|
|
site("http://efren-canarias.blogcindario.com/", "El Pais De La Computacion"),
|
2006-01-20 08:29:03 +00:00
|
|
|
|
site("http://www.canalboinc.org/modules/news/", "Canal BOINC"),
|
2005-09-08 20:33:04 +00:00
|
|
|
|
site("http://www.boinc-ecuador.com/", "BOINC - Ecuador"),
|
2005-06-11 19:58:57 +00:00
|
|
|
|
site("http://www.hispaseti.org/", "HispaSeti"),
|
2005-04-28 23:40:40 +00:00
|
|
|
|
site("http://www.seti-argentina.com.ar", "BOINC Argentina"),
|
2005-04-06 19:41:31 +00:00
|
|
|
|
site("http://boinc.blogspot.com", "Boinc y Astronomia")
|
|
|
|
|
//site("http://boincspain.shyper.com/", "BOINC Espa<70>a</a>")
|
|
|
|
|
));
|
2004-12-15 07:08:54 +00:00
|
|
|
|
language("Turkish", array(
|
2008-01-06 22:23:51 +00:00
|
|
|
|
site("http://www.turksetiteam.org/", "www.turksetiteam.org"),
|
|
|
|
|
site("http://www.boinctr.com/", "www.boinctr.com")
|
2004-12-15 07:08:54 +00:00
|
|
|
|
));
|
2007-01-09 20:48:41 +00:00
|
|
|
|
language("Ukrainian", array(
|
|
|
|
|
site("http://distributed.org.ua/", "Ukraine - Distributed Computing"),
|
|
|
|
|
));
|
|
|
|
|
|
2004-04-08 08:15:23 +00:00
|
|
|
|
echo "
|
2004-12-15 07:08:54 +00:00
|
|
|
|
</table>
|
|
|
|
|
<p>
|
2003-11-26 18:49:56 +00:00
|
|
|
|
If you'd like to add a web site to this list, please
|
|
|
|
|
<a href=mailto:davea@ssl.berkeley.edu>contact us</a>.
|
2007-12-27 18:37:22 +00:00
|
|
|
|
|
|
|
|
|
<a name=video>
|
|
|
|
|
<h2>BOINC-related videos</h2>
|
|
|
|
|
|
|
|
|
|
<ul>
|
2008-04-06 03:15:36 +00:00
|
|
|
|
<li> <a href=http://www.liftconference.com/distributed-computing-distributed-thinking> Francois Grey at Lift, Feb 2008</a>
|
2008-06-13 16:40:51 +00:00
|
|
|
|
<li> <a href=http://www.youtube.com/watch?v=8iSRLIK-x6A>David Anderson talks about BOINC</a> (2006)
|
|
|
|
|
<li> <a href=http://video.google.com/videoplay?docid=5863868341014543476&hl=en>David Anderson talks at CPDN Open Day (2004)</a> (33 minutes).
|
2007-12-27 18:37:22 +00:00
|
|
|
|
<li> <a href=http://www.youtube.com/watch?v=GzATbET3g54>David Baker talks about Rosetta@home</a>
|
|
|
|
|
</ul>
|
2003-11-26 18:49:56 +00:00
|
|
|
|
";
|
|
|
|
|
page_tail();
|
|
|
|
|
?>
|