-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex - 副本.html
1122 lines (989 loc) · 47.1 KB
/
index - 副本.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>CHINESE OPEN SCIENCE NETWORK</title>
<!-- MDB icon -->
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">
<link rel="stylesheet" href="css/google_fonts.css">
<!-- Google Fonts Roboto -->
<!-- <link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
/> -->
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- MDB -->
<link rel="stylesheet" href="css/mdb.min.css" />
<!-- Custom styles -->
<link rel="stylesheet" href="css/custom.css" />
<style>
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary text-white mb-4">
<a class="navbar-brand" href="#">
<img
src="img/logo_w.png"
height="50"
alt=""
loading="lazy"
/>
</a>
<!-- Toggle button -->
<button
class="navbar-toggler"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link text-white" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="#Members">Members</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="https://github.com/Chinese-Open-Science-Network/site/issues" target="_blank">Articles</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="https://github.com/Chinese-Open-Science-Network/site/labels/Resources" target="_blank">Resources</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="events.html">Events</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="positions.html">Positions</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="gathering.html">Gathering</a>
</li>
</ul>
<button type="button" class="btn btn-outline-light btn-rounded btn-sm mr-2"><a href="http://addevent.open-sci.cn" target="_blank" class="text-white">Add event</a></button>
<button type="button" class="btn btn-outline-light btn-rounded btn-sm mr-2"><a href="http://addposition.open-sci.cn" target="_blank" class="text-white">Add position</a></button>
<button type="button" class="btn btn-outline-light btn-rounded btn-sm mr-5"><a href="http://addgathering.open-sci.cn" target="_blank" class="text-white">Add gathering</a></button>
</div>
</nav>
</header>
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="card introduction mb-4">
<div class="card-body m-3">
<h2 class="h1-responsive">Chinese Open Science Network</h2>
<h2 class="h1-responsive">可重复性与开放科学中文圈</h2>
<p class="lead">Chinese Open Science Network (COSN), a grass-root network for promoting open science practices and awareness of reproducibility in the Chinese-speaking community. COSN is one of the Community of Open Scholarship Grassroots Networks that aimed at promoting open science and changing the research culture globally. COSN is run by Early Career Researchers (ECRs) and for ECRs, especially for the next generation researchers. </p>
<hr class="my-2">
<p>Please see executive committee for more about our team! <a href="#Members" class="btn bg-primary btn-sm text-white" role="button">About us</a>
</p>
</div>
</div>
<div class="card mb-4">
<div class="card-body m-3 latest_article0">
<h5 class="card-subtitle mb-2 text-muted">Latest Article</h5>
<h4 class="card-title">Latest Article</h4>
<p class="card-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>
<button type="button" class="btn btn-outline-primary btn-md"><a href=''>Read more</a></button>
</div>
</div>
<!-- Card group -->
<div class="card-group">
<!-- Card -->
<div class="card mb-4 ">
<!--Card content-->
<div class="card-body m-2 latest_article1">
<!--Title-->
<h4 class="card-title">Article 2</h4>
<!--Text-->
<p class="card-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>
<a href="#!" class="card-link">Read more</a>
<!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
<!-- <button type="button" class="btn btn-outline-primary btn-md"><a href=''>Read more</a></button> -->
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="card mb-4 mx-3">
<!--Card content-->
<div class="card-body m-2 latest_article2">
<!--Title-->
<h4 class="card-title">Article 3</h4>
<!--Text-->
<p class="card-text">To be filled.</p>
<a href="#!" class="card-link">Read more</a>
<!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
<!-- <button type="button" class="btn btn-outline-primary btn-md">Read more</button> -->
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="card mb-4">
<!--Card content-->
<div class="card-body d-flex align-items-center justify-content-center">
<h4 class="card-title font-weight-bolder"><a href="https://github.com/Chinese-Open-Science-Network/site/issues">More articles</a></h4>
<!-- <>More articles -->
<!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
<!-- <button type="button" class="btn btn-outline-primary btn-lg">More articles</button> -->
</div>
</div>
<!-- Card -->
</div>
<!-- Card group -->
</div>
<div class="col-md-4 ">
<div class="card mb-4" id='Events'>
<div class="card-header bg-primary text-white fs-6">
<span>Forthcoming Events</span>
<button type="button" class="btn btn-light btn-rounded btn-sm float-end mr-1" onclick="show_opentalk_events()">OpenTalk Only</button>
<button type="button" class="btn btn-light btn-rounded btn-sm float-end mr-1"><a href="https://airtable.com/shrel07ziEqV882kv/tbljjWLoRerJePlmF">Calender</a></button>
</div>
<div class="list-group">
<!-- <a href="https://open-sci.cn/events.html" class="list-group-item list-group-item-action flex-column align-items-start">
<time class="icon float-start mr-3">
<strong class="date-month"></strong>
<span class="date-day"></span>
</time>
<p class="mb-2"></p>
<small class="name text-muted float-start"></small> <small class="date text-muted float-end"></small>
</a>
-->
</div>
</div>
<ul class="nav nav-tabs font-weight-bold" id="myTab" role="tablist">
<li class="nav-item">
<a class="nav-link fs-6 active" id="positions-tab" data-mdb-toggle="tab" href="#positions" role="tab" aria-controls="positions"
aria-selected="true">Positions</a>
</li>
<li class="nav-item">
<a class="nav-link fs-6" id="gathering-tab" data-mdb-toggle="tab" href="#gathering" role="tab" aria-controls="gathering"
aria-selected="false">Gathering</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane fade show active" id="positions" role="tabpanel" aria-labelledby="positions-tab">
<div class="list-group">
<a href="positions.html" class="list-group-item list-group-item-action flex-column align-items-start">
<div class="d-flex w-100 justify-content-between">
<h6 class="mb-2 fw-bold"></h6>
<small></small>
</div>
<p class="mb-2"></p>
</a>
<a href="positions.html" class="list-group-item list-group-item-action flex-column align-items-start">
<div class="d-flex w-100 justify-content-between">
<h6 class="mb-2 fw-bold"></h6>
<small></small>
</div>
<p class="mb-2"></p>
</a>
<a href="positions.html" class="list-group-item list-group-item-action flex-column align-items-start">
<div class="d-flex w-100 justify-content-between">
<h6 class="mb-2 fw-bold"></h6>
<small></small>
</div>
<p class="mb-2"></p>
</a>
<a href="positions.html" class="list-group-item list-group-item-action flex-column align-items-start">
<div class="d-flex w-100 justify-content-between">
<h6 class="mb-2 fw-bold"></h6>
<small></small>
</div>
<p class="mb-2"></p>
</a>
</div>
</div>
<div class="tab-pane fade" id="gathering" role="tabpanel" aria-labelledby="gathering-tab">
<a href="gathering.html" class="list-group-item list-group-item-action flex-column align-items-start">
<div class="d-flex w-100 justify-content-between">
<h6 class="mb-2 fw-bold"></h6>
<small></small>
</div>
<p class="mb-2"></p>
</a>
<a href="gathering.html" class="list-group-item list-group-item-action flex-column align-items-start">
<div class="d-flex w-100 justify-content-between">
<h6 class="mb-2 fw-bold"></h6>
<small></small>
</div>
<p class="mb-2"></p>
</a>
<a href="gathering.html" class="list-group-item list-group-item-action flex-column align-items-start">
<div class="d-flex w-100 justify-content-between">
<h6 class="mb-2 fw-bold"></h6>
<small></small>
</div>
<p class="mb-2"></p>
</a>
<a href="gathering.html" class="list-group-item list-group-item-action flex-column align-items-start">
<div class="d-flex w-100 justify-content-between">
<h6 class="mb-2 fw-bold"></h6>
<small></small>
</div>
<p class="mb-2"></p>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<h4 class="text-center" id='Members'>Executive Committees (Ordered in surnames)</h4>
<hr>
<!-- Card group -->
<div class="row row-cols-1 row-cols-md-3 mx-5">
<!-- Card -->
<div class="col">
<div class="card mb-4 mx-2">
<!--Card image-->
<div class="view overlay text-center">
<img class="rounded-circle mt-3 avatar" src="img/CHEN, Yanxiu.jpg"
alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body text-center">
<!--Title-->
<h4 class="card-title"><strong>CHEN, Yanxiu (Sharon)</strong></h4>
<hr><!-- Subtitle -->
<p class="card-text text-primary "><strong class="text-primary">Post-doc, the Institute of Psychology, Chinese Academy of Sciences, China</strong></p>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading2">
<button
class="accordion-button collapsed"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#flush-collapse2"
aria-expanded="false"
aria-controls="flush-collapse2"
>
<p class="card-text mx-auto">TODO.</p>
</button>
</h2>
<div
id="flush-collapse2"
class="accordion-collapse collapse"
aria-labelledby="flush-heading2"
data-mdb-parent="#accordionFlushExample"
>
<div class="accordion-body text-left">
Sharon is currently a postdoc research at the Institute of Psychology, Chinese Academy of Sciences. Her expertise is using computational models to understand the underlying mechanisms of human cognition including memory. She is also a scuba diver and a sci-fi fan.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="col">
<div class="card mb-4 mx-2">
<!--Card image-->
<div class="view overlay text-center">
<img class="rounded-circle mt-3 avatar" src="img/GAO, Mengyu.jpg"
alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body text-center">
<!--Title-->
<h4 class="card-title"><strong>GAO, Mengyu (Miranda)</strong></h4>
<hr><!-- Subtitle -->
<p class="card-text text-primary "><strong class="text-primary">Assistant professor, Beijing Normal University, China</strong></p>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading4">
<button
class="accordion-button collapsed"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#flush-collapse4"
aria-expanded="false"
aria-controls="flush-collapse4"
>
<p class="card-text mx-auto">TODO.</p>
</button>
</h2>
<div
id="flush-collapse4"
class="accordion-collapse collapse"
aria-labelledby="flush-heading4"
data-mdb-parent="#accordionFlushExample"
>
<div class="accordion-body text-left">
Dr. Mengyu Gao is a postdoctoral researcher at the University of Utah and will be joining Beijing Normal University, China as an assistant professor in Spring, 2022. Dr Gao obtained her PhD in Developmental Paychology and a minor in Quantitative Psychology at the University of Notre Dame in 2019. She studies how the perinatal environment and family relationships confer risk and resilience for the development of psychopathology, with a particular focus on child emotion regulation. She fuels herself by outdoor activities, board games, cooking, and companies of her family.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="col">
<div class="card mb-4 mx-2">
<!--Card image-->
<div class="view overlay text-center">
<img class="rounded-circle mt-3 avatar" src="img/GE, Jianqiao.jpg"
alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body text-center">
<!--Title-->
<h4 class="card-title"><strong>GE, Jianqiao</strong></h4>
<hr><!-- Subtitle -->
<p class="card-text text-primary "><strong class="text-primary">Peking University, China</strong></p>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading4">
<button
class="accordion-button collapsed"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#flush-collapse4"
aria-expanded="false"
aria-controls="flush-collapse4"
>
<p class="card-text mx-auto">TODO.</p>
</button>
</h2>
<div
id="flush-collapse4"
class="accordion-collapse collapse"
aria-labelledby="flush-heading4"
data-mdb-parent="#accordionFlushExample"
>
<div class="accordion-body text-left">
Jianqiao Ge is teaching at Academic for Advanced Interdisciplinary Studies(AAIS), Peking University. Her research interests are focused on scientific studies of brain intelligence and social neuroscience. She is the Principle Investigator/Co-Investigator of more than 10 research grants supported by Ministry of Science and Technology of China, National Natural Science Foundation of China, and Beijing Municipal Science & Technology Commission. She has published more than 20 referred research articles on leading academic journals such as PNAS, and awarded 2 national patents. Dr.Ge received her Ph.D. in psychology, B.S in physics, a double B.S in mathematics and applied mathematics, and a double B.S in economics from Peking University. She was a postdoctoral fellow at the University of Chicago.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="col">
<div class="card mb-4 mx-2">
<!--Card image-->
<div class="view overlay text-center">
<img class="rounded-circle mt-3 avatar" src="img/GENG, Haiyang.jpg"
alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body text-center">
<!--Title-->
<h4 class="card-title"><strong>GENG, Haiyang</strong></h4>
<hr><!-- Subtitle -->
<p class="card-text text-primary "><strong class="text-primary">Post-doc, The University of Hong Kong, China</strong></p>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading2">
<button
class="accordion-button collapsed"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#flush-collapse2"
aria-expanded="false"
aria-controls="flush-collapse2"
>
<p class="card-text mx-auto">Computational Psychiatry.</p>
</button>
</h2>
<div
id="flush-collapse2"
class="accordion-collapse collapse"
aria-labelledby="flush-heading2"
data-mdb-parent="#accordionFlushExample"
>
<div class="accordion-body text-left">
Dr. Haiyang Geng is a postdoc researcher in Dr. Xiaoqing Hu's lab at The University of Hong Kong. His current research focuses on memory, decision and psychopathology (i.e. anxiety, depression and schizophrenia) by using computational modeling and advanced neuroimaging approaches. In 2012, Haiyang Geng obtained his bachelor degree in bioinformatics at Harbin Medical University. After that, tremendous interest and curiosity drive him to enter the field of cognitive neuroscience. During his master, he worked with Dr. Xuebing Li in the Institute of Psychology, Chinese Academy of Science on the topic of exploring neural mechanisms of anxiety. In 2015, he got his master degree in cognitive neuroscience. During 2015-2016, he worked with Dr. Shaozheng Qin at Beijing Normal University on modulation of stress, anxiety on working memory. During 2016-2020, he joined the Ph.D. program at the University of Groningen. During his Ph.D., Haiyang was supervised by prof. André Aleman and prof. Yue-Jia Luo. His Ph.D. research is to examine how disrupted prediction processes may contribute to a variety of psychiatric symptoms (i.e. anxiety, hallucination and apathy) by using multiple neuroimaging approaches including brain activation, connectivity (i.e. psychophysiological interaction (PPI)) and dynamic functional connectivity (i.e. sliding window, K-means and phase synchronization), graph theory (i.e. modularity analysis).
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="col">
<div class="card mb-4 mx-2">
<!--Card image-->
<div class="view overlay text-center">
<img class="rounded-circle mt-3 avatar" src="img/HU, Chuan-Peng.jpg"
alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body text-center">
<!--Title-->
<h4 class="card-title"><strong>HU, Chuan-Peng</strong></h4>
<hr><!-- Subtitle -->
<p class="card-text text-primary "><strong class="text-primary">Professor, Nanjing Normal University, China</strong></p>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading1">
<button
class="accordion-button collapsed"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#flush-collapse1"
aria-expanded="false"
aria-controls="flush-collapse1"
>
<p class="card-text mx-auto">An enthusiast of open science.</p>
</button>
</h2>
<div
id="flush-collapse1"
class="accordion-collapse collapse"
aria-labelledby="flush-heading1"
data-mdb-parent="#accordionFlushExample"
>
<div class="accordion-body text-left">
Dr. Hu Chuan-Peng is currently a faculty member of the School of Psychology, Nanjing Normal University. In 2017, Chuan-Peng received his PhD degree in Psychology at the Department of Psychology, Tsinghua University. After that, he worked as a post-doc at the Leibniz Institute for Resilience Research (LIR). He started his journey in open science and metascience after two failed replications of published papers during his master and PhD training. He became an ambassador of the Center for Open Science since 2016. Now, Chuan-Peng's research interests include metascience and Bayesian modelling in social cognition.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="col">
<div class="card mb-4 mx-2">
<!--Card image-->
<div class="view overlay text-center">
<img class="rounded-circle mt-3 avatar" src="img/JIN, Haiyang.jpg"
alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body text-center">
<!--Title-->
<h4 class="card-title"><strong>JIN, Haiyang</strong></h4>
<hr><!-- Subtitle -->
<p class="card-text text-primary "><strong class="text-primary">Postdoctoral associate, New York University Abu Dhabi, United Arab Emirates</strong></p>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading6">
<button
class="accordion-button collapsed"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#flush-collapse6"
aria-expanded="false"
aria-controls="flush-collapse6"
>
<p class="card-text mx-auto">A supporter of the "New Statistics".</p>
</button>
</h2>
<div
id="flush-collapse6"
class="accordion-collapse collapse"
aria-labelledby="flush-heading6"
data-mdb-parent="#accordionFlushExample"
>
<div class="accordion-body text-left">
Dr. Haiyang Jin is a postdoctoral associate in Dr. Olivia Cheung's lab at the New York University Abu Dhabi. He obtained his Ph.D. in psychology at the University of Auckland, New Zealand, under the supervision of Prof. William G. Hayward, Assoc/Prof. Paul M. Corballis, and Assoc/Prof. Sam Schwarzkopf. He is interested in understanding face perception, holistic face processing, and vision sciences using psychophysics, EEG/ERP, fMRI, and eye-tracking. He is also a big fan of statistics, e.g., (generalized) linear mixed-effects modeling, Bayesian hierarchical modeling, and the "new statistics". Personal website: https://haiyangjin.github.io/.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="col">
<div class="card mb-4 mx-2">
<!--Card image-->
<div class="view overlay text-center">
<img class="rounded-circle mt-3 avatar" src="img/JIN, Shuxian.jpg"
alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body text-center">
<!--Title-->
<h4 class="card-title"><strong>JIN, Shuxian</strong></h4>
<hr><!-- Subtitle -->
<p class="card-text text-primary "><strong class="text-primary">PhD Candidate, Vrije Universiteit Amsterdam, the Netherlands</strong></p>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading7">
<button
class="accordion-button collapsed"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#flush-collapse7"
aria-expanded="false"
aria-controls="flush-collapse7"
>
<p class="card-text mx-auto">An explorer of interdependence.</p>
</button>
</h2>
<div
id="flush-collapse7"
class="accordion-collapse collapse"
aria-labelledby="flush-heading7"
data-mdb-parent="#accordionFlushExample"
>
<div class="accordion-body text-left">
Shuxian Jin is a Ph.D. candidate in social psychology at the Department of Experimental and Applied Psychology, Vrije Universiteit Amsterdam. Her research interest focuses on situational influences on human cooperation and interdependence. She applies meta-analysis, survey and field study to understand (a) how structural features affect cooperation in social dilemmas, (b) conflicts of interest and the psychology of cooperation, and (c) daily interdependence and cooperation in different ecologies. During her Ph.D., she co-developed the Cooperation Databank (CoDa) - A machine-readable history of cooperation research to search and select studies for on-demand meta-analysis (https://cooperationdatabank.org/). She is currently involved in the creation of a meta-analysis database of leadership studies. Personal webpage: https://www.vupsy.nl/staff-members/shuxian-jin/
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="col">
<div class="card mb-4 mx-2">
<!--Card image-->
<div class="view overlay text-center">
<img class="rounded-circle mt-3 avatar" src="img/WANG, Qing.jpg"
alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body text-center">
<!--Title-->
<h4 class="card-title"><strong>WANG, Qing (Vincent)</strong></h4>
<hr><!-- Subtitle -->
<p class="card-text text-primary "><strong class="text-primary">Postdoc Fellow, Montreal Neurological Institute, McGill University, Canada</strong></p>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading3">
<button
class="accordion-button collapsed"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#flush-collapse3"
aria-expanded="false"
aria-controls="flush-collapse3"
>
<p class="card-text mx-auto">An open source estimator for brain connectivity.</p>
</button>
</h2>
<div
id="flush-collapse3"
class="accordion-collapse collapse"
aria-labelledby="flush-heading3"
data-mdb-parent="#accordionFlushExample"
>
<div class="accordion-body text-left">
Dr. Qing Wang (Vincent) is currently a postdoc Fellow and photographer at the NeuroDataScience-ORIGAMI laboratory, McConnell Brain Imaging Centre, The Neuro (Montreal Neurological Institute-Hospital), McGill University, Montreal, Canada. He received his PhD degree in Information Science in 2017 and started his research related to brain imaging since then. His research interests lies broadly in data science related to large scale multi-model neuroimaging processing and analysis including: 1) Reproducibile neuroimging biomakers for neurodegenerative diseases; 2) Causal inference in observational neuroimaging data and normative modeling; 3) s/d/fMRI and i/M/EEG modeling and processing; 4) Human behavior modeling based on electrical records; 5) Data visualization. He is also interested in promoting open science with tutorials (Git/GitHub, fMRIPrep, maching learning in neuroimaging etc.). He is one of the main contributors to the tri-national China-Cuba-Canada project and one of the origial CONP (Canadian Open Neuroscience Platform) members.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="col">
<div class="card mb-4 mx-2">
<!--Card image-->
<div class="view overlay text-center">
<img class="rounded-circle mt-3 avatar" src="img/WANG, Xindi.jpg"
alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body text-center">
<!--Title-->
<h4 class="card-title"><strong>WANG, Xindi</strong></h4>
<hr><!-- Subtitle -->
<p class="card-text text-primary "><strong class="text-primary">Beijing Intelligent Brain Cloud, Inc., Beijing, China</strong></p>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading8">
<button
class="accordion-button collapsed"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#flush-collapse8"
aria-expanded="false"
aria-controls="flush-collapse8"
>
<p class="card-text mx-auto">A neuroscience coder.</p>
</button>
</h2>
<div
id="flush-collapse8"
class="accordion-collapse collapse"
aria-labelledby="flush-heading8"
data-mdb-parent="#accordionFlushExample"
>
<div class="accordion-body text-left">
Dr. Xindi Wang is now a senior algorithm engineer at Beijing Intelligent Brain Cloud, Inc., Beijing, China. He is a code contributor and maintainer of GRETNA, REST, DPABI, and contributor of CIVET.
During 2011-2018, he was supervised by Prof. Yufeng Zang and Prof. Yong He in the National Key Laboratory of Cognitive Neuroscience and Learning at Beijing Normal University and tried to explore differentiated hubs in structural human networks. After obtaining his PhD degree, he move to Montreal Neurological Institute (MNI) and work with Prof. Alan C Evans. In 2021, He joined Beijing Intelligent Brain Cloud, Inc. and continue to contribute on brain MR imaging methodology.
His current research focuses on the quality control of multi-modal MRI from multi-site. He is also interested in improving MR imaging preprocessing by using deep learning.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="col">
<div class="card mb-4 mx-2">
<!--Card image-->
<div class="view overlay text-center">
<img class="rounded-circle mt-3 avatar" src="img/YANG, Jinbiao.jpg"
alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body text-center">
<!--Title-->
<h4 class="card-title"><strong>YANG, Jinbiao</strong></h4>
<hr><!-- Subtitle -->
<p class="card-text text-primary "><strong class="text-primary">PhD Candidate, Max Planck Institute for Psycholinguistics, the Netherlands</strong></p>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading5">
<button
class="accordion-button collapsed"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#flush-collapse5"
aria-expanded="false"
aria-controls="flush-collapse5"
>
<p class="card-text mx-auto">Lazy but curious. <a href="https://github.com/ray306"><i class="fab fa-github"></i></a></p>
</button>
</h2>
<div
id="flush-collapse5"
class="accordion-collapse collapse"
aria-labelledby="flush-heading5"
data-mdb-parent="#accordionFlushExample"
>
<div class="accordion-body text-left">
todo
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="col">
<div class="card mb-4 mx-2">
<!--Card image-->
<div class="view overlay text-center">
<img class="rounded-circle mt-3 avatar" src="img/YANG, Yufang.jpg"
alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body text-center">
<!--Title-->
<h4 class="card-title"><strong>YANG, Yufang</strong></h4>
<hr><!-- Subtitle -->
<p class="card-text text-primary "><strong class="text-primary">Postdoctoral fellow, Freie universität Berlin, Germany</strong></p>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading9">
<button
class="accordion-button collapsed"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#flush-collapse9"
aria-expanded="false"
aria-controls="flush-collapse9"
>
<p class="card-text mx-auto">TODO.</p>
</button>
</h2>
<div
id="flush-collapse9"
class="accordion-collapse collapse"
aria-labelledby="flush-heading9"
data-mdb-parent="#accordionFlushExample"
>
<div class="accordion-body text-left">
Dr. Yu-Fang Yang is a postdoctoral fellow at the Freie universität Berlin's department of Education and Psychology, Division General Psychology and Neuropsychology, Germany. After completing her master's degree in psychology in education at the University of Bristol in Engalnd. She obtained her PhD in psychology at the University Paris-Sacalary in France. Her research focus on the social interactio, and how does the visual brain direct the eyes towards the most diagnostic feature on faces - relevant facial features have different information values depending on emotional expression. She is also actively promoting Open science principles, such as EEGManyPipeline and ARTEM-IS: agreed reorting template for EEG methodology and other projects.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="col">
<div class="card mb-4 mx-2">
<!--Card image-->
<div class="view overlay text-center">
<img class="rounded-circle mt-3 avatar" src="img/ZHANG, Han.jpg"
alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body text-center">
<!--Title-->
<h4 class="card-title"><strong>ZHANG, Han</strong></h4>
<hr><!-- Subtitle -->
<p class="card-text text-primary "><strong class="text-primary">Research Fellow, National University of Singapore, Singapore</strong></p>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading9">
<button
class="accordion-button collapsed"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#flush-collapse9"
aria-expanded="false"
aria-controls="flush-collapse9"
>
<p class="card-text mx-auto">A working mom.</p>
</button>
</h2>
<div
id="flush-collapse9"
class="accordion-collapse collapse"
aria-labelledby="flush-heading9"
data-mdb-parent="#accordionFlushExample"
>
<div class="accordion-body text-left">
Dr. Han Zhang is a research scientist at Agency for Science, Technology and Research (A*STAR), Singapore. She received her PhD degree in Developmental and Educational Psychology at the School of Brain and Cognitive Sciences, Beijing Normal University, China. During 2015-2020, she was a research fellow at the Department of Biomedical Engineering, National University of Singapore. Her research interests are understanding brain and behavior development in children, as well as the potential influencers and resilience mechanisms. She is also working on translational medicine projects of neurodevelopment.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card -->
<!-- Card -->
<div class="col">
<div class="card mb-4 mx-2">
<!--Card image-->
<div class="view overlay text-center">
<img class="rounded-circle mt-3 avatar" src="img/ZHANG, Lei.jpg"
alt="Card image cap">
<a href="#!">
<div class="mask rgba-white-slight"></div>
</a>
</div>
<!--Card content-->
<div class="card-body text-center">
<!--Title-->
<h4 class="card-title"><strong>ZHANG, Lei</strong></h4>
<hr><!-- Subtitle -->
<p class="card-text text-primary "><strong class="text-primary">Post-doc, University of Vienna, Austria</strong></p>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-heading4">
<button
class="accordion-button collapsed"
type="button"
data-mdb-toggle="collapse"
data-mdb-target="#flush-collapse4"
aria-expanded="false"
aria-controls="flush-collapse4"
>
<p class="card-text mx-auto">A believer in generative processes.</p>
</button>
</h2>
<div
id="flush-collapse4"
class="accordion-collapse collapse"
aria-labelledby="flush-heading4"
data-mdb-parent="#accordionFlushExample"
>
<div class="accordion-body text-left">
todo
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Card -->
</div>
<!-- Card group -->
</div>
<!-- Footer -->
<footer class="page-footer font-small blue pt-4 bg-primary text-white">
<!-- Footer Links -->
<div class="container-fluid text-center text-md-left">
<!-- Grid row -->
<div class="row">
<!-- Grid column -->
<div class="col-md-6 mt-md-0 mt-3">
<!-- Content -->
<h5 class="text-uppercase">CHINESE OPEN SCIENCE NETWORK</h5>
<ul class="list-group list-group-horizontal d-flex justify-content-center">
<li class="list-group-item border-0 bg-primary"><a target="_blank" href="https://github.com/Chinese-Open-Science-Network" class="nav-link text-white"><i class="fab fa-github"></i></a></li>
<li class="list-group-item border-0 bg-primary"><a target="_blank" href="https://twitter.com/OpenSciChina" class="nav-link text-white"><i class="fab fa-twitter"></i></a></li>
<li class="list-group-item border-0 bg-primary"><a target="_blank" href="https://www.youtube.com/channel/UC5M4-E8pkO4vJT9K7rT72Uw" class="nav-link text-white"><i class="fab fa-youtube"></i></a></li>
<li class="list-group-item border-0 bg-primary"><a target="_blank" href="https://space.bilibili.com/252509184" class="nav-link text-white">Bilibili</a></li>
<li class="list-group-item border-0 bg-primary"><a target="_blank" href="https://osf.io/9d7y4/" class="nav-link text-white">OSF</a></li>
</ul>
</div>
<!-- Grid column -->
<hr class="clearfix w-100 d-md-none pb-3">
<!-- Grid column -->
<div class="col-md-6 mb-md-0 mb-3">
<!-- Links -->
<h5 class="text-uppercase">Partners</h5>
<ul class="list-group">