-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1004 lines (894 loc) · 86.4 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>
<script data-ad-client="ca-pub-9712235508010808" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<meta charset="utf-8">
<title>Shawn A Rhoads</title>
<!-- Additional meta tags for SEO -->
<meta name="description" content="Dr. Shawn A. Rhoads is a Postdoctoral Research Fellow in the Center for Computational Psychiatry at the Icahn School of Medicine at Mount Sinai. His research investigates social factors that impact human welfare with two primary goals. The first is to achieve a better understanding of what improves or impairs the well-being of the self and others spanning multiple levels of analysis (e.g., neural, cognitive, behavioral, interpersonal, societal). The second is to translate this understanding for applications in both policy and medicine.">
<meta name="keywords" content="Shawn Rhoads, University of Southern California, USC, Georgetown, Georgetown University, Icahn School of Medicine at Mount Sinai, Mount Sinai, Social Neuroscience, Cognitive Neuroscience, Computational Neuroscience, Computational Psychiatry, Computational Modeling, Social Psychology, Psychological Science, Social Cognition, Empathy, Altruism, Prosocial, Prosociality, Social Decision-Making, Interpersonal Perception, Mental Health, Subjective Well-Being, Shawn, Rhoads, USC Environmental Student Assembly, Know Tomorrow, USC Green Engagement Fund, Neuroimaging Consulting, Statistics Consulting, Open Neuroscience, Social Neuroscience, fMRI Workshop, Neuroimaging Workshop, Computational Modeling Workshop, Computational Psychiatry Workshop, World Happiness Report" />
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<!-- Open Graph meta tags -->
<meta property="og:title" content="Shawn A. Rhoads">
<meta property="og:description" content="Dr. Shawn A. Rhoads is a Postdoctoral Research Fellow in the Center for Computational Psychiatry at the Icahn School of Medicine at Mount Sinai. His research investigates social factors that impact human welfare with two primary goals. The first is to achieve a better understanding of what improves or impairs the well-being of the self and others spanning multiple levels of analysis (e.g., neural, cognitive, behavioral, interpersonal, societal). The second is to translate this understanding for applications in both policy and medicine.">
<meta property="og:image" content="img/link-preview.jpg">
<meta property="og:url" content="https://shawnrhoads.github.io/">
<meta property="og:type" content="website">
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!----Font Awesome----->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.5.2/css/all.css">
<link rel="stylesheet" href="fonts/css/font-awesome.css">
<link rel="stylesheet" href="fonts/css/brands.css">
<link rel="stylesheet" href="fonts/css/academicons.css">
<!-- CSS Libraries -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/lightbox/css/lightbox.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8J3FVFHHNQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8J3FVFHHNQ');
</script>
</head>
<a rel="me" href="https://sigmoid.social/@shawnrhoadsphd"></a>
<a rel="me" href="https://neuromatch.social/@shawnrhoadsphd"></a>
<body data-spy="scroll" data-target=".navbar" data-offset="51">
<!-- Nav Bar Start -->
<div class="navbar navbar-expand-lg bg-light navbar-light">
<div class="container-fluid">
<a href="index.html" class="navbar-brand">SR</a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-between" id="navbarCollapse">
<div class="navbar-nav ml-auto">
<a href="#home" class="nav-item nav-link active">Home</a>
<a href="#about" class="nav-item nav-link">About</a>
<a href="#research" class="nav-item nav-link">Research</a> <!-- Service -->
<a href="#publications" class="nav-item nav-link">Publications</a>
<a href="#teaching" class="nav-item nav-link">Teaching</a>
<a href="#news" class="nav-item nav-link">News</a> <!-- Review -->
<a href="#experience" class="nav-item nav-link">Experience</a> <!-- Portfolio -->
<a href="#advocacy" class="nav-item nav-link">Advocacy</a>
<a href="#contact" class="nav-item nav-link">Contact</a>
</div>
</div>
</div>
</div>
<!-- Nav Bar End -->
<!-- Main Start -->
<div class="hero" id="home">
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-sm-12 col-md-6">
<div class="hero-content">
<div class="hero-text">
<p></p>
<h1>Shawn A. Rhoads, Ph.D.</h1>
<h2></h2>
<div class="typed-text">Postdoctoral Research Fellow, Lindau Nobel Laureate Young Scientist, Computational Neuroscientist, Cognitive Scientist, Psychological Scientist, Human Welfare Researcher, Computational Modeler, Neuroimager, Brainhacker, Social Justice Advocate, Environmentalist, Open Science Advocate</div>
</div>
<div class="soc_icons">
<ul class="list-unstyled text-center">
<li><a target="_blank" rel="noopener noreferrer" href="https://twitter.com/intent/user?user_id=380634496"><i class="fa fa-twitter-square"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" rel="me" href="https://bsky.app/profile/shawnrhoadsphd.bsky.social"><i class="fa-brands fa-bluesky"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" rel="me" href="https://neuromatch.social/@shawnrhoadsphd"><i class="fab fa-mastodon"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" href="https://github.com/shawnrhoads"><i class="fa fa-github"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" href="https://scholar.google.com/citations?user=__YmDVEAAAAJ&hl=en"><i class="ai ai-google-scholar"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" href="https://orcid.org/0000-0003-1350-9458"><i class="ai ai-orcid-square"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" href="https://www.researchgate.net/profile/Shawn-Rhoads"><i class="ai ai-researchgate-square"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" href="https://osf.io/9vn7a"><i class="ai ai-osf-square"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 d-none d-md-block">
<div class="hero-image">
<img src="img/hero.png" alt="Hero Image">
</div>
</div>
</div>
</div>
</div>
<!-- Main End -->
<!-- About Start -->
<div class="service" id="about">
<div class="container">
<div class="section-header text-center wow zoomIn" data-wow-delay="0.1s">
<strong style="color:#414141">I AM LAUNCHING MY LABORATORY SOON!<br>PLEASE CHECK BACK FOR UPDATES IN EARLY 2025</strong><br><br>
<p>About Me</p>
<h2>Who am I?</h2>
<br>
I am a Postdoctoral Research Fellow with Dr. Xiaosi Gu and the <a target="_blank" rel="noopener noreferrer" href="https://www.neurocpu.org/">Center for Computational Psychiatry</a> at the <a target="_blank" rel="noopener noreferrer" href="https://icahn.mssm.edu">Icahn School of Medicine at Mount Sinai</a>. I earned my Ph.D. while working in the <a target="_blank" rel="noopener noreferrer" href="https://abigailmarsh.com/lab/">Laboratory on Social and Affective Neuroscience</a> at <a target="_blank" rel="noopener noreferrer" href="https://georgetown.edu/">Georgetown University</a> under the mentorship of Dr. Abigail Marsh. I graduated from the <a target="_blank" rel="noopener noreferrer" href="https://usc.edu/">University of Southern California</a> with a Bachelor's Degree in physics and psychology.<br><br>
I am also an avid social justice, environmental, and open science advocate. I have been involved with advocacy work for environmental sustainability and social justice on the local and national level. I strive to make science open, equitable, and accessible to all.
<br><br>
I'm always open to collaborate! Please feel free to contact me on the <a target="_blank" rel="noopener noreferrer" href="https://mattermost.brainhack.org/brainhack/messages/@shawnrhoads">Brainhack Mattermost</a> or through any of the links below.
<br><br>
<!-- Notable contributions: United Nations World Happiness Report on the relationship between altruism and well-being (2023); Publication in <i>Nature Communications</i> on
<br><br> -->
I am a recipient of the 2024 <a target="_blank" rel="noopener noreferrer" href="https://commonfund.nih.gov/highrisk/highlights/nih-award-over-207-million-support-highly-innovative-biomedical-and-behavioral">NIH Director's Early Independence Award (DP5)</a>, which will fund a <b><u>$1.25 million project</u></b> to study the neural and computational basis of loneliness and social connection. <strong>Please stay tuned for updates on this exciting new project!</strong>
<br><br>
Other selected grants, awards, and recognitions include:
<br>● <a target="_blank" rel="noopener noreferrer" href="https://www.lindau-nobel.org/young-scientists/">Lindau Nobel Laureate Young Scientist </a> (2020, 2023)
<br>● <a target="_blank" rel="noopener noreferrer" href="https://www.nsfgrfp.org/">NSF Graduate Research Fellowship Program (GRFP) Award</a> (2018-2022)
<br>● <a target="_blank" rel="noopener noreferrer" href="https://grad.georgetown.edu/fellowships-and-awards/glassman-awards/">Harold N. Glassman Distinguished Dissertation Award</a> (2024)
<br>● <a target="_blank" rel="noopener noreferrer" href="https://grad.georgetown.edu/student-life/grad-student-awards/">At-Large Dr. Karen Gale Exceptional Ph.D. Student Award </a> (2022)
<br>● <a target="_blank" rel="noopener noreferrer" href="https://www.apa.org/about/awards/scidir-dissertre">American Psychological Association Dissertation Research Award </a> (2021)
<br>● <a target="_blank" rel="noopener noreferrer" href="https://www.momentalfound.org/mistletoe-research-fellowship">Mistletoe Research Fellowship</a> (2020)
</div>
</div>
</div>
<!-- About End -->
<!-- Research Start -->
<div class="service" id="research">
<div class="container">
<div class="section-header text-center wow zoomIn" data-wow-delay="0.1s">
<p>What I Do</p>
<h2>What social factors impact human welfare?</h2>
<br>
I approach this question by studying the neurocomputational basis of human interpersonal perception, learning and decision-making in social contexts, and emotional experiences that are shared (i.e., interactions with others) or vicarious (i.e., affective empathy). I examine sources of individual variation in these phenomena relevant to mental health and socioemotional well-being.<br><br>
I pursue this line of work with two primary goals. The first is to achieve a mechanistic understanding of the factors that improve or impair the well-being of the self and others across multiple levels of analysis (e.g., neural, cognitive, behavioral, interpersonal, societal). The second is to translate this understanding for direct application in medicine and policy.<br><br>
Research methods include: <a target="_blank" rel="noopener noreferrer" href="https://en.wikipedia.org/wiki/Computational_cognition#Computational_modeling">computational modeling</a>, <a target="_blank" rel="noopener noreferrer" href="https://en.wikipedia.org/wiki/Functional_magnetic_resonance_imaging">functional magnetic resonance imaging</a>, and <a target="_blank" rel="noopener noreferrer" href="https://en.wikipedia.org/wiki/Electrocorticography">intracranial electroencephalography</a>
</div>
<div class="section-header text-center wow zoomIn" data-wow-delay="0.1s">
<p></p>
<h2>How can I assist?</h2>
<br>
I am generally always open to collaborating on research projects relevant to my expertise and interests. I am also available for consulting, speaking engagements, and workshops on various research topics and methods, including but not limited to (1) <b>computational modeling</b> (e.g., reinforcement learning, model/algorithm development, model simulations, model fitting), (2) <b>neuroimaging</b> (e.g., task paradigm development in PsychoPy, BIDS, pre-processing, univariate analyses, multivariate analyses, model-based fMRI), (3) <b>statistics</b>, (4) <b>machine learning</b>, (5) <b>programming in Python</b>, and (6) <b>open science practices</b> aimed at making computational training in neuroscience more accessible.<br><br>Please see research and teaching experience below for additional details and send inquiries via email: shawn{dot}rhoads{at}mssm{dot}edu
</div>
</div>
</div>
<!-- Research End -->
<!-- Portfolio/publications Start -->
<div class="portfolio" id="publications">
<div class="container">
<div class="section-header text-center wow zoomIn" data-wow-delay="0.1s">
<p>Scientific Works</p>
<h2>What have I published?</h2>
<i>* denotes equal contributions<br><sup>m</sup> denotes mentee</i>
</div>
<div class="row">
<div class="col-12 wow zoomIn" data-wow-delay="0.1s">
<ul id="portfolio-filter">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-mental-health">Mental Health</li>
<li data-filter=".filter-swb">Subjective Well-Being</li>
<li data-filter=".filter-learning">Social Learning</li>
<li data-filter=".filter-tom">Social Inference</li>
<li data-filter=".filter-decisions">Social Decision-Making</li>
<li data-filter=".filter-soc-dist">Social Distance</li>
<li data-filter=".filter-soc-neuro">Social Neuroscience</li>
<li data-filter=".filter-comp-psych">Computational Psychiatry</li>
<li data-filter=".filter-prosocial">Prosociality</li>
<li data-filter=".filter-soc-perception">Interpersonal Perception</li>
<li data-filter=".filter-emotion-perception">Emotional Perception</li>
<li data-filter=".filter-affect">Affective Experience</li>
<!-- <li data-filter=".filter-shared-exp">Shared Experience</li> -->
<li data-filter=".filter-empathy">Empathy</li>
<li data-filter=".filter-individual-diffs">Individual Differences</li>
<li data-filter=".filter-computation">Computational Modeling</li>
<li data-filter=".filter-fmri">Neuroimaging</li>
<!-- <li data-filter=".filter-ieeg">Intracranial Electrophysiology</li> -->
<li data-filter=".filter-open-science">Open, Inclusive Science</li>
</ul>
</div>
</div>
<div class="row portfolio-container">
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-soc-neuro filter-tom filter-computation filter-fmri filter-soc-perception filter-soc-dist wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b> & Marsh, A. A. (2024). Modeling the minds of friends: Dorsomedial prefrontal cortex encodes accurate dyadic meta-evaluations about how others perceive us. <i>PsyArXiv</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.31234/osf.io/g9e3z">preprint</a>] [<a target="_blank" rel="noopener noreferrer" href="https://shawnrhoads.github.io/dyrsa/code/notebook">tutorial</a>] [<a target="_blank" rel="noopener noreferrer" href="https://colab.research.google.com/github/shawnrhoads/dyrsa/blob/main/code/notebook.ipynb">colab</a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/t5cmd">data+code</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.31234/osf.io/g9e3z">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-decisions filter-learning filter-soc-neuro filter-prosocial filter-computation filter-fmri filter-individual-diffs wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b>, <sup>m</sup>Gan, L., Berluti, K., O'Connell, K., Cutler, J. Lockwood, P. L., & Marsh, A. A. (2023). Neurocomputational basis of learning when choices simultaneously affect both oneself and others. <i>PsyArXiv</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.31234/osf.io/rf4x9">preprint</a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/zt269">preregistration</a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/2gnv4">data+code</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.31234/osf.io/rf4x9">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-decisions filter-learning filter-soc-neuro filter-computation filter-mental-health filter-comp-psych filter-individual-diffs wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b>, Gu, X., & Barnby, J. M. (In press). Advancing computational psychiatry through a social lens. <i>Nature Mental Health</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1038/s44220-024-00343-w">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1038/s44220-024-00343-w">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-decisions filter-learning filter-soc-neuro filter-computation filter-decisions filter-tom filter-learning wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b> (2024). Modelling game-theoretic predictions in social interactions. <i>Nature Reviews Psychology</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1038/s44159-024-00373-2">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1038/s44159-024-00373-2">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-decisions filter-prosocial wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
*Doell, K. C., *Todorova, B., *Vlasceanu, M., Bak-Coleman, J. B., Pronizius, E., Schumann, P., Azevedo, F., Patel, Y., Berkebile-Wineberg, M. M., Brick, C., Lange, F., Grayson, S. J., Pei, Y., Chakroff, A., van den Broek, K. L., Lamm, C., Vlasceanu, D., Constantino, S. M., Rathje, S., Goldwert, D., Fang, K., ..., <b style="color:#414141">Rhoads, S. A.</b>, ..., & Van Bavel, J. J. (2024). The International Climate Psychology Collaboration: Climate change-related data collected from 63 countries. <i>Scientific Data</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1038/s41597-024-03865-1">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.31234/osf.io/7fy2g">preprint</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1038/s41597-024-03865-1">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-decisions filter-prosocial wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
*Vlasceanu, M., *Doell, K. C., *Bak-Coleman, J. B., Todorova, B., Weinberg- Berkebile, M. M., Grayson, S. J., Patel, Y., Goldwert, D., Pei, Y., Chakroff, A., Pronizius, E., van den Broek, K. L., Vlasceanu, D., Constantino, S., Morais, M. J., Schumann, P., Rathje, S., Fang, K., ..., <b style="color:#414141">Rhoads, S. A.</b>, ..., & Van Bavel, J. J. (2023). Addressing climate change with behavioral science: A global intervention tournament in 63 countries. <i>Science Advances</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1126/sciadv.adj5778">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.31234/osf.io/cr5at">preprint</a>] [<a target="_blank" rel="noopener noreferrer" href="https://climate-interventions.shinyapps.io/climate-interventions/">shinyapp</a>] [<a target="_blank" rel="noopener noreferrer" href="https://github.com/josephbb/ManyLabsClimate">code</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.31234/osf.io/cr5at">altmetric</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1126/sciadv.adj5778">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-decisions filter-prosocial filter-individual-diffs filter-soc-dist wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
*Amormino, P., <b style="color:#414141">*Rhoads, S. A.</b>, Vekaria, K. M., <sup>m</sup>Gan, L., & Marsh, A. A. (2024). Political ideology shapes beliefs about others’ generosity, not one’s own generosity. <i>PsyArXiv</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.31234/osf.io/qdr9y">preprint</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.31234/osf.io/qdr9y">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-decisions filter-prosocial filter-individual-diffs wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b> & Marsh, A. A. (2023). Traits of extraordinary altruists. In S. T. Allison, J. K. Beggan, & G. R. Goethals (Eds.), <i>Encyclopedia of Heroism Studies</i>. Springer International Publishing. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1007/978-3-031-17125-3_501-1">chapter</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1007/978-3-031-17125-3_501-1">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-decisions filter-soc-neuro filter-prosocial filter-individual-diffs filter-soc-dist filter-fmri wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b>, O'Connell, K., Berluti, K., Ploe, M. L., Elizabeth, H. S., Amormino, P., Li, J. L., Dutton, M. A., VanMeter, A. S., & Marsh, A. A. (2023). Neural responses underlying extraordinary altruists’ generosity for socially distant others. <i>Proceedings of the National Academy of Sciences Nexus</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1093/pnasnexus/pgad199">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.31234/osf.io/8erfa">preprint</a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/u8adg">preregistration</a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/mk9cu">data+code</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1093/pnasnexus/pgad199">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-decisions filter-prosocial filter-individual-diffs filter-soc-dist wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b>, Vekaria, K. M., O'Connell, K., Elizabeth, H. S., Rand, D. G., Kozak Williams, M., & Marsh, A. A. (2023). Unselfish traits and social decision-making patterns characterize six populations of real-world extraordinary altruists. <i>Nature Communications</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1038/s41467-023-37283-5">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.31234/osf.io/sykmv">preprint</a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/4nbsd">preregistration</a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/7t4qf">data+code</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1038/s41467-023-37283-5">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-mental-health filter-decisions filter-computation filter-comp-psych wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
*Na, S., <b style="color:#414141">*Rhoads, S. A.</b>, Yu, A. N. C., Fiore, V. G., & Gu, X. (2023). Towards a neurocomputational account of social controllability: from models to mental health. <i>Neuroscience and Biobehavioral Reviews</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1016/j.neubiorev.2023.105139">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1016/j.neubiorev.2023.105139">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-swb filter-prosocial wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b> & Marsh, A. A. (2023). Doing good and feeling good: Relationships between altruism and well-being for altruists, beneficiaries, and observers. In J. F. Helliwell, R. Layard, J. D. Sachs, J.-E. De Neve, L. B. Aknin, & S. Wang (Eds.), <i>World Happiness Report 2023</i>. (pp. 103-130). United Nations Sustainable Development Solutions Network. [<a target="_blank" rel="noopener noreferrer" href="https://worldhappiness.report/ed/2023/doing-good-and-feeling-good-relationships-between-altruism-and-well-being-for-altruists-beneficiaries-and-observers/">chapter</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-soc-neuro filter-learning filter-computation filter-open-science wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b> & <sup>m</sup>Gan, L. (2022). Computational models of human social behavior and neuroscience: An open educational course and Jupyter Book to advance computational training. <i>Journal of Open Source Education</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.21105/jose.00146">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://shawnrhoads.github.io/gu-psyc-347">book</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.21105/jose.00146">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-decisions filter-fmri filter-soc-neuro wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b>, Cutler, J., & Marsh, A. A. (2021). A feature-based network analysis and fMRI meta-analysis reveal three distinct types of prosocial decisions. <i>Social Cognitive and Affective Neuroscience</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1093/scan/nsab079">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1101/2020.12.09.415034">preprint</a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/3vu9w">data</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1093/scan/nsab079">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-swb filter-prosocial wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b>, <sup>m</sup>Gunter, D., Ryan, R. M., & Marsh, A. A. (2021). Global variation in subjective well-being predicts seven forms of altruism. <i>Psychological Science</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1177/0956797621994767">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.31234/osf.io/k3y7u">preprint</i></a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/qsdfp">data+code</i></a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1177/0956797621994767">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-soc-perception filter-emotion-perception filter-affect wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
O'Connell, K., <b style="color:#414141">Rhoads, S. A.</b>, & Marsh, A. A. (2024). Fear: An evolutionary perspective on its biological, behavioral, and communicative features. In L. Al-Shawaf & T. Shackelford (Eds.), <i>The Oxford Handbook of Evolution and the Emotions</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1093/oxfordhb/9780197544754.013.25">chapter</i></a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1093/oxfordhb/9780197544754.013.25">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-open-science wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
*Gau, R., *Noble, S., *Heuer, K., *Bottenhorn K. L., *Bilgin, I. P., *Yang, Y.-F., *Huntenburg, J. M., *Bayer, J., *Bethlehem, R. A. I., <b style="color:#414141">Rhoads, S. A.</b>, ..., & <a target="_blank" rel="noopener noreferrer" href="http://brainhack.org/brainhack_jupyter_book/contributors.html">The Brainhack Community</a>. (2021). Brainhack: developing a culture of open, inclusive, community-driven neuroscience. <i>Neuron</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1016/j.neuron.2021.04.001">article</a>] [<a target="_blank" rel="noopener noreferrer" href="http://brainhack.org/brainhack_jupyter_book/">book</a>] [<a target="_blank" rel="noopener noreferrer" href="https://psyarxiv.com/rytjq">preprint</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1016/j.neuron.2021.04.001">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-mental-health filter-individual-diffs filter-fmri filter-affect wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
Mukherjee, P., Vilgis V., <b style="color:#414141">Rhoads, S. A.</b>, Chahal, R., Fassbender, C., Leibenluft, E., Dixon, J. F., Pakyurek, M., van den Bos, W., Hinshaw, S. P., Guyer, A. E., Schweitzer, J. B. (2021). Associations of irritability with functional connectivity of amygdala and nucleus accumbens in adolescents and young adults with ADHD. <i>Journal of Attention Disorders</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1177/10870547211057074">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1177/10870547211057074">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-prosocial filter-decisions filter-individual-diffs wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
O'Connell, K., Berluti, K., <b style="color:#414141">Rhoads, S. A.</b>, & Marsh, A. A. (2021). Reduced social distancing early in the COVID-19 pandemic is associated with antisocial behaviors in an online United States sample. <i>PLoS ONE</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1371/journal.pone.0244974">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/3429d">data+code</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1371/journal.pone.0244974">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-fmri filter-soc-perception filter-individual-diffs filter-emotion-perception filter-soc-neuro wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b>, Cardinale, E. M., O'Connell, K., Palmer, A. L., VanMeter, J. W., & Marsh, A. A. (2020). Mapping neural activity patterns to contextualized fearful facial expressions onto callous-unemotional (CU) traits: Intersubject representational similarity analysis reveals less variation among high-CU adolescents. <i>Personality Neuroscience</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1017/pen.2020.13">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/bqdm5">data+code</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1017/pen.2020.13">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-empathy filter-affect filter-soc-perception filter-emotion-perception filter-prosocial filter-individual-diffs filter-fmri filter-soc-neuro wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
Berluti, K., O'Connell, K., <b style="color:#414141">Rhoads, S. A.</b>, Brethel-Haurwitz, K. M., Cardinale, E. M., Vekaria, K. M., Robertson, E. L., Walitt, B., VanMeter, J. W., & Marsh A. A. (2020). Reduced multi-voxel pattern similarity of vicarious neural pain responses in psychopathy. <i>Journal of Personality Disorders</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1521/pedi.2020.34.5.628">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/ubzfk">data+code</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1521/pedi.2020.34.5.628">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-prosocial filter-fmri filter-soc-perception filter-emotion-perception filter-empathy filter-individual-diffs filter-affect filter-soc-neuro wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
Vekaria, K. M., O'Connell, K., <b style="color:#414141">Rhoads, S. A.</b>, Brethel-Haurwitz, K. M., Cardinale, E. M., Robertson, E. L., Walitt, B., VanMeter, J. W., & Marsh A. A. (2020). Activation in bed nucleus of the stria terminalis (BNST) corresponds to everyday helping. <i>Cortex</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1016/j.cortex.2020.02.001">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/uvtsm">data+code</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1016/j.cortex.2020.02.001">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-affect filter-soc-neuro filter-fmri filter-emotion-perception filter-soc-perception filter-mental-health wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
Vilgis, V., <b style="color:#414141">Rhoads, S. A.</b>, Weissman, D. G., Gelardi, K. L., Forbes, E. E., Hipwell, A. E., Keenan, K., Hastings, P. D., & Guyer, A. E. (2019). Direct replication of task-dependent neural activation patterns during sadness introspection in two independent adolescent samples. <i>Human Brain Mapping</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1002/hbm.24836">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1002/hbm.24836">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-empathy filter-affect filter-fmri filter-prosocial filter-emotion-perception filter-soc-neuro filter-individual-diffs filter-soc-perception wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
O'Connell, K., Brethel-Haurwitz, K. M., <b style="color:#414141">Rhoads, S. A.</b>, Cardinale, E. M., Vekaria, K. M., Robertson, E. L., Walitt, B., VanMeter, J. W., & Marsh, A. A. (2019). Increased similarity of neural responses to experienced and empathic distress in costly altruism. <i>Scientific Reports</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1038/s41598-019-47196-3">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://osf.io/ubzfk">data+code</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1038/s41598-019-47196-3">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-mental-health filter-individual-diffs filter-fmri wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
Chahal, R., Weissman, D. G., Marek, S., <b style="color:#414141">Rhoads, S. A.</b>, Hipwell, A. E., Forbes, E. E., Keenan, K., & Guyer, A. E. (2019). Girls' brain structural connectivity in late adolescence relates to history of depression symptoms. <i>The Journal of Child Psychology and Psychiatry</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1111/jcpp.13184">article</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1111/jcpp.13184">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-affect wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
Marsh, A. A., <b style="color:#414141">Rhoads, S. A.</b>, Ryan, R. M. (2018). A multi-semester classroom demonstration yields evidence in support of the facial feedback effect. <i>Emotion</i>. [<a target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1037/emo0000532">article</a>] [<a target="_blank" rel="noopener noreferrer" href="http://dx.doi.org/10.1037/emo0000532.supp">data</a>] [<a target="_blank" rel="noopener noreferrer" href="https://nature.altmetric.com/details/doi/10.1037/emo0000532">altmetric</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-open-science wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b> & Rocha-Hidalgo, J. (2020). Designing a course and syllabus in psychological science: Tips and resources for enhancing your classroom experience. Psychological Science Agenda, <i>American Psychological Association</i>. [<a target="_blank" rel="noopener noreferrer" href="https://www.apa.org/science/leadership/students/course-syllabus">article</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-open-science wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b> (2020). What is a hackathon? An introduction for psychological scientists. Psychological Science Agenda, <i>American Psychological Association</i>. [<a target="_blank" rel="noopener noreferrer" href="https://www.apa.org/science/about/psa/2020/03/hackathon">article</a>]
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 portfolio-item filter-open-science wow fadeInUp">
<div class="portfolio-wrap">
<div class="portfolio-text">
<b style="color:#414141">Rhoads, S. A.</b> (2019). A brief introduction to Python for psychological science research. Psychological Science Agenda, <i>American Psychological Association</i>. [<a target="_blank" rel="noopener noreferrer" href="https://www.apa.org/science/about/psa/2019/07/python-research">article</a>]
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio End -->
<!-- Teaching Start -->
<div class="service" id="teaching">
<div class="container">
<div class="section-header text-center wow zoomIn" data-wow-delay="0.1s">
<p>Teaching Resources</p>
<h2>What have I taught?</h2>
</div>
<div class="row">
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item">
<div class="service-text">
<h3>PSYC 347 - Computational Models of Human Social Behavior and Neuroscience</h3>
<p>
I designed and taught PSYC 347 - Computational Models of Human Social Behavior and Neuroscience during the spring of 2021. Information about the course materials and accompanying Jupyter Book can be found here.
</p>
</div>
<div class="service-icon">
<a target="_blank" rel="noopener noreferrer" href="https://shawnrhoads.github.io/gu-psyc-347/"><i class="fa fa-book"></i></a>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item">
<div class="service-text">
<h3>Summer Program in Computational Education</h3>
<p>
I co-direct and teach an eight-week summer program for high school and college students, with a focus on providing early computational neuroscience training for underserved students. Information about the course materials and accompanying Jupyter Book can be found here.
</p>
</div>
<div class="service-icon">
<a target="_blank" rel="noopener noreferrer" href="https://center-for-computational-psychiatry.github.io/course_spice/"><i class="fa fa-book"></i></a>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item">
<div class="service-text">
<h3>Neuromatch Academy in Computational Neuroscience</h3>
<p>
I served as a teaching assistant for Neuromatch Academy during the summer 2020. Course content and tutorials can be found here.
</p>
</div>
<div class="service-icon">
<a target="_blank" rel="noopener noreferrer" href="https://github.com/NeuromatchAcademy/course-content/tree/master/tutorials"><i class="fas fa-laptop-code"></i></a>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item">
<div class="service-text">
<h3>NSCI 526 - Computational Neuroscience</h3>
<p>
As the Teaching Assistant, I designed and taught tutorials to supplement Dr. Max Riesenhuber's Computational Neuroscience graduate course at Georgetown University.
</p>
</div>
<div class="service-icon">
<a target="_blank" rel="noopener noreferrer" href="https://github.com/shawnrhoads/gu-nsci-526/"><i class="fas fa-laptop-code"></i></a>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item">
<div class="service-text">
<h3>Executable Books</h3>
<p>
I led a workshop on compiling supplemental materials (e.g., code, visualizations) from their projects into a Jupyter Book website. The workshop materials and executable book template can be found here.
</p>
</div>
<div class="service-icon">
<a target="_blank" rel="noopener noreferrer" href="https://github.com/shawnrhoads/executable-book-template/"><i class="fa fa-book"></i></a>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item">
<div class="service-text">
<h3>Introduction to BIDS</h3>
<p>
I led a workshop on the Brain Imaging Data Structure (BIDS) at the 2020 Brainhack DC. The workshop materials can be found here.
</p>
</div>
<div class="service-icon">
<a target="_blank" rel="noopener noreferrer" href="https://github.com/brainhackdc/BrainhackDC2020_presentations/"><i class="fas fa-laptop-code"></i></a>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item">
<div class="service-text">
<h3>Introduction to Python for Neuroimagers</h3>
<p>
I led a workshop on using Python for Neuroimaging Research at the 2019 Brainhack DC. The workshop materials can be found here.
</p>
</div>
<div class="service-icon">
<a target="_blank" rel="noopener noreferrer" href="https://github.com/shawnrhoads/Intro-Python-for-Neuroimagers/"><i class="fas fa-laptop-code"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Teaching End -->
<!-- News Start -->
<div class="blog" id="news">
<div class="container">
<div class="section-header text-center wow zoomIn" data-wow-delay="0.1s">
<p>In the News</p>
<h2>Where has my work been featured?</h2>
</div>
<div class="row">
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Computational Psychiatry Postdoctoral Fellow Earns NIH Director's Early Independence Award</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Mount Sinai</p>
<p><i class="far fa-calendar-alt"></i>28-Oct-2024</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://health.mountsinai.org/blog/computational-psychiatry-postdoctoral-fellow-earns-nih-directors-early-independence-award/">Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>GU Graduate Wins 2024 NIH Director's Early Independence Award</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>The Hoya</p>
<p><i class="far fa-calendar-alt"></i>25-Oct-2024</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://thehoya.com/news/gu-graduate-wins-2024-nih-directors-early-independence-award/">Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>NIH to award over $207 million to support highly innovative biomedical and behavioral research projects</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>National Institutes of Health</p>
<p><i class="far fa-calendar-alt"></i>08-Oct-2024</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://commonfund.nih.gov/highrisk/highlights/nih-award-over-207-million-support-highly-innovative-biomedical-and-behavioral">Read More<i class="fa fa-angle-right"></i></a> <a class="btn" target="_blank" rel="noopener noreferrer" href="https://commonfund.nih.gov/earlyindependence/AwardRecipients">Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Three Alumni Receive Glassman Distinguished Dissertation Award</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Georgetown University</p>
<p><i class="far fa-calendar-alt"></i>21-May-2024</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://grad.georgetown.edu/2024/05/21/neuroscientist-historian-social-cognitive-scientist-receive-2024-harold-glassman-distinguished-dissertation-award/">Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Do Moral Gains Necessarily Entail Moral Losses?</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Psychology Today</p>
<p><i class="far fa-calendar-alt"></i>31-May-2024</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://www.psychologytoday.com/us/blog/moral-boundaries/202405/do-moral-gains-necessarily-entail-moral-losses">Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Do You Have What It Takes to Be a Hero?</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Psychology Today</p>
<p><i class="far fa-calendar-alt"></i>08-Dec-2023</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://www.psychologytoday.com/us/blog/trust-games/202311/do-you-have-what-it-takes-to-be-a-hero">Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>The Neuroscience Behind Superhuman Acts of Generosity</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Georgetown University</p>
<p><i class="far fa-calendar-alt"></i>14-Jul-2023</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://www.georgetown.edu/news/the-neuroscience-behind-superhuman-acts-of-generosity/">Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Happiness Is a Movement</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Psychology Today</p>
<p><i class="far fa-calendar-alt"></i>30-Apr-2023</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://www.psychologytoday.com/intl/blog/where-women-govern/202306/2023-world-happiness-report-happiness-is-a-movement" >Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>These 3 Personality Traits Define Extreme Altruists — Do You Have Them?</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Inverse</p>
<p><i class="far fa-calendar-alt"></i>30-Apr-2023</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://www.inverse.com/health/altruism" >Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Heroes, They’re Just Like Us (Almost)</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>The Medical Republic</p>
<p><i class="far fa-calendar-alt"></i>24-Apr-2023</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://www.medicalrepublic.com.au/heroes-theyre-just-like-us-almost/90168" >Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Psychologists Map the Psyche of Extreme Altruists</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>EurekAlert</p>
<p><i class="far fa-calendar-alt"></i>19-Apr-2023</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://www.eurekalert.org/news-releases/986706" >Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Georgetown Researchers Contribute to UN World Happiness Report</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Georgetown University</p>
<p><i class="far fa-calendar-alt"></i>20-Mar-2023</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://college.georgetown.edu/news-story/world-happiness-report-23" >Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Ph.D. Students are Winners at 2022 Graduate Student Awards</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Georgetown University</p>
<p><i class="far fa-calendar-alt"></i>21-Apr-2022</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://grad.georgetown.edu/2022-graduate-student-awards/#phdaward2022" >Read More<i class="fa fa-angle-right"></i></a> <a class="btn" target="_blank" rel="noopener noreferrer" href="https://abigailmarsh.com/about/announcements/shawn-rhoads-wins-dr-karen-gale-exceptional-phd-student-award" >Read More<i class="fa fa-angle-right"></i></a> <a class="btn" target="_blank" rel="noopener noreferrer" href="https://psychology.georgetown.edu/news-story/ph-d-students-are-winners-at-2022-graduate-student-awards">Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Shawn Rhoads Successfully Defends Doctoral Dissertation</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Georgetown University</p>
<p><i class="far fa-calendar-alt"></i>20-Apr-2022</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://psychology.georgetown.edu/news-story/shawn-rhoads-successfully-defends-doctoral-dissertation" >Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>The 2021 APA Dissertation Research Award Recipients</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>American Psychological Association</p>
<p><i class="far fa-calendar-alt"></i>10-Mar-2022</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://www.apa.org/science/awards/2021-dissertation-research-award" >Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Individualism Makes Us Altruistic and Happy</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Bloomberg</p>
<p><i class="far fa-calendar-alt"></i>27-Jun-2021</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://www.bloomberg.com/opinion/articles/2021-06-27/cultures-that-are-more-individualistic-can-be-more-altruistic-and-happier-too" >Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Everyone Thinks Americans Are Selfish. They’re Wrong.</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>New York Times</p>
<p><i class="far fa-calendar-alt"></i>26-May-2021</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://www.nytimes.com/2021/05/26/opinion/individualism-united-states-altruism.html" >Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Interview with Shawn Rhoads, Recipient of the Mistletoe Research Fellowship</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Georgetown University</p>
<p><i class="far fa-calendar-alt"></i>03-Dec-2020</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://grad.georgetown.edu/2020/12/03/interview-with-shawn-rhoads-recipient-of-the-mistletoe-research-fellowship/" >Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Ph.D. Student to Participate in the Lindau Nobel Laureate Meeting</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Georgetown University</p>
<p><i class="far fa-calendar-alt"></i>23-March-2020</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://college.georgetown.edu/news-story/psychology-ph-d-student-to-participate-in-the-2020-lindau-nobel-laureate-meeting/">Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="blog-item wow fadeInUp" data-wow-delay="0.1s">
<div class="blog-text">
<h2>Four Graduate Students Win NSF Fellowships</h2>
<div class="blog-meta">
<p><i class="far fa-user"></i>Georgetown University</p>
<p><i class="far fa-calendar-alt"></i>04-May-2018</p>
</div>
<a class="btn" target="_blank" rel="noopener noreferrer" href="https://college.georgetown.edu/news-story/psychology-graduate-students-win-nsf-fellowships/">Read More<i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- News End -->
<!-- Experience Start -->
<div class="experience" id="experience">
<div class="container">
<header class="section-header text-center wow zoomIn" data-wow-delay="0.1s">
<p>CV</p>
<h2>Where have I worked?</h2>
</header>
<div class="timeline">
<div class="timeline-item left wow slideInLeft" data-wow-delay="0.1s">
<div class="timeline-text">
<div class="timeline-date">2022 - present</div>
<h2>Postdoctoral Research Fellow</h2>
<h4>Icahn School of Medicine at Mount Sinai</h4>
<p>
Center for Computational Psychiatry<br>PI: Xiaosi Gu, Ph.D.
</p>
</div>
</div>
<div class="timeline-item right wow slideInRight" data-wow-delay="0.1s">
<div class="timeline-text">
<div class="timeline-date">2017 - 2022</div>
<h2>Predoctoral Research Fellow</h2>
<h4>Georgetown University</h4>
<p>
Laboratory on Social & Affective Neuroscience<br>PI: Abigail A. Marsh, Ph.D.
</p>
</div>
</div>
<div class="timeline-item left wow slideInLeft" data-wow-delay="0.1s">
<div class="timeline-text">
<div class="timeline-date">2016 - 2017</div>
<h2>Junior Specialist</h2>
<h4>University of California, Davis</h4>
<p>
Human Experiences & Affective Development Laboratory<br>PIs: Amanda E. Guyer, Ph.D. and Paul D. Hastings, Ph.D.
</p>
</div>
</div>
<div class="timeline-item right wow slideInRight" data-wow-delay="0.1s">
<div class="timeline-text">
<div class="timeline-date">2015 - 2016</div>
<h2>Research Assistant</h2>
<h4>University of Southern California</h4>
<p>
Center for Affective Neuroscience, Development, Learning, & Education<br>PI: Mary Helen Immordino-Yang, Ph.D.
</p>
</div>
</div>
<div class="timeline-item left wow slideInLeft" data-wow-delay="0.1s">
<div class="timeline-text">
<div class="timeline-date">2013 - 2015</div>
<h2>Research Assistant</h2>
<h4>University of Southern California</h4>
<p>
Department of Physics and Astronomy<br>PI: Edward J. Rhodes, Jr., Ph.D.
</p>
</div>
</div>
<div class="timeline-item right wow slideInRight" data-wow-delay="0.1s">
<div class="timeline-text">
<div class="timeline-date">2011 - 2012</div>
<h2>Research Assistant</h2>
<h4>Stevens Institute of Technology</h4>
<p>
Department of Engineering Physics<br>PI: Norman J. M. Horing, Ph.D.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Job Experience End -->
<!-- Advocacy Start -->
<div class="service" id="advocacy">
<div class="container">
<div class="section-header text-center wow zoomIn" data-wow-delay="0.1s">
<p>Social and Environmental Justice</p>
<h2>How I haved organized and advocated?</h2>
</div>
<div class="row">
<div class="col-lg-12 wow fadeInUp" data-wow-delay="0.1s">
<p>Collaborated with students, faculty, and staff across varying departments to compose a <a target="_blank" rel="noopener noreferrer" href="https://green.usc.edu/files/2019/08/Sustanibility2020_Update_082619.pdf">comprehensive sustainability plan</a> for the University of Southern California (USC News: <a target="_blank" rel="noopener noreferrer" href="https://news.usc.edu/86014/students-staff-and-faculty-make-sustainability-a-priority/">09/11/15</a>, <a target="_blank" rel="noopener noreferrer" href="https://news.usc.edu/88899/usc-announces-vision-for-sustainability-2020/">11/23/15</a>; USC Daily Trojan: <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2015/04/14/usg-prepares-for-meeting-with-nikias-and-quick/">04/14/15</a>).</p>
<p>Pioneered a synchronous day of action with students on 70 college campuses across the nation to amplify a message to combat climate change (USC News: <a target="_blank" rel="noopener noreferrer" href="https://news.usc.edu/86689/scientists-musicians-and-activists-to-join-forces-for-climate-change-event/">9/29/15</a>; Daily Trojan: <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2015/09/30/students-should-take-action-on-climate-change/">09/30/15</a>, <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2015/10/04/know-tomorrow-educates-students-on-climate-change/">10/04/15</a>).</p>
<p>Served as a leading architect of the bylaws, allocation, and procedure for the distribution of $90,000 towards student-driven sustainability projects at USC; The USC Green Engagement Fund received a total of $169,816.01 grant requests during its first year. (USC Daily Trojan: <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2015/03/10/usc-green-engagement-fund-launched">03/10/15</a>).</p>
<p>Established USC Environmental Student Assembly under the Programming Branch of the Undergraduate Student Government as the Founding Executive Director to unite and serve as a resource to all students and organizations that seek to expand environmental action and awareness on campus (USC Daily Trojan: <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2013/12/04/usg-greenlights-environmental-student-assembly-for-students/">12/04/13</a>, <a href="https://dailytrojan.com/2014/09/09/new-initiatives-aim-for-greener-campus/">09/09/14</a>, <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2015/04/01/esa-celebrates-first-year-and-earth-month/">04/01/15</a>).</p>
<p>Represented voice of the environmental student community at USC through active response to current affairs, communication with University administration, and advancement of University initiatives (USC Daily Trojan: <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2014/10/20/drought-affects-campus-water-usage/">10/20/14</a>, <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2014/10/30/esa-takes-on-campus-sustainability-efforts/">10/30/14</a>, <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2015/08/31/admin-students-work-to-cut-water-use/">08/31/15</a>; Neon Tommy: <a target="_blank" rel="noopener noreferrer" href="http://www.neontommy.com/news/2015/04/california-receives-first-mandatory-water-restrictions.html">04/2/15</a>, <a target="_blank" rel="noopener noreferrer" href="http://www.neontommy.com/news/2015/05/usc-hospitality-lets-take-action-together.html">05/24/15</a>; USC Annenberg TV News: <a target="_blank" rel="noopener noreferrer" href="http://www.atvn.org/news/2015/04/california-drought.html">04/02/15</a>; Inside Higher Ed: <a target="_blank" rel="noopener noreferrer" href="https://www.insidehighered.com/news/2015/04/16/drought-action-plans-leading-changes-california-campuses">04/16/15</a>).</p>
<p>Partnered with local, environmentally-focused community organizations to support their initiatives on and off campus (USC News: <a target="_blank" rel="noopener noreferrer" href="http://schwarzenegger.usc.edu/institute-in-action/article/usc-environmental-student-assembly-hosts-governator">3/10/15</a>, <a target="_blank" rel="noopener noreferrer" href="http://schwarzenegger.usc.edu/institute-in-action/article/on-the-road-to-un-climate-conference-in-paris-institute-hosts-austrian-mini">09/28/15</a>; USC Daily Trojan: <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2014/10/13/former-los-angeles-mayor-speaks-to-price-students/">10/3/14</a>, <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2015/01/27/ecotalks-holds-first-roundtable/">01/27/15</a>, <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2015/02/23/former-ca-epa-secretary-speaks-at-ecotalks/">02/23/15</a>, <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2015/03/09/arnold-schwarzenegger-speaks-on-environment/">03/9/15</a>).</p>
<p>Transformed an initial budget of $5000 into spending of $50,000 across 85 original large-scale sustainability events and programs over two years for the entire student body (USC News: <a target="_blank" rel="noopener noreferrer" href="https://news.usc.edu/60874/its-easy-being-green-for-earth-month/">04/3/14</a>; Daily Trojan: <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2014/04/22/actor-leads-earth-day-discussion/">04/22/14</a>, <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2014/10/16/homecoming-carnival-and-rally-held-on-campus/">10/16/14</a>, <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2014/10/16/esa-to-host-zero-waste-tailgate-saturday/">10/16/14</a>, <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2014/11/23/drive-for-water-conservation-ends-rivalry-week/">11/23/14</a>, <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2015/04/05/greenfest-educates-and-entertains-attendees/">04/05/15</a>, <a target="_blank" rel="noopener noreferrer" href="https://dailytrojan.com/2015/11/05/homecoming-15-carnival-held-in-mccarthy-quad/">11/05/15</a>).</p>
</p>
</div>
</div>
</div>
</div>
<!-- Advocacy End -->
<!-- Footer Start -->
<div class="footer wow fadeIn" data-wow-delay="0.3s" id="contact">
<div class="container-fluid">
<div class="container">
<div class="footer-info">
<h2>How to contact me?</h2>
<div class="footer-menu">
<p>shawn.rhoads(at)mssm(dot)edu</p>
</div>
<div class="soc_icons">
<ul class="list-unstyled text-center">
<li><a target="_blank" rel="noopener noreferrer" href="https://twitter.com/intent/user?user_id=380634496"><i class="fa fa-twitter-square"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" rel="me" href="https://bsky.app/profile/shawnrhoadsphd.bsky.social"><i class="fa fa-bluesky"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" rel="me" href="https://neuromatch.social/@shawnrhoadsphd"><i class="fab fa-mastodon"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" href="https://github.com/shawnrhoads"><i class="fa fa-github"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" href="https://scholar.google.com/citations?user=__YmDVEAAAAJ&hl=en"><i class="ai ai-google-scholar"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" href="https://orcid.org/0000-0003-1350-9458"><i class="ai ai-orcid-square"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" href="https://www.researchgate.net/profile/Shawn-Rhoads"><i class="ai ai-researchgate-square"></i></a></li>
<li><a target="_blank" rel="noopener noreferrer" href="https://osf.io/9vn7a"><i class="ai ai-osf-square"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="container copyright">
<p>© <a href="#">Shawn A. Rhoads, Ph.D.</a><br>All Rights Reserved</p>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Back to top button -->
<a href="#" class="btn back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- Pre Loader -->
<div id="loader" class="show">
<div class="loader"></div>
</div>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/typed/typed.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/isotope/isotope.pkgd.min.js"></script>
<script src="lib/lightbox/js/lightbox.min.js"></script>
<!-- Contact Javascript File -->
<script src="mail/jqBootstrapValidation.min.js"></script>
<script src="mail/contact.js"></script>