-
Notifications
You must be signed in to change notification settings - Fork 1
/
scientist.php
35 lines (30 loc) · 946 Bytes
/
scientist.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
require_once('../inc/util.inc');
function main() {
page_head('Computing with BOINC Central');
text_start();
echo "
<p>
BOINC Central provides computing resources
to support not-for-profit research at
universities and research labs.
<p>
BOINC Central supports the following applications:
<ul>
<li> Autodock Vina.
You can submit jobs through a web interface,
or Raccoon2, using a
<a href=https://github.com/BOINC/Raccoon2_BOINC_Plugin>Plug-in</a>.
</ul>
<p> If you're interested in computing with BOINC Central:
<ul>
<li> <a href=signup.php target=_new>Create an account</a>.
You don't have to install BOINC, though we encourage you to do so.
<li> Fill out <a href=apply.php>this form</a>.
</ul>
";
text_end();
page_tail();
}
main();
?>