forked from CTI-CodeDay/GitWorkflowIntro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudents_2025.html
More file actions
1648 lines (1477 loc) · 65.5 KB
/
students_2025.html
File metadata and controls
1648 lines (1477 loc) · 65.5 KB
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
<html>
<head>
<link rel="stylesheet" href="static/css/style.css">
<title>Yo</title>
</head>
<body>
<h1> Summer 2025 Cohort </h1>
<div class="student-container">
<div>
<img src="static/img/valentinjones.png">
</div>
<div class="student-name"> Valentine Jones-Metsiou </div>
<div> School: San Francisco State University </div>
<p>The most exciting aspect of the CodeDay Labs is the hands-on experience and addition to my resume.</p>
<a href=""></a>
</div>
<div class="student-container">
<div>
<img src="static/img/leonardo_garcia.jpg">
</div>
<div class="student-name"> Leonardo Garcia </div>
<div> School: San Jose State University </div>
<p> What I am most looking forward to increase my technical soft and hard skills by contributing to open source
</p>
<a href="audr_danny_leonardo">Team: Audrey, Danny & Leonardo </a>
</div>
<div class="student-container">
<div>
<img src="https://github.com/zihuan3/GitWorkflowIntro/blob/deandre/static/img/deandrehuang.jpg?raw=true">
</div>
<div class="student-name"> Deandre Huang </div>
<div> School: UCLA </div>
<p> I'm looking forward to collaborating with others on an open-source project and learn how to use github! </p>
<a href="/deandre_jedrick_val">Team Page !</a>
</div>
<div class="student-container">
<div>
<img
src="https://github.com/RussianGravy/GitWorkflowIntro/blob/valentinejones/static/img/valentinjones.png?raw=true">
</div>
<div class="student-name"> Valentine Jones-Metsiou </div>
<div> School: San Francisco State University </div>
<p>The most exciting aspect of the CodeDay Labs is the hands-on experience and addition to my resume.</p>
<a href="/deandre_jedrick_val">Team Page !</a>
</div>
<div class="student-container">
<div>
<img src="static/img/jespiritu.jpg">
</div>
<div class="student-name">
Jedrick Espiritu
</div>
<div>
School: El Camino College
</div>
<p>What I'm most looking forward to about the CodeDay Labs internship is being able to work with real-world
infrastructures that actual programmers have interacted with.</p>
<div class="student-container">
<div>
<img src="static/img/Seline_Venzon.png">
</div>
<div class="student-name"> Seline Venzon </div>
<div> School: San Jose State University </div>
<p> What I am most looking forward to collab with other students to increase my technical soft and hard skills </p>
<a href="/deandre_jedrick_val">Team Page !</a>
</div>
<div class="student-container">
<div>
<img src="https://github.com/RussianGravy/GitWorkflowIntro/blob/valentinejones/static/img/valentinjones.png?raw=true">
</div>
<div class="student-name"> Valentine Jones-Metsiou </div>
<div> School: San Francisco State University </div>
<p>The most exciting aspect of the CodeDay Labs is the hands-on experience and addition to my resume.</p>
<a href="/deandre_jedrick_val">Team Page !</a>
</div>
<div class="student-container">
<div>
<img src="static/img/jespiritu.jpg">
</div>
<div class="student-name">
Jedrick Espiritu
</div>
<div>
School: El Camino College
</div>
<p>What I'm most looking forward to about the CodeDay Labs internship is being able to work with real-world infrastructures that actual programmers have interacted with.</p>
<a href="/deandre_jedrick_val">Team Page !</a>
</div>
<div class="student-container">
<div>
<img src="static/img/JohnnySselfie.png">
</div>
<div class="student-name"> Johnny Santamaria </div>
<div> School: San Francisco State University </div>
<p> What I am most looking forward to collab with other students to increase my technical soft and hard skills
</p>
<a href="microinternship-c1">Team Johnny, Drake, and Brent</a>
</div>
<div class="student-container">
<div>
<img src="static/img/utsab_pic.jpeg">
</div>
<div class="student-name"> Utsab Saha </div>
<div> School: CSU Monterey Bay </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<a href="nat_uts">Team Nat & Utsab</a>
</div>
<div class="student-container">
<div>
<img src="static/img/utsab_pic.jpeg">
</div>
<div class="student-name"> Phu Quach </div>
<div> School: CSULB </div>
<p> I LOVE Tyler and Octavio </p>
<a href="team_octavio_tyler_phu"> Team Octavio, Tyler, and Phu</a>
</div>
<div class="student-container">
<div>
<img src="static/img/utsab_pic.jpeg">
</div>
<div class="student-name"> Tyler Field </div>
<div> School: CCSF </div>
<p> I LOVE Phu and Octavio </p>
<a href="team_octavio_tyler_phu"> Team Octavio, Tyler, and Phu</a>
</div>
<div class="student-container">
<div>
<img src="static/img/utsab_pic.jpeg">
</div>
<div class="student-name"> Octavio Valdivia Mendoza </div>
<div> School: SJSU </div>
<p> I LOVE Phu and Tyler </p>
<a href="team_octavio_tyler_phu"> Team Octavio, Tyler, and Phu</a>
</div>
<div class="student-container">
<div>
<img src="static/img/Suchith_Gali.jpeg">
</div>
<div class="student-name"> Suchith Gali </div>
<div> School: UCM </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning valuable job and teamworking
skills from experienced engineers.</p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/IMG_0259.jpeg">
</div>
<div class="student-name"> Aaron Pang </div>
<div> School: San Jose State University </div>
<p> What I am most looking forward to is making a contribution to an open source project and improving my
collaboration skills </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/DanyVC.jpg">
</div>
<div class="student-name"> Dany Valverde Caldas </div>
<div> School: CIty College of San Francisco (CCSF) </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining experience with new
technologies and working in a team. </p>
</div>
<div class="student-container">
<div>
<img src="static/img/MariiaVolska.jpg">
</div>
<div class="student-name"> Masha Volska </div>
<div> Bellevue College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning to succesfully commit to a
open-source project.</p>
<a href="/YAM">Team Masha, Aaron and Yash :) </a>
</div>
<div class="student-container">
<div>
<img src="static/img/nolan.jpg">
</div>
<div class="student-name"> Nolan Antonio </div>
<div> School: San Jose State University </div>
<p>What I'm most looking forward to about the CodeDay Labs is collaborating with peers of all differing programming knowledge on an Open-Source project!</p>
<a href=""></a>
</div>
<div class="student-container">
<div>
<img src="static/img/IMG_0259.jpeg">
</div>
<div class="student-name"> Aaron Pang </div>
<div> San Jose State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is getting experience with open source
</p>
<a href="/YAM">Team Masha, Aaron and Yash :) </a>
</div>
<div class="student-container">
<div>
<img src="static/img/yashp.jpg">
</div>
<div class="student-name"> Yash Patel </div>
<div> University at Albany </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is getting first hand experience on
working with open source codebases</p>
<a href="/YAM">Team Masha, Aaron and Yash :) </a>
</div>
<div class="student-container">
<div>
<img src="static/img/Suchith_Gali.jpeg">
</div>
<div class="student-name"> Suchith Gali </div>
<div> School: UCM </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning valuable job and teamworking
skills from experienced engineers.</p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/New_LinkedIn_2.jpg">
</div>
<div class="student-name"> Brette Fitzgibbon </div>
<div> School: University of San Francisco </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning new open source and
programming skills. </p>
<a href="michael_brette_joshua_krishneet">Team page: Michael, Brette, Joshua, Krishneet</a>
</div>
<div class="student-container">
<div>
<img src="static/img/ProfilePicture.jpg">
</div>
<div class="student-name"> Kevin Beltran </div>
<div> School: Cal Poly SLO </div>
<p> I am really looking forward to learning about how to contribute to open source through CodeDay Labs </p>
<a href="/bo_kevin_miller">Team Bo & Kevin & Miller </a>
</div>
<div class="student-container">
<div>
<img src="static/img/Andre_Dargani.jpg">
</div>
<div class="student-name"> Andre Dargani </div>
<div> School: San Francisco State University </div>
<p> I'm excited to make my first open source contriubtion and make a positive impact to the open source
community </p>
<a href="./rav">Team Regina, Andre, and Vansh</a>
</div>
<div class="student-container">
<div>
<img src="static/img/c_tangonan.jpg">
</div>
<div class="student-name"> Chris Tangonan </div>
<div> School: CSU Monterey Bay </div>
<p> I'm looking forward to learning more about the open source community, and to hopefully provide a meaningful
contribution to the team. </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/jinan_A.jpg">
</div>
<div class="student-name"> Jinan Al-Maliky </div>
<div> School: Bellevue College </div>
<p> I'm looking forward to learning more about the experience and connections we all will be making. </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/ezequiel_pic.jpg">
</div>
<div class="student-name"> Ezequiel Reyes </div>
<div> School: CSU Monterey Bay </div>
<p> What I'm looking forward to about the CodeDay Labs internship is gaining experience and making a meaningful
contribution. </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/IMG_5733.jpeg">
</div>
<div class="student-name"> Brent Uyguangco </div>
<div> School: El Camino College </div>
<p> I am excited to be a part of CTI's open source partnership with CodeDay, hoping to make a positive
contribution
to the best of my abilities </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/IMG_5733.jpeg">
</div>
<div class="student-name"> Brent Jericho Uyguangco </div>
<div> School: California State University -- Dominguez Hills </div>
<p> I am excited to be a part of CTI's open source partnership with CodeDay, hoping to make a positive
contribution to the best of my abilities. </p>
<a href="microinternship-c1">Team Johnny, Drake, and Brent</a>
</div>
<div class="student-container">
<div>
<img src="static/img/static/img/neel_pic.jpeg">
</div>
<div class="student-name"> Neel Deshmukh </div>
<div> School: City College of San Francisco </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is addig some open-source experience to
my resume! </p>
<a href="/chris_neel_marcelo">Team CNM </a>
</div>
<div class="student-container">
<div>
<img src="static/img/jane_pic.jpg">
</div>
<div class="student-name"> Jane Swingler </div>
<div> School: University of San Francisco </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is making my first contribution to an
open source project. </p>
<a href="/Jane_Dane_Steven">Team Jane Dane And Steven</a>
</div>
<div class="student-container">
<div>
<img src="static/img/LarsV.jpg">
</div>
<div class="student-name"> Lars Voigt-Bui </div>
<div> School: Irvine Valley College </div>
<p> What I'm most looking fowards to is the Open Source programs and improving my coding skills. </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/marcelo_villalobos.jpg">
</div>
<div class="student-name"> Marcelo Villalobos Diaz </div>
<div> School: CSU Monterey Bay </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is the opportunity to collaborate with a
diverse group of talented peers and industry professionals. </p>
<!-- <a href="nat_uts">Team Nat & Utsab</a> -->
</div>
<div class="student-container">
<div>
<img src="static/img/KoichiNakata.jpg">
</div>
<div class="student-name"> Koichi Nakata </div>
<div> School: University of San Francisco </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining hands-on experience of
open-source project! </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/aizen.png">
</div>
<div class="student-name">Aizen Baidya</div>
<div>School: UC Merced</div>
<p>What I'm most looking forward to about the CodeDay Labs internship is learning about and gaining experience
working with industry-relevant technologies and contributing to a meaningful open-source project.</p>
<a href="ahmet-khang-aizen">Team Ahmet + Khang + Aizen</a>
</div>
<div class="student-container">
<div>
<img src="static/img/AungKhantMin.JPG">
</div>
<div class="student-name"> Aung Khant Min </div>
<div> School: Skyline College </div>
<p> I'm looking forward to learning more about GitHub! </p>
<a href="/mia_victor_alec"> Team Mia, Victor, and Alec </a>
</div>
<div class="student-container">
<div>
<img src="static/img/vansh-patel.jpeg">
</div>
<div class="student-name"> Vansh Patel </div>
<div> School: CSULB </div>
<p> What I'm most looking forward to about the CodeDay internship is learning more about software engineering
and gaining real world experience in that field. </p>
<a href="rav">Team Regina, Andre, and Vansh</a>
</div>
<div class="student-container">
<div>
<img src="static/img/KevinPicture.png">
</div>
<div class="student-name"> Kevin Jijon </div>
<div> School: Santa Monica College </div>
<p> What I'm looking for the most is to improve my professional skills and gain experience working on open
source projects. </p>
<a href="kev_kun_ye">Team Kevin, Kundyz & Ye Chan</a>
</div>
<div class="student-container">
<div>
<img src="static/img/Regina_Huang.jpg">
</div>
<div class="student-name"> Regina Huang </div>
<div> School: Northeastern University</div>
<p> I’m really looking forward to gaining hands-on experience and collaborating on open-source projects through
the CodeDay Labs internship! </p>
<a href="rav">Team Regina, Andre, and Vansh</a>
</div>
<div class="student-container">
<div>
<img src="static/img/emilyyee.jpg">
</div>
<div class="student-name"> Emily Yee </div>
<div> School: Las Positas College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is getting to learn new skills and
working with others :). </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/jerry.jpeg">
</div>
<div class="student-name"> Jerry Nguyen </div>
<div> School: San Jose State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is collaborating on an open-source
project with like-minded peers. </p>
<a href="kat_aaron_will_jerry">Team Kat, Will, Aaron, Jerry</a>
</div>
<div class="student-container">
<div>
<img src="static/img/justins.jpeg">
</div>
<div class="student-name"> Justin Saminathen </div>
<div> School: San Jose State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining experience on open-source
contributions as part of a team. </p>
<a href="/justin-qilan-k">Team page</a>
</div>
<div class="student-container">
<div>
<img src="static/img/Demi_C.jpg">
</div>
<div class="student-name"> Ziqi(Demi) Chen </div>
<div> School: CSU Fullerton </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining hands-on experiences and
meeting amazing people! </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/WillY.jpg">
</div>
<div class="student-name"> Will Young </div>
<div> School: San Francisco State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining hands-on experiences and
meeting amazing people! </p>
<a href="/team_kat_aaron_will_jerry">Team page</a>
</div>
<div class="student-container">
<div>
<img src="static/img/powell_kayla.jpg">
</div>
<div class="student-name"> Kayla Powell </div>
<div> School: San Francisco State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining hands-on experiences and
meeting amazing people! </p>
<a href="/team_kat_aaron_will_jerry">Team page</a>
</div>
<div class="student-container">
<div>
<img src="static/img/Aaron_Mundanilkunathil.png">
</div>
<div class="student-name"> Aaron Mundanilkunathil
</div>
<div> School: San Jose State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining hands-on experiences and
meeting amazing people! </p>
<a href="/team_kat_aaron_will_jerry">Team page</a>
</div>
<div class="student-container">
<div>
<img src="static/img/kaulan_img.jpg">
</div>
<div class="student-name"> Kaulan Serzhanuly </div>
<div> School: SJSU </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is experience and skills. </p>
<a href="kal_hec_ama">Team Kaulan & Hector & Amara</a>
</div>
<div class="student-container">
<div>
<img src="static/img/IMG_1298.jpg">
</div>
<div class="student-name"> Ye Chan Lin </div>
<div> School: Orange Coast College </div>
<p> What excites me most about the CodeDay Labs internship is the opportunity to gain practical experience while
connecting with incredible people!</p>
<a href="kev_kun_ye">Team Kevin, Kundyz & Ye Chan</a>
</div>
<div class="student-container">
<div>
<img src="static/img/jeffreycheung_pic.png">
</div>
<div class="student-name"> Jeffrey Cheung </div>
<div> School: Cal Poly SLO </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is collaboration and industry relevant
skills. </p>
<a href="team_bjp">Team Brendan, Jeffrey, Patricia</a>
</div>
<div class="student-container">
<div>
<img src="static/img/kundyz_pic.jpg">
</div>
<div class="student-name"> Kundyz Serzhankyzy </div>
<div> School: San Jose State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining experience and learning more!
</p>
<a href="kev_kun_ye">Team Kevin, Kundyz, & Ye Chan</a>
</div>
<div class="student-container">
<div>
<img src="static/img/asahiner.jpg">
</div>
<div class="student-name"> Ahmet Sahiner </div>
<div> School: CCSF </div>
<p> What I'm most looking forward to about the CodeDay internship is learning more about software engineering
and gaining real world experience in that field. </p>
<a href="ahmet-khang-aizen">Team Ahmet + Khang + Aizen<br>(Turtles)</a>
</div>
<div class="student-container">
<div>
<img src="static/img/IMG_6510[1].JPG">
</div>
<div class="student-name"> Dane Deacon </div>
<div> School: Gavilan College </div>
<p> What I am most looking forward to collab with other students to increase my technical soft and hard skills
to advance my carrer </p>
<a href="/Jane_Dane_Steven">Team Jane Dane And Steven</a>
</div>
<div class="student-container">
<div>
<img src="static/img/your_image.jpg">
</div>
<div class="student-name"> Steven Armenta</div>
<div> School: Southern New Hampshire University </div>
<p> I'm excited to gain hands-on experience in open-source development and collaborate with talented peers
during the CodeDay Labs internship. </p>
<a href="team41">Team Katya, Steven & Diana</a>
</div>
<div class="student-container">
<div>
<img src="static/img/J-Dees-pic.jpg">
</div>
<div class="student-name">Jonathan Dees</div>
<div> School: Cal Poly SLO </div>
<p> What I am most looking forward to about the CodeDay internship is learning how to effectively contribute to
open source software development </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/Anthony_Thengs.jpg">
</div>
<div class="student-name"> Anthony Theng </div>
<div> School: CSULB </div>
<p> What I'm most looking forward to about the CodeDay internship is learning more about software engineering
gaining experience with open-source. </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/IMG_8421.jpg">
</div>
<div class="student-name"> Jasleen Narang </div>
<div> School: San Jose State University </div>
<p> What I'm most looking forward to about the CodeDay internship is gaining more experience and understanding
of workplace ettiquete and everyday life. </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/git rmio.png">
</div>
<div class="student-name"> Amormio Velasquez III </div>
<div> School: University of California, San Diego </div>
<p> I am eager to have my first experience in the open source community and hopefully make an impactful
contribution.</p>
<a href="amo_will_nee">Team Amormio, Will, Neenu</a>
</div>
<div class="student-container">
<div>
<img alt="Sakar Pic" src="">
</div>
<div class="student-name"> Sakar Timilsina </div>
<div> School: WGU</div>
<p> Looking forward to contribute to open-source. </p>
<a href="sakar_joshua_viet">Team Sakar, Joshua, and Viet</a>
</div>
<div class="student-container">
<div>
<img alt="Viet Pic" src="static/img/viet.jpeg">
</div>
<div class="student-name"> Viet Nguyen </div>
<div> School: San Jose State University</div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining hands-on experience through
contributions to impactful projects, enhancing my technical and professional skills.</p>
<a href="sakar_joshua_viet">Team Sakar, Joshua, and Viet</a>
<img src="static/img/agamjot.png">
</div>
<div class="student-name"> Agamjot Singh </div>
<div> School: San Jose State University</div>
<p> What I'm most looking forward to about the CodeDay internship is more about open source techniques!</p>
<a href="agam_asher_jiayi">Team Agamjot, Asher, and Jiayi</a>
</div>
<div class="student-container">
<div>
<img src="static/img/sophiaalexander.jpeg">
</div>
<div class="student-name"> Sophia Alexander </div>
<div> School: Santa Monica College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning how to collaborate with my
team on code, learning from experienced engineers, and making an impact.</p>
<a href="sophia_phineas_aaron">Team Sophia,Phineas, &Aaron </a>
</div>
<div class="student-container">
<div>
<img src="static/img/SaraLisboa.jpg">
</div>
<div class="student-name"> Sara Chlihi </div>
<div> School: Grossmont College </div>
<p> I'm excited to apply what I learned in a professional setting.</p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
<a href="kar_all">Team Karan, Allen, Sarah </a>
</div>
</div>
<div class="student-container">
<div>
<img src="static/img/joshualinang.jpg">
</div>
<div class="student-name"> Joshua Linang </div>
<div> School: CUNY Hunter College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is meeting people, gaining valuable
experience, and working on projects with a team. </p>
<a href="jason_joshua_yvonna">Team: Jason Fuentes & Yvonna Mellado</a>
</div>
<div class="student-container">
<div>
<img src="static/img/barr_kiko.png">
</div>
<div class="student-name"> Kiko Barr </div>
<div> School: Cal Poly Humboldt </div>
<p> I am excited to make my first open source contribution and get to know my Computing Talent Initiative peers
through my CodeDay internship. </p>
<a href="aaron-kiko-azriel">Team Aaron Kiko Azriel</a>
</div>
<div class="student-container">
<div>
<img src="">
</div>
<div class="student-name"> William B-D </div>
<div> School: Cal State Monterey Bay </div>
<p> I'm looking forward to developing my skills! </p>
<a href="will_ann_rian">Team page: Will, Ann, Rian </a>
</div>
<div class="student-container">
<div>
<img src="static/img/Phineas_pic.jpg">
</div>
<div class="student-name"> Phineas Asmelash </div>
<div> School: UC Santa Cruz </div>
<p> What I'm looking for codeday labs expereince is to gain new skills, network with industry mentors, and make
a contribution to an open source project. </p>
<a href="sophia_phineas_aaron">Team Sophia, Phineas, and Aaron</a>
</div>
<div class="student-container">
<div>
<img src="static/img/IMG_1324.jpg">
</div>
<div class="student-name"> Brendan Sick </div>
<div> School: Grossmont College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is getting the experience! </p>
<a href="team_bjp">Team Brendan, Jeffrey, Patricia</a>
</div>
<div class="student-container">
<div>
<img src="static/img/allen.jpeg">
</div>
<div class="student-name"> Allen Tam </div>
<div> School: De Anza College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning new skills! </p>
<a href="kar_all">Team Karan, Allen, Sarah </a>
</div>
<div class="student-container">
<div>
<img src="static/img/KaranVerma.jpg">
</div>
<div class="student-name"> Karan Verma </div>
<div> School: CSULB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning more about coding and the
techniques to become a skillful computer scientist. </p>
<a href="kar_all">Team Karan, Allen, Sarah </a>
</div>
<div class="student-container">
<div>
<img src="static/img/asher_pfp.png">
</div>
<div class="student-name"> Asher Drake Alacar </div>
<div> School: San Jose State University </div>
<p> I am looking forward to gaining experience in a team environment contributing to a large project in CodeDay
Labs! </p>
<a href="agam_asher_jiayi">Team Agamjot, Asher, and Jiayi</a>
<a href="brash">Team Asher and Brandon</a>
</div>
<div class="student-container">
<div>
<img src="static/img/alejandro.jpg">
</div>
<div class="student-name"> Alejandro Navarro </div>
<div> School: California State University San Marcos </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is to gain experience in an enviornment
that's close to what working in the real world will be like! </p>
<a href="gian_daniel_alejandro">Team Gian & Daniel & Alejandro</a>
</div>
<div class="student-container">
<div>
<img src="static/img/chris_da_sheep.jpeg">
</div>
<div class="student-name"> Christine(Chris) Tran </div>
<div> School: CSU San Marcos </div>
<p> What I am most looking forward to about the CodeDay Labs internship is learning from my experiences,
increasing my skills, and the opportunity to network with others! :) </p>
<a href="ann_rian_chris">Team Ann, Rian & Chris</a>
</div>
<div class="student-container">
<div>
<img src="static/img/Jiayi.jpg">
</div>
<div class="student-name"> Jiayi Chen </div>
<div> School: CSU Fullerton </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining hands-on experiences and
meeting amazing people! </p>
<a href="agam_asher_jiayi">Team Agam, Asher, Jiayi</a>
</div>
<div class="student-container">
<div>
<img src="static/img/abas.jpeg">
</div>
<div class="student-name"> Abas Mohamed </div>
<div> School: Grossmont College </div>
<p> What I am most looking foward to about the CodeDay Lab internship is learning about open source and how to
begin making contributions </p>
<a href="abas_jake_mon">Team page</a>
</div>
<div class="student-container">
<div>
<img src="static/img/IMG_0297.jpeg">
</div>
<div class="student-name"> Mon Raphael Fernandez </div>
<div> School: Glendale Community College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is having something to add into my resume
to get to a good university. </p>
<a href="abas_jake_mon">Team page</a>
</div>
<div class="student-container">
<div>
<img src="">
</div>
<div class="student-name"> Hyun Oh Kwon </div>
<div> School: University of San Francisco </div>
<p> What I am most looking foward to about the CodeDay Lab internship is learning about open source and how to
begin making contributions. </p>
<a href="abas_jake_mon">Team page</a>
</div>
<div class="student-container">
<div>
<img src="static/img/hillary.jpg">
</div>
<div class="student-name"> Hillary Villarta </div>
<div> School: San Francisco State University </div>
<p> What I am most looking forward to about the CodeDay Lab internship is getting to learn how to work in a team
and gain experience working on projects. </p>
<a href="microinternship-c1">Team page (leave blank until Module 5 when you will be assigned to your teams </a>
</div>
<div class="student-container">
<div>
<img src="static/img/pf.png">
</div>
<div class="student-name"> Hector Rios </div>
<div> San Jose State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning to succesfully commit to a
open-source project.</p>
<a href="kal_hec_ama">Team Kaulan & Hector & Amara</a>
</div>
<div class="student-container">
<div>
<img src="static/img/IMG_4524.png">
</div>
<div class="student-name"> Amara Whitson </div>
<div> CSU Long Beach </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning how to GitHub and making new
friends!</p>
<a href="kal_hec_ama">Team Kaulan & Hector & Amara</a>
</div>
<div class="student-container">
<div>
<img src="static/img/dregis.jpg">
</div>
<div class="student-name"> Dylan Regis </div>
<div> School: CSU Dominguez Hills </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning new things and gaining
experience in the field.</p>
<a href="nam_dylan_brandon">Team page</a>
</div>
<div class="student-container">
<div>
<img src="static/img/emad_rep.jpg">
</div>
<div class="student-name"> Emad Saadat </div>
<div> School: Santa Monica College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is working with others on a programming
project. </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/rianhassetphoto.jpg">
</div>
<div class="student-name"> Rian Hassett </div>
<div> School: CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is getting hands on experience with
codebases that aren't mine, and collaborating with others.</p>
<a href="will_ann_rian">Team Will, Ann, Rian</a>
</div>
<div class="student-container">
<div>
<img src="/static/img/namnguyen_pic.jpg">
</div>
<div class="student-name"> Nam Nguyen </div>
<div> School: San Jose Sate University </div>
<p> I am looking forward to work with a team during the CodeDay Lab internship and also able to update my resume
with this experience.</p>
<a href="nam_dylan_brandon">Team page</a>
</div>
<div class="student-container">
<div>
<img src="">
</div>
<div class="student-name"> Sabina Diaz-Erazo </div>
<div> School: San Francisco State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<a href="aut_wanni_sab">Team Autinn, Wannida, Sabrina</a>
</div>
<div class="student-container">
<div>
<img src="">
</div>
<div class="student-name">Wannida Polchan</div>
<div> School: Southwestern College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning new coding skills. </p>
<a href="aut_wanni_sab"> Team Autinn, Wannida, Sabrina</a>
</div>
<div class="student-container">
<div>
<img src="static/img/AnnJojo.jpg">
</div>
<div class="student-name"> Ann Jojo </div>
<div> School: CSU Monterey Bay </div>
<p> What I am most looking forward to collab with other students to increase my technical soft and hard skills
</p>
<a href="will_ann_rian">Team Ann, Rian & Will</a>
</div>
<div class="student-container">
<div>
<img src="/static/img/AungNandaOo.jpg">
</div>
<div class="student-name"> Aung Nanda Oo </div>
<div> School: City College Of San Francisco </div>
<p> Looking forward to contribute opensource with a team during the CodeDay Lab internship! </p>
<a href="nat_uts">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="static/img/MariiaVolska.jpg">
</div>
<div class="Mariia Volska"> Mariia Volska </div>
<div> School: Bellevue College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining experience and learning to
collaborate on open-source problems. </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="/static/img/sabrina.JPG">
</div>
<div class="student-name"> Sabrina Diaz-Erazo </div>
<div> School: San Francisco State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is working in a team and contributing to
open source. </p>
<a href="">Team page (leave blank until Module 5 when you will be assigned to your teams</a>
</div>
<div class="student-container">
<div>
<img src="/static/img/og-image.webp">
</div>
<div class="student-name"> Hien Ly </div>
<div> School: SJSU </div>
<p> I'm looking forward to participate in micro-internships</p>
</div>
<div class="student-container">
<div>
<img alt="Joshua Pic" src="static/img/Joshua.jpeg">
</div>
<div class="student-name"> Joshua Pham </div>
<div> School: University of California, San Diego</div>
<p> What I'm most looking forward to about the CodeDay Labs internship is understanding how to work in a