-
Notifications
You must be signed in to change notification settings - Fork 7
/
News.html
1453 lines (1145 loc) · 76.4 KB
/
News.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>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>
News | Kerzendorf Lab
</title>
<!-- google-fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500;700;900&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500;700;900&display=swap" rel="stylesheet">
<!-- //google-fonts -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<!-- Template CSS Style link -->
<link rel="stylesheet" href="./assets/css/style-liberty.css">
<div id="_bsa_srv-CKYI627U_0"></div>
<div id="_bsa_srv-CKYI653J_1"></div>
<!-- Buttons-->
<style>
.button {
padding: 15px 25px;
font-size: 20px;
text-align: center;
cursor: pointer;
outline: none;
color: #fff;
background-color: #7750bb;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
}
.button:hover {
background-color: #9669e5
}
.button:active {
background-color: #a087cc;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
@media (min-width: 998px) {
.shift {
padding-left: 17%;
}
}
.heading {
color: #000;
/* Default color */
text-decoration: none;
}
.heading:hover {
background-image: linear-gradient(to left, #673ab7, #673ab7);
/* Gradient from right to left */
-webkit-background-clip: text;
/* Apply gradient as text color */
-webkit-text-fill-color: transparent;
/* Make text transparent */
}
</style>
</head>
<body>
<!--header-->
<header id="site-header" class="fixed-top">
<div class="container">
<nav class="navbar navbar-expand-lg stroke">
<h1>
<a class="navbar-brand" href="./index.html">
<!--span class="fa fa-lightbulb"></span--> Kerzendorf Lab
</a>
</h1>
<button class="navbar-toggler collapsed bg-gradient" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarTogglerDemo02" aria-controls="navbarTogglerDemo02" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon fa icon-expand fa-bars"></span>
<span class="navbar-toggler-icon fa icon-close fa-times"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav ms-lg-auto">
<li class="nav-item">
<a class="nav-link" href="./index.html">
Home <span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link dropdown-toggle"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false">
People <span class="fas fa-angle-down"></span>
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="current_members.html">
Current Members
</a>
<a class="dropdown-item" href="alumni_members.html">
Alumni Members
</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link dropdown-toggle"
href="./Research.html"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false">
Research <span class="fas fa-angle-down"></span>
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./sub_research/astrophysical_transients.html">
Astrophysical Transients
</a>
<a class="dropdown-item" href="./sub_research/computational_metascience.html">
Computational Metascience
</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="./News.html">
News <span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./Join_Us.html">
Join Us <span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./Support.html">
Support <span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./Contact.html">
Contact <span class="sr-only">(current)</span>
</a>
</li>
</ul>
</div>
<!-- toggle switch for light and dark theme -->
<div class="cont-ser-position">
<nav class="navigation">
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox">
<div class="mode-container">
<i class="gg-sun"></i>
<i class="gg-moon"></i>
</div>
</label>
</div>
</nav>
</div>
<!-- //toggle switch for light and dark theme -->
</nav>
</div>
</header>
<!--//header-->
<!-- about banner -->
<section class="w3l-about-breadcrumb text-center">
<div class="breadcrumb-bg breadcrumb-bg-people py-5">
<div class="container py-lg-5 py-md-4">
<div class="banner-info-grid px-md-5" style="margin-top: 2%;">
<h2 class="w3l-title-breadcrumb mb-3">News</h2>
</div>
</div>
</div>
</section>
<!-- //about banner -->
<!-- Blog Section -->
<section class="w3l-blog shift">
<div class="blog py-5" id="Newsblog">
<div class="container py-lg-5 py-md-4 py-2">
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">
<div class="card-header p-0 position-relative">
<a class="zoom d-flex" href="../../news/tardis_attends_gsoc_summit.html">
<img style="width: 520px; height: 330px" class="card-img-bottom d-block"
id="news-cover-image" src="website_files/images/article_content/image2.png" alt="array">
</a>
<div class="date">
<p>05th Oct, 2024</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 item">
<div class="card">
<div class="card-body blog-details" style="max-height: 330px">
<a class="zoom d-blog" href="../../news/tardis_attends_gsoc_summit.html">
<h5 style="font-weight: bold; overflow: auto; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size:19px; height:70px ">
TARDIS attends the Google Summer of Code Mentor Summit
</h5>
</a>
<hr style="border-top: 1px dotted rgba(143, 143, 143);">
<div class="price-review mb-1 align-items-center">
<div style="font-size: 13px; overflow: auto; height:110px">
<div>Wolfgang Kerzendorf and Andreas Flörs attended the Google Summer of Code (GSoC) mentor summit to represent the TARDIS collaboration. Andreas gave a lightning talk summarizing the TARDIS participation in GSoC, emphasizing the excellent work accomplished by the students. The summit provided an opportunity for meaningful discussions with other open-science-focused projects, and potential collaborations are now on the horizon.</div>
</div>
</div>
</div>
<div class="card-footer">
<div>
<ul class="blog-meta">
<li>
<a style="font-size:10px">Contributer(s):</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">
<div class="card-header p-0 position-relative">
<a class="zoom d-flex" href="../../news/gracie_at_acres_msu_nsf.html">
<img style="width: 520px; height: 330px" class="card-img-bottom d-block"
id="news-cover-image" src="website_files/images/article_content/image1.png" alt="array">
</a>
<div class="date">
<p>30th Jul, 2024</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 item">
<div class="card">
<div class="card-body blog-details" style="max-height: 330px">
<a class="zoom d-blog" href="../../news/gracie_at_acres_msu_nsf.html">
<h5 style="font-weight: bold; overflow: auto; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size:19px; height:70px ">
Our Student Gracie wins best talk at the ACRES MSU NSF Research Experiences for Undergraduates Symposium
</h5>
</a>
<hr style="border-top: 1px dotted rgba(143, 143, 143);">
<div class="price-review mb-1 align-items-center">
<div style="font-size: 13px; overflow: auto; height:110px">
<div>Gracie Tvrdik presented her research on the evolution of collaboration dynamics in Astrophysics at the annual ACRES REU (Research Experiences for Undergraduates) Symposium. Her outstanding presentation earned her the 1st Place Outstanding Talk Award.</div>
</div>
</div>
</div>
<div class="card-footer">
<div>
<ul class="blog-meta">
<li>
<a style="font-size:10px">Contributer(s):</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">
<div class="card-header p-0 position-relative">
<a class="zoom d-flex" href="../../news/reu_student_announcement_2024.html">
<img style="width: 520px; height: 330px" class="card-img-bottom d-block"
id="news-cover-image" src="website_files/images/article_content/REU_and_mentor_group_photo.jpg" alt="array">
</a>
<div class="date">
<p>16th Jul, 2024</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 item">
<div class="card">
<div class="card-body blog-details" style="max-height: 330px">
<a class="zoom d-blog" href="../../news/reu_student_announcement_2024.html">
<h5 style="font-weight: bold; overflow: auto; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size:19px; height:70px ">
REU Students Join Kerzendorf Group for Summer 2024
</h5>
</a>
<hr style="border-top: 1px dotted rgba(143, 143, 143);">
<div class="price-review mb-1 align-items-center">
<div style="font-size: 13px; overflow: auto; height:110px">
<div>Two undergraduate student researchers have joined the Kerzendorf Group, as part of a National Science Foundation REU grant.</div>
</div>
</div>
</div>
<div class="card-footer">
<div class="author align-items-center">
<ul class="blog-meta">
<li>
<a href="../members/gracie_tvrdik/gracie_tvrdik.html" target="_blank">Gracie Tvrdik</a>
</li>
</ul>
<a href="../members/gracie_tvrdik/gracie_tvrdik.html" class="post-author ms-auto" target="_blank">
<img src="../members/gracie_tvrdik/media/images/gracie.jpg" alt="Author's Image" class="img-fluid rounded-circle">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">
<div class="card-header p-0 position-relative">
<a class="zoom d-flex" href="../../news/icssi_poster_vicente.html">
<img style="width: 520px; height: 330px" class="card-img-bottom d-block"
id="news-cover-image" src="website_files/images/article_content/icssi_poster.jpeg" alt="array">
</a>
<div class="date">
<p>01st Jul, 2024</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 item">
<div class="card">
<div class="card-body blog-details" style="max-height: 330px">
<a class="zoom d-blog" href="../../news/icssi_poster_vicente.html">
<h5 style="font-weight: bold; overflow: auto; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size:19px; height:70px ">
Vicente Amado Olivo Bridges Machine Learning and Science of Science at ICSSI
</h5>
</a>
<hr style="border-top: 1px dotted rgba(143, 143, 143);">
<div class="price-review mb-1 align-items-center">
<div style="font-size: 13px; overflow: auto; height:110px">
<div>Who's Behind the Paper? Machine learning enables the disambiguation of author identities in expanding research fields.</div>
</div>
</div>
</div>
<div class="card-footer">
<div>
<ul class="blog-meta">
<li>
<a style="font-size:10px">Contributer(s):</a>
</li>
<li>
<a href="members/vicente_amado/vicente_amado.html" target="_blank">
<p style="font-size: 10px; height:35px"> Vicente Amado Olivo</p>
</a>
</li>
<li>, </li>
<li>
<a href="members/wolfgang_kerzendorf/wolfgang_kerzendorf.html" target="_blank">
<p style="font-size: 10px; height:35px"> Wolfgang Kerzendorf</p>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">
<div class="card-header p-0 position-relative">
<a class="zoom d-flex" href="../../news/thesis_defense_josh.html">
<img style="width: 520px; height: 330px" class="card-img-bottom d-block"
id="news-cover-image" src="website_files/images/article_content/josh_defense_title_slide.jpg" alt="array">
</a>
<div class="date">
<p>03rd May, 2024</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 item">
<div class="card">
<div class="card-body blog-details" style="max-height: 330px">
<a class="zoom d-blog" href="../../news/thesis_defense_josh.html">
<h5 style="font-weight: bold; overflow: auto; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size:19px; height:70px ">
A Dr. is Born - Josh Shields Defends Thesis on SN Ia Surviving Companions
</h5>
</a>
<hr style="border-top: 1px dotted rgba(143, 143, 143);">
<div class="price-review mb-1 align-items-center">
<div style="font-size: 13px; overflow: auto; height:110px">
<div>We are pleased to announce that Josh has just defended his thesis at Michigan State University investigating the progenitors of Type Ia Supernovae through the study of their surviving companions.</div>
</div>
</div>
</div>
<div class="card-footer">
<div class="author align-items-center">
<ul class="blog-meta">
<li>
<a href="../members/josh_shields/josh_shields.html" target="_blank">Josh Shields</a>
</li>
</ul>
<a href="../members/josh_shields/josh_shields.html" class="post-author ms-auto" target="_blank">
<img src="../members/josh_shields/media/images/josh_photo.jpg" alt="Author's Image" class="img-fluid rounded-circle">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">
<div class="card-header p-0 position-relative">
<a class="zoom d-flex" href="../../news/comp_cmse_vicente.html">
<img style="width: 520px; height: 330px" class="card-img-bottom d-block"
id="news-cover-image" src="website_files/images/article_content/cmse_comp_vicente.jpg" alt="array">
</a>
<div class="date">
<p>02nd May, 2024</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 item">
<div class="card">
<div class="card-body blog-details" style="max-height: 330px">
<a class="zoom d-blog" href="../../news/comp_cmse_vicente.html">
<h5 style="font-weight: bold; overflow: auto; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size:19px; height:70px ">
Comprehensive Examination Announcement: Our Graduate Student Vicente becomes a PhD Candidate
</h5>
</a>
<hr style="border-top: 1px dotted rgba(143, 143, 143);">
<div class="price-review mb-1 align-items-center">
<div style="font-size: 13px; overflow: auto; height:110px">
<div>Vicente our student passes his comprehensive examination and becomes a PhD candidate.</div>
</div>
</div>
</div>
<div class="card-footer">
<div class="author align-items-center">
<ul class="blog-meta">
<li>
<a href="../members/vicente_amado/vicente_amado.html" target="_blank">Vicente Amado Olivo</a>
</li>
</ul>
<a href="../members/vicente_amado/vicente_amado.html" class="post-author ms-auto" target="_blank">
<img src="../members/vicente_amado/media/images/ESD_headshot.jpg" alt="Author's Image" class="img-fluid rounded-circle">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">
<div class="card-header p-0 position-relative">
<a class="zoom d-flex" href="../../news/thesis_defence_jack.html">
<img style="width: 520px; height: 330px" class="card-img-bottom d-block"
id="news-cover-image" src="website_files/images/article_content/jackDefence.jpg" alt="array">
</a>
<div class="date">
<p>20th Apr, 2024</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 item">
<div class="card">
<div class="card-body blog-details" style="max-height: 330px">
<a class="zoom d-blog" href="../../news/thesis_defence_jack.html">
<h5 style="font-weight: bold; overflow: auto; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size:19px; height:70px ">
Dr. Jack O'Brien Successfully Defends Thesis on Supernova Progenitor Identification
</h5>
</a>
<hr style="border-top: 1px dotted rgba(143, 143, 143);">
<div class="price-review mb-1 align-items-center">
<div style="font-size: 13px; overflow: auto; height:110px">
<div>We congratulate Dr. Jack O’Brien for successfully defending his thesis titled “Progenitor Identification of Type Ia Supernovae through Statistical Abundance Tomography from Optical Spectra with Machine Learning and Radiative Transfer” in astrophysics at Michigan State University.</div>
</div>
</div>
</div>
<div class="card-footer">
<div class="author align-items-center">
<ul class="blog-meta">
<li>
<a href="../members/jack_o_brien/jack_o_brien.html" target="_blank">Jack O'Brien</a>
</li>
</ul>
<a href="../members/jack_o_brien/jack_o_brien.html" class="post-author ms-auto" target="_blank">
<img src="../members/jack_o_brien/media/images/jack.jpg" alt="Author's Image" class="img-fluid rounded-circle">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">
<div class="card-header p-0 position-relative">
<a class="zoom d-flex" href="../../news/geonintern_international_ben.html">
<img style="width: 520px; height: 330px" class="card-img-bottom d-block"
id="news-cover-image" src="website_files/images/article_content/2BCAFnorway_geo.jpg" alt="array">
</a>
<div class="date">
<p>18th Mar, 2024</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 item">
<div class="card">
<div class="card-body blog-details" style="max-height: 330px">
<a class="zoom d-blog" href="../../news/geonintern_international_ben.html">
<h5 style="font-weight: bold; overflow: auto; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size:19px; height:70px ">
Unveiling Earth's Secrets with AI: Our Undergraduate Benjamin Lands Oslo Internship
</h5>
</a>
<hr style="border-top: 1px dotted rgba(143, 143, 143);">
<div class="price-review mb-1 align-items-center">
<div style="font-size: 13px; overflow: auto; height:110px">
<div>This upcoming August, Benjamin Mellon and fellow undergraduate at MSU, Aardarsh Swaminathan, will intern in Oslo, Norway under Dr. John Aiken.The interns will apply modern AI tools to identify acoustic events occuring in a combined hydrophone and geophone data set acquired in the Oman Drilling Project's Multiborehole observatory.</div>
</div>
</div>
</div>
<div class="card-footer">
<div class="author align-items-center">
<ul class="blog-meta">
<li>
<a href="../members/benjamin_mellon/benjamin_mellon.html" target="_blank">Benjamin Mellon</a>
</li>
</ul>
<a href="../members/benjamin_mellon/benjamin_mellon.html" class="post-author ms-auto" target="_blank">
<img src="../members/benjamin_mellon/media/images/ben.png" alt="Author's Image" class="img-fluid rounded-circle">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">
<div class="card-header p-0 position-relative">
<a class="zoom d-flex" href="../../news/bcbsm_internship_bea.html">
<img style="width: 520px; height: 330px" class="card-img-bottom d-block"
id="news-cover-image" src="website_files/images/article_content/bcbsm.jpeg" alt="array">
</a>
<div class="date">
<p>14th Mar, 2024</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 item">
<div class="card">
<div class="card-body blog-details" style="max-height: 330px">
<a class="zoom d-blog" href="../../news/bcbsm_internship_bea.html">
<h5 style="font-weight: bold; overflow: auto; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size:19px; height:70px ">
From Research to Real-World Impact: Our Undergrad Bea Joins BCBSM's Analytics Center
</h5>
</a>
<hr style="border-top: 1px dotted rgba(143, 143, 143);">
<div class="price-review mb-1 align-items-center">
<div style="font-size: 13px; overflow: auto; height:110px">
<div>Bea, an undergraduate in the group, is excited to join Blue Cross Blue Shield of Michigan's Analytics Center of Excellence as a Summer 2024 Intern!</div>
</div>
</div>
</div>
<div class="card-footer">
<div class="author align-items-center">
<ul class="blog-meta">
<li>
<a href="../members/bea_lu/bea_lu.html" target="_blank">Bea Lu</a>
</li>
</ul>
<a href="../members/bea_lu/bea_lu.html" class="post-author ms-auto" target="_blank">
<img src="../members/bea_lu/media/images/bea_lu.jpg" alt="Author's Image" class="img-fluid rounded-circle">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">
<div class="card-header p-0 position-relative">
<a class="zoom d-flex" href="../../news/reu_student_announcement.html">
<img style="width: 520px; height: 330px" class="card-img-bottom d-block"
id="news-cover-image" src="website_files/images/article_content/nsflogo.jpg" alt="array">
</a>
<div class="date">
<p>23rd Jun, 2023</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 item">
<div class="card">
<div class="card-body blog-details" style="max-height: 330px">
<a class="zoom d-blog" href="../../news/reu_student_announcement.html">
<h5 style="font-weight: bold; overflow: auto; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size:19px; height:70px ">
Summer REU Students Join Kerzendorf Group
</h5>
</a>
<hr style="border-top: 1px dotted rgba(143, 143, 143);">
<div class="price-review mb-1 align-items-center">
<div style="font-size: 13px; overflow: auto; height:110px">
<div>Two undergraduate research assistants have joined the Kerzendorf Group, as part of a National Science Foundation REU grant.</div>
</div>
</div>
</div>
<div class="card-footer">
<div class="author align-items-center">
<ul class="blog-meta">
<li>
<a href="../members/richard_dow/richard_dow.html" target="_blank">Tripp Dow</a>
</li>
</ul>
<a href="../members/richard_dow/richard_dow.html" class="post-author ms-auto" target="_blank">
<img src="../members/richard_dow/media/images/richard.jpg" alt="Author's Image" class="img-fluid rounded-circle">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">
<div class="card-header p-0 position-relative">
<a class="zoom d-flex" href="../../news/esa_internship_vicente.html">
<img style="width: 520px; height: 330px" class="card-img-bottom d-block"
id="news-cover-image" src="website_files/images/article_content/esa_internship.png" alt="array">
</a>
<div class="date">
<p>15th Jun, 2023</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 item">
<div class="card">
<div class="card-body blog-details" style="max-height: 330px">
<a class="zoom d-blog" href="../../news/esa_internship_vicente.html">
<h5 style="font-weight: bold; overflow: auto; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size:19px; height:70px ">
Bridging the Gaps: Our PhD Student Vicente interns at ESA, Applying Machine Learning to Astrophysics Literature
</h5>
</a>
<hr style="border-top: 1px dotted rgba(143, 143, 143);">
<div class="price-review mb-1 align-items-center">
<div style="font-size: 13px; overflow: auto; height:110px">
<div>Unleashing the Power of Data Science: Internship at the European Space Agency's Deepthought Initiative Explores Astrophysics Meta-Research.</div>
</div>
</div>
</div>
<div class="card-footer">
<div class="author align-items-center">
<ul class="blog-meta">
<li>
<a href="../members/vicente_amado/vicente_amado.html" target="_blank">Vicente Amado Olivo</a>
</li>
</ul>
<a href="../members/vicente_amado/vicente_amado.html" class="post-author ms-auto" target="_blank">
<img src="../members/vicente_amado/media/images/ESD_headshot.jpg" alt="Author's Image" class="img-fluid rounded-circle">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">
<div class="card-header p-0 position-relative">
<a class="zoom d-flex" href="../../news/snr0509_josh_paper.html">
<img style="width: 520px; height: 330px" class="card-img-bottom d-block"
id="news-cover-image" src="website_files/images/article_content/snr0509_viz.png" alt="array">
</a>
<div class="date">
<p>28th May, 2023</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 item">
<div class="card">
<div class="card-body blog-details" style="max-height: 330px">
<a class="zoom d-blog" href="../../news/snr0509_josh_paper.html">
<h5 style="font-weight: bold; overflow: auto; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size:19px; height:70px ">
A comprehensive SN Ia companion search in SNR 0509-67.5
</h5>
</a>
<hr style="border-top: 1px dotted rgba(143, 143, 143);">
<div class="price-review mb-1 align-items-center">
<div style="font-size: 13px; overflow: auto; height:110px">
<div>A search for a surviving companion to a 400 year old type Ia supernova in the Large Magellanic Cloud</div>
</div>
</div>
</div>
<div class="card-footer">
<div>
<ul class="blog-meta">
<li>
<a style="font-size:10px">Contributer(s):</a>
</li>
<li>
<a href="members/josh_shields/josh_shields.html" target="_blank">
<p style="font-size: 10px; height:35px"> Josh Shields</p>
</a>
</li>
<li>, </li>
<li>
<a href="members/wolfgang_kerzendorf/wolfgang_kerzendorf.html" target="_blank">
<p style="font-size: 10px; height:35px"> Wolfgang Kerzendorf</p>
</a>
</li>
<li>, </li>
<li>
<a href="members/sofia_biriouk/sofia_biriouk.html" target="_blank">
<p style="font-size: 10px; height:35px"> Sofia Biriouk</p>
</a>
</li>
<li>, </li>
<li>
<a href="members/hayden_monk/hayden_monk.html" target="_blank">
<p style="font-size: 10px; height:35px"> Hayden Monk</p>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">
<div class="card-header p-0 position-relative">
<a class="zoom d-flex" href="../../news/natsci_fellowship_yuki.html">
<img style="width: 520px; height: 330px" class="card-img-bottom d-block"
id="news-cover-image" src="website_files/images/article_content/natsci.jpg" alt="array">
</a>
<div class="date">
<p>29th Apr, 2023</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 item">
<div class="card">
<div class="card-body blog-details" style="max-height: 330px">
<a class="zoom d-blog" href="../../news/natsci_fellowship_yuki.html">
<h5 style="font-weight: bold; overflow: auto; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size:19px; height:70px ">
Advancing IDEA in STEM: Our Graduate Yuki and her Mentor Wolfgang Earn Recognition from MSU College of Natural Science
</h5>
</a>
<hr style="border-top: 1px dotted rgba(143, 143, 143);">
<div class="price-review mb-1 align-items-center">
<div style="font-size: 13px; overflow: auto; height:110px">
<div>Yuki and Wolfgang were awarded from the College of Natural Science at Michigan State University.</div>
</div>
</div>
</div>
<div class="card-footer">
<div>
<ul class="blog-meta">
<li>
<a style="font-size:10px">Contributer(s):</a>
</li>
<li>
<a href="members/yuki_matsumura/yuki_matsumura.html" target="_blank">
<p style="font-size: 10px; height:35px"> Yuki Matsumura</p>
</a>
</li>
<li>, </li>
<li>
<a href="members/wolfgang_kerzendorf/wolfgang_kerzendorf.html" target="_blank">
<p style="font-size: 10px; height:35px"> Wolfgang Kerzendorf</p>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="padding-top: 5%;">
<div class="col-lg-6 col-md-6 item" style="width: 520px;">
<div class="card" id="card">