-
Notifications
You must be signed in to change notification settings - Fork 9
/
boinc_news.php
2118 lines (2066 loc) · 89.7 KB
/
boinc_news.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
$project_news = array(
array("November 27, 2009",
"An <a href=http://www.lanacion.com.ar/nota.asp?nota_id=1204531>article on
volunteer computing</a> appeared today in the Argentine newspaper <i>La Nacion</i>."
),
array("October 30, 2009",
"The <a href=http://boinc.berkeley.edu/trac/wiki/WorkShop09>Fifth BOINC Workshop</a> was held Oct. 22-23 in Barcelona.
There were 35 attendees and 21 excellent talks;
many of the presentation slides and discussion notes are online."
),
array("October 30, 2009",
"Version 6.10 of the BOINC client software has been released for general use. Download it <a href=http://boinc.berkeley.edu/download.php>here</a>."
),
array("October 28, 2009",
"The Windows versions of 6.6.41 have been recalled
due to a version mismatch with recent Microsoft updates.
Please use the 6.6.38 version until 6.10 is released."
),
array("October 21, 2009",
"An <a href=http://online.wsj.com/article/SB10001424052748703816204574483481567116994.html>article in the Wall Street Journal</a>
discusses the use of volunteer computing in medical research."
),
array("October 12, 2009",
"Welcome to <a href=http://escatter11.fullerton.edu/nfs/>NFS@home</a>,
a new project from California State University Fullerton.
NFS@Home uses volunteer computing to do the lattice sieving step in the Number Field Sieve factorization of large integers."
),
array("October 4, 2009",
"<a href=\"http://www.efmer.eu/boinc/boinc_tasks/\">BoincTasks</a>, a new visual interface to BOINC, has been released for Windows. BoincTasks lets you manage a single computer locally, or all your computers remotely."
),
array("October 1, 2009",
"An <a href=\"http://www.nytimes.com/2009/09/29/science/29grid.html\">article
in the NY Times</a> describes a project using BOINC
to simulate the development of life at the molecular level."
),
array("September 21, 2009",
"The Brazilian TV networks Globonews and Futura recently broadcast
<a href=http://video.globo.com/Videos/Player/Noticias/0,,GIM1053196-7823-A+FILANTROPIA+VIRTUAL+AUXILIA+PESQUISAS+PARA+CURA+DE+DOENCAS,00.html>a report on IBM World Community Grid</a> (in Portuguese)."
),
array("September 4, 2009",
"An article in PCWorld,
<a href=http://www.pcworld.com/article/171126/12_worthy_causes_seek_your_spare_pc_cycles.html>12 Worthy Causes Seek Your Spare PC Cycles</a>,
describes BOINC and 12 projects that use it."
),
array("September 3, 2009",
"Facebook users: check out the
<a href=http://apps.facebook.com/boinc_milestones/>BOINC Milestones</a> app."
),
array("August 24, 2009",
"UNITAR, UNIGE and CERN have agreed to collaborate on a <a href=http://www.unitar.org/citizen_cyberscience_centre_project>Citizen Cyberscience Centre</a>
which, among other things, will promote volunteer computing."
),
array("August 19, 2009",
"The EDGeS project is offering a
<a href=http://edges-grid.eu/web/userforum/3rdtraining>tutorial on
using BOINC for desktop grid computing</a>
on 20 Sept 2009 in Barcelona."
),
array("August 18, 2009",
"Check out <a href=http://www.smh.com.au/technology/new-heroes-with-a-hard-drive-20090815-elsd.html>an article in The Sydney Morning Herald</a>
about volunteer computing in Australia."
),
array("August 3, 2009",
"Intel (in partnership with GridRepublic and BOINC) announces
<a href=http://apps.facebook.com/processors/new.php>Progress Thru Processors</a>,
a Facebook application that makes participating in BOINC simpler and more sociable."
),
array("July 30, 2009",
"<a href=http://event.twgrid.org/isgc2009/asiaathome/wiki/index.php/Main_Page#Workshop_Schedule_and_Presentations>Videos of the talks at the recent Asia@home workshop in Taiwan</a> are now online."
),
array("July 20, 2009",
"Listen to a Podcast of <a href=http://www.rce-cast.com/index.php/Podcast/rce-13-boinc.html>an interview with David Anderson</a> on <a href=http://www.rce-cast.com/>RCE</a>."
),
array("July 15, 2009",
"The Consejería de Educación, Spain, is
<a href=http://jarifa.unex.es/?p=230>using Jarifa to harness the power of 12,000 PCs.</a>"
),
array("June 23, 2009",
"Read <a href=http://www.newswise.com/articles/view/553414/>an article
about Docking@Home</a> in Newswise Science News."
),
array("June 10, 2009",
"Check out <a href=http://dishmag.com/issue96/homestyle/10099/boinc-how-your-computer-can-benefit-all-of-mankind/>BOINC! How your computer can benefit all of mankind</a>, a story in the online <a href=http://dishmag.com/>Dish Magazine</a>."
),
array("June 5, 2009",
"<a href=http://www.icvolunteers.org/>ICVolunteers</a>
is conducting an
<a href=http://www.surveymonkey.com/s.aspx?sm=dOgS3cfUxFKfFbeOy8L3eQ_3d_3d>online poll</a> to study motivation in volunteer computing.
Volunteers are encouraged to complete this poll."
),
array("June 1, 2009",
"Mac users: check out <a href=\"http://boinc.berkeley.edu/addon_item.php?platform=mac&item=http%3A%2F%2Fbrotherbard.com%2Fboinc%2F\">BOINCMenubar 2</a>,
an alternative to the BOINC Manager for Mac OS X."
),
array("May 17, 2009",
"Check out <a href=\"http://365daysofastronomy.org/2009/05/17/may-17th-citizen-scientists-making-a-difference-and-having-fun/\">Citizen Scientists</a>,
a podcast by the 365 Days of Astronomy project."
),
array("May 14, 2009",
"<a href=\"http://boinc.unex.es/planet\">Planet BOINC</a>
is a new RSS feed that combines many different sources of news
about BOINC and volunteer computing."
),
array("May 14, 2009",
"<a href=\"http://www2.warwick.ac.uk/newsandevents/audio/more/tedx/?podcastItem=francois_grey.mp4\">Francois Grey talks about citizen cyber-science</a> at TEDx Warwick."
),
array("May 13, 2009",
"See a <a href=\"http://www.youtube.com/watch?v=igB-vqS3gAc\">video</a> (in Spanish with English subtitles) about Extremadura@home and volunteer computing."
),
array("May 12, 2009",
"An
<a href=\"http://www.nature.com/embor/journal/v10/n5/full/embor200979.html\">article in EMBO reports</a> discusses citizen cyber-science."
),
array("May 1, 2009",
"Simon Lin of Academia Sinica discusses volunteer computing (and thinking) in Asia
on a <a href=\"http://www.bbc.co.uk/worldservice/science/2009/03/000000_digital_planet.shtml\">Podcast on BBC World Service</a>."
),
array("April 29, 2009",
"An <a href=\"http://www.news.cornell.edu/stories/March09/cordes.palfa.einstein.html\">article in Cornell's Chronicle Online</a> discusses
a new application in <a href=http://einstein.phys.uwm.edu/>Einstein@home</a>
that searches for pulsars in binary star systems."
),
array("April 29, 2009",
"Francois Grey discusses Citizen Cyberscience (and BOINC) in <a href=\"http://cerncourier.com/cws/article/cern/38718\">The CERN Courier</a>."
),
array("April 21, 2009",
"A <a href=\"http://event.twgrid.org/isgc2009/asiaathome/wiki/index.php/Main_Page\">workshop on volunteer computing with BOINC</a>
was held in Taipei on 16-17 April.
Lecture outlines and slides are available online.
"
),
array("April 9, 2009",
"BOINC 6.6 has been released to public for Windows and
MacOS X. Please visit the <a href=\"http://boinc.berkeley.edu/download.php\">download</a> page and upgrade today."
),
array("April 6, 2009",
"Check out <a href=http://boinc.starwars-holonet.com/>a new
French-language web site</a> about volunteer computing."
),
array("March 30, 2009",
"<a href=http://boinc.vgtu.lt/vtuathome/>VTU@home</a>,
a project from the Vilnius Gediminas Technical University,
is now listed on the <a href=http://boinc.berkeley.edu/choose_projects.php>Choose
Projects</a> page.
VTU@home serves Lithuanian scientists.
It is currently studying the automated testing
of complex software systems.
"
),
array("March 18, 2009",
"<a href=http://www.isgtw.org/?pid=1001689>Volunteer computing goes East</a> -
a story on upcoming events in Taiwan and Beijing - appears
in International Science Grid This Week.
"
),
array("March 9, 2009",
"A new add-on for Windows,
<a href=\"http://boinc.berkeley.edu/addon_item.php?platform=win&item=http%3A%2F%2Fwww.bc-team.org%2Fdownloads.php%3Fview%3Ddetail%26df_id%3D3\">BOINCcalculator</a>, shows details (trickles, credit, timesteps, checkpoints) of running CPDN jobs."
),
array("March 9, 2009",
"<a href=http://www.cosmologyathome.org/>Cosmology@Home</a>,
a project from the University of Illinois whose goal is to search
for the model that best describes our Universe,
is now listed on the <a href=http://boinc.berkeley.edu/choose_projects.php>Choose
Projects</a> page."
),
array("March 5, 2009",
"BOINC was the subject of a 40-minute radio program (in Polish)
on <a href=http://www.tok.fm/TOKFM/0,89523.html>Tok FM</a>
(click on 'O sile polaczonych komputerow')."
),
array("March 3, 2009",
"We have released BOINC 6.4.7 for Windows. This release contains a
screensaver fix as well as updates to LibCurl(7.19.4) and
OpenSSL(0.9.8j) for some recently published security advisories.
"
),
array("March 1, 2009",
"<a href=http://www.unitedboinc.com/>United BOINC</a>
now offers <a href=http://www.unitedboinc.com/news-sig/>signature images</a>
containing the latest news from your choice of projects.
"
),
array("February 27, 2009",
"We have rolled back to 6.4.5 for our latest stable version until 6.4.7 can be built. Something happened to 6.4.6 on our mirrors."
),
array("February 17, 2009",
"A new add-on program for Windows,
<a href=http://boinc.berkeley.edu/addon_item.php?platform=win&item=http%3A%2F%2Fefmer.eu%2Fboinc%2F>TThrottle</a>,
throttles CPU usage to keep its temperature below a limit you select."
),
array("February 13, 2009",
"A <a href=http://event.twgrid.org/isgc2009/asiaathome/>workshop on volunteer computing</a> will take place 16-17 April 2009 at the Academia Sinica in Taipei, Taiwan, in conjunction with the International Symposium on Grid Computing."
),
array("February 3, 2009",
"Congratulations to <a href=http://www.setibr.org/>SETIBR</a>,
the Brazilian team which,
across several BOINC-based projects,
has achieved the levels of 100K average credit
and 50M total credit."
),
array("January 29, 2009",
"Scientists: it's easier than ever to create a BOINC project -
you don't even need a server!
Instead, you can use the Amazon Elastic Computing Cloud,
with a <a href=http://boinc.berkeley.edu/trac/wiki/CloudServer>virtual machine image</a> created by Derrick Kondo of INRIA."
),
array("January 28, 2009",
"<a href=http://www.extremadurathome.org/extremadurathome/>Extremadura@home</a> is a new kind of account manager in which the choice of projects
is a group decision. It's targeted at Spanish computer owners
but is open to everyone."
),
array("January 27, 2009",
"<a href=http://www.dotsch.de/boinc/Dotsch_UX.html>Dotsch/UX</a>
is an ISO-format Linux distribution, based on Ubuntu Linux,
with the 6.2.15 BOINC client pre-installed.
It lets you easily install and boot from a USB stick, hard disk and
from diskless clients,
and it also has some interfaces to set up the diskless server
and the clients automatically.
Download info is <a href=http://boinc.berkeley.edu/download_all.php>here</a>.
"
),
array("January 22, 2009",
"A <a href=http://boinc.berkeley.edu/images/Cochran_SRL_2009.pdf>paper
about Quake-Catcher Network</a> appeared in
Seismological Research Letters, Jan/Feb 2009."
),
array("January 20, 2009",
"A paper about BOINC,
\"<a href=http://boinc.berkeley.edu/boinc_papers/hicss_08/hicss_08.pdf>Celebrating Diversity in Volunteer Computing</a>\",
has won a Best Paper award at the
42nd Hawaii International Conference on System Sciences."
),
array("January 14, 2009",
"The <a href=http://docking.gcl.cis.udel.edu/>Docking@home</a>
project has a spiffy new web site, and welcomes new volunteers."
),
array("December 22, 2008",
"An <a href=http://bits.blogs.nytimes.com/2008/12/22/d-wave-arms-smoking-gun-proof-of-quantum-computer/>article about AQUA@home</a> appeared
in today's New York Times online."
),
array("December 17, 2008",
"BOINC now supports <a href=cuda.php>computing using NVIDIA GPUs</a>.
Two projects currently have GPU-enabled applications:
<a href=http://gpugrid.net/>GPUgrid.net</a> and
<a href=http://setiathome.berkeley.edu/>SETI@home</a>.
If your computer has a recent NVIDIA GPU,
you can compute 2X to 10X faster than with your CPU alone.
"
),
array("December 17, 2008",
"A press release from NVIDIA announcing BOINC's GPU support
is available in
<a href=http://www.imim.es/news/view.php?ID=37>English</a>,
<a href=http://www.imim.es/noticias/view.php?ID=91>Spanish</a>,
and <a href=http://www.imim.es/noticies/view.php?ID=183>Catalan</a>."
),
array("December 16, 2008",
"Version 6.4 of the BOINC client software has been released.
This is the recommended version for Windows and Linux.
<a href=\"http://boinc.berkeley.edu/download.php\">Upgrade now</a>.
"
),
array("December 10, 2008",
"<a href=http://aqua.dwavesys.com/>AQUA@home</a> is now open to volunteers. AQUA (Adiabatic QUantum Algorithms) is a research project, based at D-Wave Systems, Inc., whose goal is to predict the performance of superconducting adiabatic quantum computers on a variety of hard problems arising in fields ranging from materials science to machine learning."
),
array("December 8, 2008",
"IBM World Community Grid and Harvard launch
<a href=http://www.reuters.com/article/environmentNews/idUSTRE4B70QS20081208>an application to study a new type of photovoltaic solar cells</a>.
"
),
array("December 1, 2008",
"Wikipedia'a <a href=http://en.wikipedia.org/wiki/Wikipedia:Today%27s_featured_article/December_1,_2008>featured article for today</a> is about Rosetta@home."
),
array("November 29, 2008",
"Check out <a href=http://www.boincitaly.org/>BOINC.Italy</a>,
a new Italian BOINC portal."
),
array("November 29, 2008",
"Rechenkraft.net is <a href=http://www.rechenkraft.net/wiki/index.php?title=Verein:E-Petition/en>petitioning the German government</a>
to use non-security sensitive institutional computers to
assist scientific research."
),
array("November 20, 2008",
"See a video celebrating the
<a href=http://www.worldcommunitygrid.org/newsletter/video/viewIDedicate.do>fourth anniversary of IBM World Community Grid</a>."
),
array("November 20, 2008",
"<a href=http://jarifa.unex.es/>Jarifa</a>,
a system for organizational grid computing using BOINC,
has a new name, logo, and domain."
),
array("November 7, 2008",
"On 27-28 November 2008, AlmereGrid and EDGeS will organise a two-day <a href=http://edges-grid.eu/web/userforum/1sttraining>Desktop Grid workshop</a> in Almere, The Netherlands."
),
array("October 17, 2008",
"Read <a href=\"http://www.isgtw.org/?pid=1001391\">Reaching for the Exa-scale with volunteer computing</a> in International Science Grid This Week."
),
array("September 30, 2008",
"An <a href=\"http://www.isgtw.org/?pid=1001381\">article on
the recent BOINC workshop in Grenoble</a>
appeared in International Science Grid This Week."
),
array("September 29, 2008",
"An article on <a href=\"http://ps3grid.net\">PS3grid.net</a> project,
which does scientific computing on Sony Playstations, appeared recently in
<a href=\"http://www.sciencemag.org/cgi/content/long/321/5895/1425b\">Science</a>."
),
array("September 27, 2008",
"See an <a href=\"http://boinc.berkeley.edu/eff.php\">open letter
to the Electronic Frontier Foundation</a>."
),
array("September 25, 2008",
"Read <a href=\"http://www.economist.com/science/displaystory.cfm?story_id=12295198\">an article about Quake Catcher Network</a> in Economist.com."
),
array("September 25, 2008",
"<a href=\"http://registro.ibercivis.es/\">Ibercivis</a>,
a joint project of several Spanish universities and research institutes,
is now open to the public.
Sign up and support Spanish research."
),
array("September 20, 2008",
"Welcome back to <a href=http://docking.cis.udel.edu/>Docking@Home</a>,
a project at the University of Delaware that studies
protein-ligand interactions (and BOINC itself)."
),
array("September 15, 2008",
"<a href=http://forja.unex.es/projects/ogm>OGM (Organizational Grid Manager)</a>
has been released by the University of Extremadura.
OGM is a system for grid computing
on organizational resources using BOINC."
),
array("September 4, 2008",
"The talks and tutorials from the upcoming BOINC Workshop
(Sept 10-12) will be broadcast
<a href=http://boinc.berkeley.edu/trac/wiki/WorkShop08#webcast>live on the Web</a>."
),
array("September 4, 2008",
"BOINC is featured on the
<a href=http://www.udel.edu/udaily/2009/sep/boinc090308.html>University of Delaware news site</a>."
),
array("August 26, 2008",
"Welcome to the
<a href=\"http://nqueens.ing.udec.cl/\">NQueens@home</a> project,
from the Universidad de Concepción in Chile,
which seeks to find the solutions to the N Queens problem
for values of 26 and greater."
),
array("August 19, 2008",
"LinkedIn users: join a
<a href=\"http://www.linkedin.com/groups?gid=678497\">BOINC Users group</a>."
),
array("July 30, 2008",
"BOINC 6.2 is now the recommended version for all platforms.
<a href=\"http://boinc.berkeley.edu/download.php\">Upgrade now</a>."
),
array("July 29, 2008",
"The <a href=\"http://qcn.stanford.edu\">Quake Catcher Network</a>
detected today's <a href=\"http://qcn.stanford.edu/EVENTS/2008_211/\">
magnitude 5.4 earthquake in Los Angeles</a> within 7 seconds."
),
array("July 24, 2008",
"The <a href=\"http://gcl.cis.udel.edu/EastCoast08/\">First
East Coast BOINC Meeting</a>
will take place August 29 2008 at the University of Delaware.
"
),
array("July 17, 2008",
"GPU computing has arrived to BOINC!
The <a href=\"http://www.gpugrid.net\">GPUGRID.net</a> project
from the Barcelona Biomedical Research Park (PRBB)
uses CUDA-capable NVIDIA chips
to create an infrastructure for biomolecular simulations.
(Currently available for Linux64; other platforms to follow soon.
To participate, follow the instructions on the web site)."
),
array("July 10, 2008",
"<a href=\"http://boinc.berkeley.edu/wiki/BOINC_logo_merchandise\">BOINC-logo merchandise</a> (T-shirts, mouse pads) is now available."
),
array("July 9, 2008",
"New add-on software: <a href=\"http://boinc.berkeley.edu/addon_item.php?platform=web&item=phpBOINCer-1.5.zip\">phpBOINCer</a>,
a PHP script to display BOINC stats on a webpage,
and store or retrieve these stats to a mySQL database."
),
array("June 16, 2008",
"<a href=logo/logo_3d>3-D versions of the BOINC logo</a>
are now available; thanks to John from Ireland for creating these."
),
array("June 2, 2008",
"BOINCstats and BAM! are now available in
<a href=http://br.boincstats.com/>Brazilian Portuguese</a> and
<a href=http://tr.boincstats.com/>Turkish</a>."
),
array("May 31, 2008",
"The <a href=http://orbit.psi.edu/>Orbit@home</a> project
from the <a href=http://www.psi.edu/>Planetary Science Institute</a>
is open for public beta test.
Orbit@home focuses on celestial mechanics,
Their first scientific application, SurveySimulator,
simulates the performance of astronomical surveys searching
for Near Earth Objects (NEOs) such as asteroids and comets."
),
array("May 18, 2008",
"The source code for BOINCoid (a port of BOINC to Java and to
Google's Android platform, by computer scientists from Technion)
has been <a href=http://sourceforge.net/projects/boincoid>released on Sourceforge.net</a>."
),
array("May 9, 2008",
"BOINC volunteer Werner Klein is
<a href=http://www.sternengucker.org/index.php/artikel/interview-seti-ist-heute-bereits-erfolgreich/>interviewed
in Sternengucker.org</a> (German)."
),
array("May 9, 2008",
"The <a href=http://boincfaq.mundayweb.com/>BOINC FAQ Service</a>
is now available in Spanish and French
(as well as English, German, and Dutch)."
),
array("May 7, 2008",
"<a href=http://www.predictioncenter.org/casp8/index.cgi>CASP8</a>,
a competition for protein structure prediction, starts soon.
<a href=http://www.rechenkraft.net>Rechenkraft.net</a> is
sponsoring a team credit-race to support
<a href=http://boinc.fzk.de/poem>POEM@home</a>,
one of the CASP participants.
Results will be reported at
<a href=http://starmageddon.dyndns.org/pboinc/index.php>Planet BOINC</a>."
),
array("May 6, 2008",
"Alpha testing of BOINC software is done by volunteers.
Many thanks to <a href=http://isaac.ssl.berkeley.edu/alpha/top_testers.php>this month's top testers</a>."
),
array("May 5, 2008",
"Version 3.0 of <a href=http://www.conmunix.net/offene-projekte/boinc-lcs/>Boinc LCS</a> (a free PHP script for monitoring remote BOINC clients) has been released."
),
array("Apr 20, 2008",
"The BOINC user documentation has been moved from
<a href=trac/wiki/RunningBoinc>Trac</a>
to <a href=wiki/User_manual>Mediawiki</a>,
which provides better navigation and editing interfaces.
Please help us fix the remaining broken links."
),
array("Apr 7, 2008",
"Congratulations to <a href=http://boinc.netsoft-online.com/e107_plugins/boinc/get_user.php?cpid=0c6075252a929a1c9e1a887d1cd85ac5&html=1>NEZ</a>,
whose contribution to BOINC-based projects recently exceeded 10 TeraFLOPS.
This would (and should) rank 136th on the
<a href=http://www.top500.org/>Top 500 Supercomputer</a> list."
),
array("Mar 31, 2008",
"The BOINC client software is now available for Fedora 7 and higher
from official repositories.
To install it, just type <code>yum install boinc-client boinc-manager</code> as root.
Thanks to Milos Jakubicek, with help from Eric Myers and Debarshi Ray."
),
array("Mar 28, 2008",
"Read about a new BOINC-based project,
<a href=http://qcn.stanford.edu/>Quake Catcher Network</a>,
in
<a href=http://www.wired.com/science/planetearth/news/2008/03/quake_network>Wired</a> and
<a href=http://www.nature.com/news/2008/080326/full/452397a.html>Nature News</a>."
),
array("Mar 20, 2008",
"Watch an excellent talk by CERN's Francois Grey,
<a href=http://www.liftconference.com/distributed-computing-distributed-thinking>From distributed computing to distributed thinking</a>."
),
array("Mar 5, 2008",
"Read <a href=http://www.linuxinsider.com/story/Volunteer-Computing-and-the-Search-for-Big-Answers-61943.html>Volunteer Computing and the Search for Big Answers</a>, an article about BOINC and volunteer computing on LinuxInsider.com."
),
array("Feb 27, 2008",
"Scientific progress goes BOINC! Read about the
<a href=http://boinc.berkeley.edu/trac/wiki/ProjectPapers>Scientific
publications of BOINC-based projects</a>."
),
array("Feb 12, 2008",
"Where is BOINC headed? Marcin Cieslak's vision:
<a href=http://boinc.berkeley.edu/cieslak.pdf>BOINC on JXTA</a>."
),
array("Feb 11, 2008",
"Bulgarian BOINC users:
find forums and information in your language at
<a href=http://www.boinc-bulgaria.net>BOINC Bulgaria</a>."
),
array("Feb 7, 2008",
"<a href=http://biology.polytechnique.fr/proteinsathome>Proteins@Home</a>
has resumed operations.
Check out their <a href=http://www3.interscience.wiley.com/cgi-bin/abstract/117860966/ABSTRACT?CRETRY=1&SRETRY=0>paper on computational protein design</a>
in the Journal of Computational Chemistry."
),
array("Jan 31, 2008",
"The <a href=http://bob.myisland.as/tsp/>TSP project</a>
is featured in International Science Grid This Week: <a href=http://www.isgtw.org/?pid=1000844>Traveling salesman meets distributed computing</a>."
),
array("Jan 31, 2008",
"BOINC has broken the PetaFLOP barrier!
According to <a href=http://boincstats.com/>BOINCStats</a>,
106 million units of credit were granted yesterday,
which translates to 1.06 PetaFLOP/sec.
Congratulations to all projects and participants."
),
array("Jan 24, 2008",
"A paper describing results of the <a href=http://qah.uni-muenster.de/>Quantum Monte Carlo at Home</a> project recently appeared in the
<a href=http://pubs.acs.org/cgi-bin/abstract.cgi/jpcafh/asap/abs/jp077592t.html>Journal of Physical Chemistry A (JPCA)</a>."
),
array("Jan 15, 2008",
"A new article from the <a href=http://www.planetary.org>Planetary Society</a>:
<a href=http://www.planetary.org/programs/projects/setiathome/setiathome_20080115.html>From SETI@home to Hominid Fossils: Citizen Cyberscience Reshapes Research Landscape</a>."
),
array("Jan 14, 2008",
"The cross-project statistics site
<a href=http://www.allprojectstats.com/>All Project Stats.com</a>
has many improvements and new features,
include <a href=http://www.allprojectstats.com/signature.php>credit-based signature images</a> for users and teams."
),
array("Jan 10, 2008",
"A new competition for BOINC teams,
<a href=http://www.myboinc.com/FormulaBoinc/>Formula BOINC</a>,
is based on their position with projects (as in Formula 1 racing)
rather than overall credit.
This rewards teams that are diversified across many projects."
),
array("Dec 26, 2007",
"A story in the Chicago Tribune, \"<a href=http://www.chicagotribune.com/services/newspaper/printedition/tuesday/chi-computer_25dec25,0,2528641.story>Bit by bit, home computers aid science</a>\",
highlights <a href=http://www.cosmologyathome.org/>Cosmology@home</a>."
),
array("Dec 18, 2007",
"<a href=http://boinc.umiacs.umd.edu/>The Lattice Project</a>,
based at the University of Maryland
Center for Bioinformatics and Computational Biology,
is now open to volunteers.
Lattice runs several applications, and supplies computing power to
a number of Life Sciences researchers.
Current areas of study include
evolutionary relationships based on DNA sequence data;
bacterial, plasmid, and virus protein sequences;
and biological diversity in nature reserves. "
),
array("Dec 5, 2007",
"Watch a <a href=http://www.youtube.com/watch?v=GzATbET3g54>YouTube video</a> about the science behind <a href=http://boinc.bakerlab.org/rosetta/>Rosetta@home</a>."
),
array("Dec 5, 2007",
"The <a href=http://bob.myisland.as/tsp/>TSP</a>
(Traveling Salesman Problem) project is using BOINC to
find the shortest path between the capitals of the lower 48 states."
),
array("Dec 3, 2007",
"This web site, and the BOINC-Wide Teams site,
will be down for about 18 hours starting at 3 PM PST, Dec 6."
),
array("November 28, 2007",
"Live in Washington DC? Get together with other BOINC users via
<a href=http://opensource.meetup.com/84/?gj=sj2>Meetup</a>
(or <a href=http://opensource.meetup.com/>create a Meetup
in your own city</a>)."
),
array("November 16, 2007",
"<a href=http://boinc.gorlaeus.net/>Leiden Classical</a> allows students (and the public)
to submit particle-system simulation jobs,
and is thus a resource for both education and research.
The job-submission system used by Leiden Classical is now
<a href=http://boinc.berkeley.edu/trac/wiki/UserJobs>included in the BOINC source code distribution</a>."
),
array("November 2, 2007",
"BOINC needs more volunteer programmers!
If you're proficient in PHP and MySQL, C++ and WxWidgets,
or C++ system programming,
please <a href=http://boinc.berkeley.edu/trac/wiki/DevProjects>read
about how you can help</a>."
),
array("October 22, 2007",
"The BOINC-based <a href=http://www.bbc.co.uk/sn/climateexperiment>BBC
Climate Change Experiment</a> has won the prestigious
<a href=http://www.prix-europa.de/>Prix Europa</a>
award in the Internet category."
),
array("October 21, 2007",
'Conmunix has released version 3.0 beta of
<a href=http://www.conmunix.net/boinc-lcs>Boinc LCS</a>
(Live Client State), a PHP script that allows you to monitor
the current state and other information from each of
your BOINC clients.'
),
array("October 18, 2007",
"BOINC user John Koulouris has written <a href=http://www.angelfire.com/jkoulouris-boinc/>The Big BOINC! Projects and Chronology Page</a>,
a brief history of BOINC."
),
array("October 17, 2007",
"Congratulations to the <a href=http://www.ukboincteam.org.uk/>UK BOINC Team</a>,
which today became the first UK-specific team to
pass the 100 million combined credits mark."
),
array("October 17, 2007",
"An article in Nature,
<a href=http://www.nature.com/news/2007/071016/full/449765a.html>The shape of protein structures to come</a>, discusses the goals and progress of the
<a href= http://boinc.bakerlab.org/rosetta/>Rosetta@home</a> project from the University of Washington."
),
array("October 12, 2007",
"LHC@home has moved from CERN to the University of London.
Read about it <a href=http://www.interactions.org/cms/?pid=1025457>here</a>."
),
array("October 4, 2007",
"The National Science Foundation has awarded a three-year grant,
NSF award #OCI-0721124, to the BOINC project.
This will support our development efforts through August 2010."
),
array("September 26, 2007",
"The Third Pan-Galactic BOINC Workshop took place 5-6 Sept. in Geneva.
The proceedings, including talk slides and notes from
the breakout sessions, are
<a href=http://boinc.berkeley/edu/trac/wiki/WorkShop07/Summary>here</a>."
),
array("September 25, 2007",
"Check out the <a href=http://boinc.iaik.tugraz.at/>SHA-1 Collision Search Graz</a>
project, which is based at the Graz University of Technology
and does research in cryptography."
),
array("September 24, 2007",
"Team founders: you can now make your team
<a href=teams/>BOINC-wide</a>,
meaning that it will be created on all
current and future BOINC projects."
),
array("September 24, 2007",
"A one-day session on BOINC will be presented at the
<a href=http://acgrid.in2p3.fr>Advanced Computing and GRID technologies for Research</a> school in Hanoi, November 5-16, 2007."
),
array("September 21, 2007",
"A <a href=http://boinc.berkeley.edu/boinc_papers/client_sch_eval/client_sch_eval.pdf>paper about scheduling in BOINC</a>
will appear in the 3rd IEEE International Conference on e-Science and Grid Computing. Banagalore, India, December 10-13 2007."
),
array("September 7, 2007",
"The new BOINC logo is now available in
<a href=logo.php>a variety of formats and resolutions.</a>"
),
array("August 17, 2007",
"World Community Grid has announced that it is
<a href=http://www.worldcommunitygrid.org/forums/wcg/viewthread?thread=15715 >migrating fully to BOINC</a>.
Welcome to all WCG participants!"
),
array("July 25, 2007",
"BOINC finally has a new logo!
Many thanks Michal Krakowiak, the graphic designer who created it.
The logo (and icons based on it)
will soon appear on the BOINC client software
as well as the web site."
),
array("July 23, 2007",
"<a href=images/africa_workshop_7_07.jpg><img align=right src=images/workshop_200.jpg></a>
The Africa@home workshop on volunteer computing with BOINC,
sponsored by the Geneva International Academic Network (GIAN),
was held recently at the African Institute for Mathematical Sciences in Muizenberg, South Africa.
<br clear=all>"
),
array("July 20, 2007",
"A newly-launched project, <a href=http://eternity2.net/>Eternity2.net</a>,
offers a chance to compute for a share of a US$2,000,000 prize."
),
array("July 20, 2007",
"Team leaders: check out the
<a href=http://www.boincteams.com/>BOINC Team Leaders Forum</a>,
a place to chat and discuss team-building on BOINC projects."
),
array("July 16, 2007",
"If you use the Yahoo! Widget Engine,
check out version 1.1 of the <a href=http://boinc.berkeley.edu/addon_item.php?platform=browser&item=BOINC_server_status.zip>BOINC Server Status</a> widget."
),
array("July 16, 2007",
"BOINC is now the preferred client software at
<a href=http://worldcommunitygrid.org>World Community Grid</a>."
),
array("July 12, 2007",
"<a href=http://boinc.gorlaeus.net/>Leiden Classical</a>
is using BOINC for education - it provides a
<a href=http://boinc.gorlaeus.net/ClassicalBuilder.php>
high-performance computing resource</a> for
students of Theoretical Chemistry at Leiden University."
),
array("July 10, 2007",
"<a href=http://boinc.berkeley.edu/images/gw.jpg border=0><img align=right src=http://boinc.berkeley.edu/images/gw_small.jpg></a>
A growing number of 'skins' for the BOINC simple GUI are available
from <a href=http://crunching-family.at/dlc/>crunching-family.at</a>.
Here's an example.
"
),
array("July 6, 2007",
"Welcome to a new web site with cross-project BOINC statistics:
<a href=http://statsnstones.tswb.org/>Team Starfire World BOINC Stats 'N Stones</a>."
),
array("July 5, 2007",
"Windows users:
<a href=http://www.nuchill.de/nboinc/>version 2.0 of nBOiNC</a>,
an add-on application for viewing your up-to-the-minute credit totals,
has been released."
),
array("July 4, 2007",
"Docking@home is moving from Texas to Delaware. Volunteers should detach from the project; you will be emailed when the project is alive in Delaware."
),
array("July 2, 2007",
"Read <a href=http://www.isgtw.org/?pid=1000527>Volunteer computing: Grid or not Grid?</a> on International Science Grid This Week."
),
array("July 2, 2007",
"Amir Alexander of The Planetary Society talks about
<a href=http://www.boincuk.com/amir_alexander.mp3>SETI, distributed computing, and space exploration</a> in an interview by Mike of BOINC UK."
),
array("June 28, 2007",
"Linux users: if you use bash,
check out a cool <a href=http://boinc.berkeley.edu/trac/wiki/BashCommandCompletion>script</a>
that provides command completion in both boinc_cmd and boinc_client
(thanks to Frank S. Thomas)."
),
array("June 27, 2007",
"Help increase volunteer computing power -
<a href=http://boinc.berkeley.edu/trac/wiki/BoincPr>publicize BOINC</a> by writing to computer magazines."
),
array("June 26, 2007",
"There's a great new statistics site,
<a href=http://www.allprojectstats.com/>BOINC All Project Stats</a>.
It has lists of the top users and teams,
recent changes in rankings, graphs showing history and
breakdown by project, and many other features.
You can also see the stats and rankings
of an individual volunteer or team across all BOINC projects.
Thanks to Markus Tervooren for putting this together!"
),
array("June 26, 2007",
"There are reports that version 5.10.8 of the BOINC client software
causes a problem on Windows XP Pro in which the desktop becomes empty.
If you see this, please uninstall 5.10.8 and install version 5.8.16."
),
array("June 3, 2007",
"BOINCstats and BAM! are now viewable in Finnish
(<a href=http://fi.boincstats.com>http://fi.boincstats.com</a>). "
),
array("May 31, 2007",
"Sony Playstation 3 owners: researchers at the Barcelona
Biomedical Research Park have launched
<a href=http://www.ps3grid.net/>PS3GRID</a>,
a BOINC-based project whose application
(molecular dynamics simulations) runs on the
PS3's Cell processor, on Linux."
),
array("May 29, 2007",
"Check out <a href=http://www.youtube.com/watch?v=UNDcMAePKYY&eurl=http%3A%2F%2Fcb%2Dtools%2Epytalhost%2Ede%2Fblog%2F>a video promoting BOINC</a> on YouTube.</a>"
),
array("May 28, 2007",
"A <a href=http://www.kd-web.info/boinc_tutorial_wcg-english.php>Flash guide to using BOINC with IBM World Community Grid</a> is available in Czech and English."
),
array("May 14, 2007",
"The <a href=http://boinc.berkeley.edu/trac/wiki/WorkShop07>3rd Pan-Galactic
BOINC Workshop</a> will be held 5-6 September 2007 in Geneva, Switzerland."
),
array("May 9, 2007",
"The BOINC Virtual Server - a VMWare virtual machine
preconfigured with BOINC and all prerequisite software -
is <a href=http://boinc.berkeley.edu/trac/wiki/ServerIntro>now available</a>.
This greatly simplifies the task of creating a BOINC projects.
Thanks to Christian Beer for creating this."
),
array("May 8, 2007",
"As of about May 1, BOINC projects have had
<a href=http://boinc.berkeley.edu/dev/forum_thread.php?id=1777>over one million volunteers</a>."
),
array("May 6, 2007",
"An excellent article on BOINC and the projects using it
appeared today in the Catalan newspaper AVUI.
It is available in PDF (pages
<a href=http://media.avui.cat/pdf/07/0506/070506diari034.pdf>one</a>
and <a href=http://media.avui.cat/pdf/07/0506/070506diari035.pdf>two</a>)
and also as a <a href=http://paper.avui.cat/article/societat/73609/computacio/ciutadana.html>web page</a>.
Thanks to Dr. Jordi Portell i de Mora for telling us about it."
),
array("May 6, 2007",
"<a href=http://www.boincstats.com/>BOINCstats and BAM!</a>
are now available in 15 languages.
As of today, they are now viewable in Swedish
(<a href= http://se.boincstats.com> http://se.boincstats.com</a>)."
),
array("May 3, 2007",
"The source code behind <a href=http://boinc.netsoft-online.com/>BOINC Combined Stats</a> is now <a href=trac/wiki/CreditStats#Codeexamples>available via Subversion</a>. This may be helpful for other statistics site developers."
),
array("April 24, 2007",
"<a href=http://www.gridrepublic.org/>GridRepublic</a> announces
a significant upgrade to their web site, including improved
registration workflow and better integration with IBM World Community Grid
(including WCG sub-project registration)."
),
array("April 23, 2007",
"Krystof Dolezal's
<a href=http://www.kd-web.info/clanky.php>Flash-based BOINC tutorials</a>
are now available in English and Slovak,
as well as Czech."
),
array("April 23, 2007",
"BOINCstats and BAM! are now available in the Czech language
(<a href=http://cz.boincstats.com>http://cz.boincstats.com</a>).
Thanks to Zelvuska for the translation."
),
array("April 17, 2007",
"<a href=http://desktopgrid.hu/>Desktopgrid.hu</a>
has been created by the Computer and Automation Research Institute
(SZATAKI) of the Hungarian Academy of Sciences (MTA).
It provides information (and software downloads) for using
BOINC for <a href=dg.php>desktop Grid computing</a>."
),
array("April 16, 2007",
"BOINC is now using <a href=http://trac.edgewall.org/>Trac</a>,
an integrated software project management system.
In particular:
1) the BOINC source code repository now uses Subversion;
2) the BOINC bug database has been moved to Trac;
3) documentation will be moved to a Wiki.
See <a href=trac/>the BOINC/Trac page</a>.
"
),
array("April 11, 2007",
"The BBC documentary 'Meltdown',
which highlights <a href=http://climateprediction.net>Climateprediction.net</a>,
has been nominated for
a <a href=http://www.bafta.org/site/page129.html>British Academy of
Film and Television Arts</a> academy award."
),
array("April 4, 2007",
"Dr. Anderson gave the keynote talk,
<a href=talks/ipdps_07_kn.ppt>Volunteer Computing: Planting the Flag</a>,
at the PCGrid 2007 workshop,
held at the IPDPS conference in Long Beach on March 30."
),
array("March 29, 2007",
"If you can read Czech, czech out some excellent
<a href=http://www.kd-web.info/clanky.php>Flash-based BOINC tutorials</a>."
),
array("March 23, 2007",
"Africa@home (with support from the
Geneva International Academic Network)
is sponsoring an
<a href=images/africa_at_home_workshop.pdf>intensive one-week workshop on volunteer computing</a>
for qualified African students,
to be held at the African Institute for Mathematical Sciences
in Muizenberg, South Africa, 16-22 July 2007."
),
array("March 9, 2007",
"<img align=right src=images/stamps/stamp-rosetta.png>
Don't use them for postage, but check out the
<a href=images/stamps>BOINC stamps</a>
created by Myster65 and Rebirther."
),
array("March 6, 2007",
"The article <a href=http://www.linux-magazine.com/issue/71/Distributed_Applications_With_BOINC.pdf>Idle Cycles - building distributed applications with BOINC</a> Seil appears in the Oct 2006 issue of
<a href=http://www.linux-magazine.com/issue/71>Linux Magazine</a>.
In it, author Marc Seil
provides a detailed description of how to set up a BOINC project."
),
array("March 1, 2007",
"With <a href=http://boincpe.schreiter.info/>BOINCpe</a>
you can run a dedicated BOINC machine using a RAM disk,
starting from only 256 MB of total RAM.
This lets you operate a BOINC farm more energy-efficiently
or to use machines without hard disk drives for BOINC."
),
array("February 28, 2007",
"The BOINC web server recently underwent a
hardware and software upgrade. Certain projects and
pages may still be offline as we continue to configure
the new system."
),
array("February 8, 2007",
"Marc Seil gave a talk on setting up a BOINC server
at the recent <a href=http://www.linuxdays.lu>LinuxDays</a>
conference in Luxembourg.
His slides are <a href=contrib/boinc_v1.3.pdf>here</a>."
),
array("February 5, 2007",
"<a href=http://gridrepublic.org>GridRepublic</a>
has been selected as a finalist for the Web Awards
at the 2007 SXSW Interactive Festival. Please
<a href=https://secure.sxsw.com/peoples_choice/>click here</a>
to cast your vote for them at the SXSW website.
"
),
array("February 3, 2007",
"The documentation on Creating BOINC Projects is now available as
<a href=http://boinc.berkeley.edu/boinc.pdf>one big PDF file</a>."
),
array("January 24, 2007",
"The <a href=http://boincfaq.mundayweb.com/>BOINC FAQ Service</a>
answers many questions about using BOINC.
It is available in English, German, and Dutch."
),
array("January 19, 2007",
"Check out a
<a href=http://youtube.com/watch?v=kCYlZ8-l5jc>TV news segment</a>
and a <a href=http://www.bbc.co.uk/sn/climateexperiment/>web site</a>
about the results of the recently-completed
BBC Climate Change Experiment.
On January 21 BBC aired a documentary on the results of this project;
an excerpt is <a href=http://www.youtube.com/watch?v=mNud-goRBgE>here</a>."
),
array("January 18, 2007",
"The paper \"<a href=http://research.microsoft.com/research/pubs/view.aspx?type=Technical%20Report&id=1259>Reporting@Home: Delivering Dynamic Graphical Feedback to Participants in Community Computing Projects</a>\"
describes how Rosetta@home delivers personalized
graphical progress reports to its volunteers."
),
array("January 17, 2007",
"Linux users: check out
<a href=http://kde-apps.org/content/show.php?content=44237>KBoincMgr</a>,
a replacement for the BOINC Manager.
KBoincMgr can manage multiple BOINC clients,
and has other features too numerous to mention."
),
array("January 17, 2007",
"On Sunday 21 Jan. at 8pm BBC 1 will broadcast
<a href=http://www.bbc.co.uk/bbcone/listings/programme.shtml?day=sunday&service_id=4223&filename=20070121/20070121_2000_4223_18875_60>Climate Change: Britain Under Threat</a>.
This will include results from the BBC and CPDN experiments,
and an interview with CPDN staff.
In addition, results should appear on the <a href=http://www.bbc.co.uk/sn/hottopics/climatechange/>BBC Climate Change website</a>."
),
array("January 7, 2007",
"The <a href=http://abcathome.com>ABC@home</a> project,
based at <a href=http://www.math.leidenuniv.nl/>Leiden University</a>
in Holland, is now open.
ABC@home is studying the <a href=http://en.wikipedia.org/wiki/Abc_conjecture>ABC conjecture</a>,
a major open problem in mathematics."
),
array("January 6, 2007",
"MySpace users: check out the
<a href=http://groups.myspace.com/BOINConMYSPACE>BOINC on MySpace</a> group."
),
array("December 29, 2006",
"A <a href=http://boinc.berkeley.edu/boinc_papers/sched/paper.pdf>paper about BOINC client scheduling</a> will appear in the
Workshop on Large-Scale, Volatile Desktop Grids held in conjunction with the IEEE International Parallel & Distributed Processing Symposium (IPDPS), March 30, 2007, Long Beach."
),
array("December 28, 2006",
"The <a href=http://biology.polytechnique.fr/proteinsathome>Proteins@Home</a> project is now open.
Proteins@Home is a large-scale protein structure prediction project,
and is based at the École Polytechnique in Paris."
),
array("December 21, 2006",
"Some AOL users are unable to attach to some projects.
A work-around for this problem is described
<a href=http://boinc.berkeley.edu/aol.php>here</a>."
),
array("December 8, 2006",
"<a href=http://boinc.berkeley.edu/skins.php><img align=right src=images/boinccast_small.png></a>
Olaf Bornack of
<a href=http://www.boinc-halle-saale.de/>Team BOINC@Halle/Saale</a>
has supplied
<a href=http://boinc.berkeley.edu/http://boinc.berkeley.edu/trac/wiki/ManagerSkin#stencils>stencils</a>
for creating skins for the new BOINC GUI.
These have been used to make skins with
<a href=http://boinc.berkeley.edu/http://boinc.berkeley.edu/trac/wiki/SkinExamples>BOINCcast,
BOINC@Halle/Saale, and BOINCmas!</a> themes.
<br clear=all>
"
),
array("December 6, 2006",
"Linux users: check out the new
<a href=http://www.vanheusden.com/boinctail/>BOINCTail</a> add-on."
),
array("December 4, 2006",
"BOINC's new <a href=http://boinc.berkeley.edu/help.php>Online Help system</a>
lets you get help from volunteers
by talking with them using <a href=http://www.skype.com>Skype</a>.
Volunteers speak several languages."
),
array("December 4, 2006",
"It hasn't been released yet,
but already several skins are available for BOINC Manager version 5.8
(currently under test as version 5.7.x).
Check out <a href=http://www.crunching-family.at/download-center/>Crunching Family Skin Downloads</a>."
),
array("December 4, 2006",
"A recent article in the Bulletin of the Howard Hughes Medical Institute,
<a href=http://www.hhmi.org/bulletin/nov2006/pdf/Cast.pdf>A Cast of Thousands<a/>, discusses the
<a href=http://boinc.bakerlab.org/rosetta/>Rosetta@home</a> project
and its army of dedicated volunteers."
),
array("November 27, 2006",
"Jean-Michel Penasse of L'Alliance Francophone
has create a web site,
<a href=http://www.myboinc.com/>www.myboinc.com</a>,
showing the User of the Day of all BOINC projects
going back to October 8 2006. Check it out!"
),
array("November 23, 2006",
"<b>Docking@home participants</b>:
the project is unreachable because of a campus-wide network
connection failure at Univ. of Texas - El Paso.
Please check back periodically."
),
array("November 15, 2006",
"BOINCstats is now available in Spanish.
Thanks to Miquel Pericas for the translation.
BOINCstats in Spanish can be visited at
<a href=http://es.boincstats.com>http://es.boincstats.com</a>."
),
array("November 7, 2006",