forked from computingtalent/GitWorkflowIntro
-
Notifications
You must be signed in to change notification settings - Fork 346
/
Copy pathstudents_2023.html
1097 lines (933 loc) · 44 KB
/
students_2023.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
<html>
<head>
<link rel="stylesheet" href="static/css/style.css">
<title>Yo</title>
</head>
<body>
<h1> Summer 2023 Cohort </h1>
<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="" />
</div>
<div class="student-name"> Natalia Gill </div>
<div> School: UCSC </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/sneha_pic.jpg" />
</div>
<div class="student-name"> Sneha De </div>
<a href='/Team 10'>Team from Module 5</a>
</div>
<div class="student-container">
<div>
<img src="static/img/alisha.png" />
</div>
<div class="student-name"> Alisha Maddy </div>
<div> School: Portland community college </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is teamwork with my
peers and learning new technologies.
</p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: Shengzhe Zhang, Fernando Rodriguez</div>
<div> Team Write-up: <a href="shengzhe">Team Shengzhe, Alisha and Fernando</a></div>
</div>
<div class="student-container">
<div>
<img src="static/img/yuancheng_cao.jpg" />
</div>
<div class="student-name"> Yuancheng Cao </div>
<div> School: UCSD </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is improving my soft skills and updating my resume.</p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="teamWork">Team Jessica, Yuancheng, & Zhenyu</a>
</div>
<div class="student-container">
<div>
<img src="static/img/Sebastian.jpg" />
</div>
<div class="student-name"> Sebastian Santoyo </div>
<div> School: CS++ Cohort at CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning new programming languages. </p>
<a href="team_Di_Si_Se"> team_Di_Si_Se </a>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Diego Zavala </div>
<div> School: CS++ Cohort at CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<a href="team_Di_Si_Se"> team_Di_Si_Se </a>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Andres Ventura </div>
<div> School: CSUSB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="static/img/brian_p.png" />
</div>
<div class="student-name"> Brian Palomar-Salazar </div>
<div> School: CSin3 Cohort at CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning the necessary skills needed to be successful in a swe role. </p>
<div> Open Source Project: Firefiles <Wait until Module 5 to answer this> </div>
<div> Team Members: Nathan Pham and Brian Palomar <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="nathan_brian"> Team Nathan & Brian</a>
</div>
<div class="student-container">
<div>
<img src="static/img/IanW.jpg" />
</div>
<div class="student-name"> Ian Wong </div>
<div> School: CCSF </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is developing my problem solving and software engineering skills. </p>
<a href="ian_brenden_elias">Team Ian, Brenden, and Elias</a>
</div>
<div class="student-container">
<div>
<img src="static/img/zach_pic.jpg" />
</div>
<div class="student-name"> Zachary Spang </div>
<div> School: CSP - Warrior-Toro CSP at El Camino College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is being able to get experience working on a big project. </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href = "dong_zach_dar">Team Dongping, Zach, and Darren</a>
</div>
<div class="student-container">
<div>
<img src="static/img/sunveer.jpg" />
</div>
<div class="student-name"> Sunveer Bhullar </div>
<div> School: Cal Poly Pomona </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is getting more technical experience and working on new projects. </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="sun_edm">Team Sunveer & Edmond</a>
</div>
<div class="student-container">
<div>
<img src="static/img/LukeBerry.jpeg" />
</div>
<div class="student-name"> Luke Berry </div>
<div> School: CS++ Cohort at CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is working together on a project with a team </p>
<a href = "luke_noah_maya"> Team LNM </a>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Ngoc Chung Tran </div>
<div> School: Orange Coast College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="static/img/1676941201770.jpg" />
</div>
<div class="student-name"> Magiber Aparicio </div>
<div> School: Cal State Dominguez Hills </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<a href="team_michael_rahul_magiber">Team Michael, Rahul, and Magiber</a>
</div>
<div class="student-container">
<div>
<img src="static/img/Shawn_Templer.jpg" />
</div>
<div class="student-name"> ShawnAnthony Templer </div>
<div> School: College of the Desert </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is
working on a project new to me and learning new technologies and frameworks.</p>
<a href="alison_rob_shawn">Team Alison Rob & Shawn</a>
</div>
<div class="student-container">
<div>
<img src="static/img/Nathan_Pham.jpg" />
</div>
<div class="student-name"> Nathan Pham </div>
<div> School: San Jose State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is to gain valuable experience and to connect with mentors and companions in the industry.</p>
<div> Open Source Project: Firefiles<Wait until Module 5 to answer this> </div>
<div> Team Members: Nathan Pham and Brian Palomar<Wait until Module 5 to answer this> </div>
<div> Team Write-up: Firefiles<Wait until Module 5 to answer this> </div>
<a href="nathan_brian"> Team Nathan & Brian</a>
<a href="/nathan_brian">Team Nathan Pham and Brian Palomar</a>
</div>
<div class="student-container">
<div>
<img src="static/img/TrongLe_HeadShot_front.jpg" />
</div>
<div class="student-name"> Trong Le </div>
<div> School: San Jose State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is enhancing and extending my skill sets for future SWE jobs. </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href='/Team 10'>Team from Module 5</a>
</div>
<div class="student-container">
<div>
<img src="static/img/Michelle_23.png" />
</div>
<div class="student-name"> Michelle Tan </div>
<div> School: CCSF </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gain new experiences to apply to my future. </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="boba">Team Boba</a>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Jorge Moreno </div>
<div> School: CS++ Cohort at CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="static/img/brenden_pic.jpg" />
</div>
<div class="student-name"> Brenden Inhelder </div>
<div> School: CSULB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning alongside a small team with an industry mentor. </p>
<a href="ian_brenden_elias">Team Ian, Brenden, and Elias</a>
</div>
<div class="student-container">
<div>
<img src="static/img/Noah_Jacinto.PNG" />
</div>
<div class="student-name"> Noah Jacinto </div>
<div> School: CSULB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining hands on experience and working with people along the way. </p>
<a href = "luke_noah_maya"> Team LNM </a>
</div>
<div class="student-container">
<div>
<img src="static/img/Darren_S.jpg" />
</div>
<div class="student-name"> Darren Seng </div>
<div> School: CSULB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is becoming more proficient at open source contribution, working with technologies relevant in the industry, and having a promising experience to add to my resume. </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href = "dong_zach_dar">Team Dongping, Zach, and Darren</a>
</div>
<div class="student-container">
<div>
<img src="static/img/DavidNicolasGarcia.jpg" />
</div>
<div class="student-name"> David Nicolas Garcia </div>
<div> School: CSULB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is the chance to work on an open-source project and gain hands-on experience with Git and its workflow.</p>
<a href="james_david">Team James & David </a>
</div>
<div class="student-container">
<div>
<img src="static/img/maya.JPG" />
</div>
<div class="student-name"> Maya Chidambaram </div>
<div> School: UCM </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is being able to make a real-world contribution with newly acquired programming skills</p>
<a href = "luke_noah_maya"> Team LNM </a>
</div>
<div class="student-container">
<div>
<img src="static/img/jesse.jpg" />
</div>
<div class="student-name"> Jesse Garcia </div>
<div> School: CSUB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning what to expect in my field. </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="static/img/gbdom.png" />
</div>
<div class="student-name"> Dominic Infante </div>
<div> School: CSP - Warrior-Toro CSP at El Camino College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is the team experience and general collaborative environment. </p>
<a href="liu_tuan_dominic">Liu, Tuan, & Dominic</a>
</div>
<div class="student-container">
<div>
<img src="static/img/TravisC.jpg" />
</div>
<div class="student-name"> Travis Chong </div>
<div> School: UCI </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is getting more experience
with open source projects and growing skills to furhter my SWE journey. </p>
<a href="trav_con"> Team Travis & Conlyn </a>
</div>
<div class="student-container">
<div>
<img src="static/img/Diego_Espinoza.jpg" />
</div>
<div class="student-name"> Diego Espinoza </div>
<div> School: CSP - Warrior-Toro CSP at El Camino College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is experience.</p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="boba">Team Boba</a>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Joshua Fernandez </div>
<div> School: CSP - Toro CSP at CSUDH </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="static/img/val_pic.JPG" />
</div>
<div class="student-name"> Valerie Escalante </div>
<div> School: CSULB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is the experience of collaborating with others on an impactful project. </p>
<a href="nick_val">Team Nick & Val</a>
</div>
<div class="student-container">
<div>
<img src="static/img/ShengzheZhang.png">
</div>
<div class="student-name"> Shengzhe Zhang </div>
<div> School: UCD </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is to explore more different aspects in Computer Science field </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: Alisha Maddy, Fernando Rodriguez</div>
<div> Team Write-up: <a href="shengzhe">Team Shengzhe, Alisha and Fernando</a> </div>
</div>
<div class="student-container">
<div>
<img src="static/img/ll299.jpg" />
</div>
<div class="student-name"> Ling Ching Liu </div>
<div> School: Cal Poly Humboldt </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is working with a team. </p>
<a href="liu_tuan_dominic">Liu, Tuan, & Dominic</a>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Michael Chen </div>
<div> School: SFSU </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<a href="team_michael_rahul_magiber">Team Michael, Rahul, and Magiber</a>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Kory Callanan </div>
<div> School: SFSU </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Ricardo Nunez </div>
<div> School: CS++ Cohort at CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<a href="sleeper">Team Sleeper</a>
</div>
<div class="student-container">
<div>
<img src="static/img/SihamPhoto.jpg" />
</div>
<div class="student-name"> Siham Argaw </div>
<div> School: SFSU </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is getting some real-world experience </p>
<a href="team_Di_Si_Se"> team_Di_Si_Se </a>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Ricardo Perez Jr. </div>
<div> School: CS++ Cohort at CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="/static/img/jaime_palacios.jpg" />
</div>
<div class="student-name"> Jaime Palacios </div>
<div> School: CSin3 Cohort at CSUMB </div>
<p> I'm always eager to learn about new technologies and how to apply them to my work. I'm particularly interested in topics I haven't touched much on like machine learning, data science, and cloud computing. I believe that these technologies have the potential to revolutionize many industries, and I want to be at the forefront of that revolution</p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="/jaime_edgarh">Team Jaime & Edgar</a>
</div>
<div class="student-container">
<div>
<img src="static/img/yeeao_image.jpg" />
</div>
<div class="student-name"> Alvin Yee </div>
<div> School: UCI </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is exploring code with my partners and mentor. </p>
<a href="sleeper">Team Sleeper</a>
</div>
<div class="student-container">
<div>
<img src="static/img/Frodriguez116.jpg">
</div>
<div class="student-name"> Fernando Rodriguez </div>
<div> School: CSUDH </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is working on my skills </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: Shengzhe Zhang, Alisha Maddy</div>
<div> Team Write-up: <a href="shengzhe">Team Shengzhe, Alisha and Fernando</a> </div>
</div>
<div class="student-container">
<div>
<img src="static/img/alisonfung.jpg" />
</div>
<div class="student-name"> Alison Fung </div>
<div> School: Cal Poly Pomona </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is: making a contribution to an existing project that will help users in the future </p>
<a href="alison_rob_shawn">Team Alison Rob & Shawn</a>
</div>
<div class="student-container">
<div>
<img src="static/img/carlsonR.jpg" />
</div>
<div class="student-name"> Robert Carlson </div>
<div> School: CCSF </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is creating a positive contribution to the open-source community.</p>
<a href="alison_rob_shawn">Team Alison Rob & Shawn</a>
</div>
<div class="student-container">
<div>
<img src="static/img/hongngoc.JPEG" />
</div>
<div class="student-name"> Hong Ngoc Nguyen </div>
<div> School: Orange Coast College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<a href="/nt"> Team N & T </a>
<p> What I'm most looking forward to about the CodeDay Labs internship is an opportunity to work on a real-world project with the help of a mentor from the industry. </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="static/img/Elias.jpeg" />
</div>
<div class="student-name"> Elias Woldie </div>
<div> School: CSULB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is to work on a real world application, asses my skillset, learn different tech stacks, and to connect with industry mentor.</p>
<a href="ian_brenden_elias">Team Ian, Brenden, and Elias</a>
<
<div class="student-container">
<div>
<img src="static/img/james_pic.JPG" />
</div>
<div class="student-name"> James Ramos </div>
<div> School: Contra Costa College -> Oregon State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is contributing to real world projects with other students! </p>
<a href="james_david">Team James & David </a>
</div>
<div class="student-container">
<div>
<img src="static/img/small file.jpg" />
</div>
<div class="student-name"> Edgar Ramirez </div>
<div> School: CSin3 Cohort at CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="edg_and_edg"> Team Edagr H & Edgar R</a>
<p> What I'm most looking forward to about the CodeDay Labs internship is getting experience and be able to
network with other people. </p>
<a href='/Team 10'>Team from Module 5</a>
</div>
<div class="student-container">
<div>
<img src="static/img/wannabe linus.png"/>
</div>
<div class="student-name"> Nicholas Lee </div>
<div> School: UCSC </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is contributing to and open source project and getting a feel to what it is like to be in a real internship.</p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="team_kn">Team Nick & Kyle</a>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> YiOnni Redmon </div>
<div> School: CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="static/img/tuan_tran_face.png" />
</div>
<div class="student-name"> Tuan Tran </div>
<div> School: Pasadena City College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learn new skills and tools to solve problems. </p>
<a href="liu_tuan_dominic">Liu, Tuan, & Dominic</a>
</div>
<div class="student-container">
<div>
<img src="static/img/mohamed.jpg" />
</div>
<div class="student-name"> Mohammed Mohamed </div>
<div> School: SFSU </div>
<p> I look forward to the journey of potentially not knowing how to solve a problem to slowly figuring out how to do it.</p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="boba">Team Boba</a>
</div>
<div class="student-container">
<div>
<img src="static/img/JessicaNguyen.jpg" />
</div>
<div class="student-name"> Jessica Nguyen </div>
<div> School: College of Marin </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is being able to collaborate with my peers and develop professional interpersonal skills as a software engineer. </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="teamWork">Team Jessica, Yuancheng, & Zhenyu</a>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Dylan Cornel </div>
<div> School: Orange Coast College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="static/img/Dongping_pic.JPG"/>
</div>
<div class="student-name"> Dongping Guo </div>
<div> School: CSUEB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is looking at the
the summer open-source project showing up on my resume. </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href = "dong_zach_dar">Team Dongping, Zach, and Darren</a>
</div>
<div class="student-container">
<div>
<img src="static/img/manny.jpg" />
</div>
<div class="student-name"> Emmanuel Jones-Pacheco </div>
<div> School: San Diego State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is to learn new tools and skills for my future </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Edgar Hernandez </div>
<div> School: CSin3 Cohort at CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="edg_and_edg"> Team Edagr H & Edgar R</a>
</div>
<div class="student-container">
<div>
<img src="static/img/KyleDrewes.png" />
</div>
<div class="student-name"> Kyle Drewes </div>
<div> School: Sonoma State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is learning concepts that will teach me how to become a better programmer.</p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="team_kn">Team Nick & Kyle</a>
</div>
<div class="student-container">
<div>
<img src="static/img/nick_m.jpg" />
</div>
<div class="student-name"> Nicolas Mederos </div>
<div> School: CSin3 Cohort at CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is getting to work on something that has real world applications. </p>
<a href="nick_val">Team Nick & Val</a>
</div>
<div class="student-container">
<div>
<img src="static/img/zhenyu_pic.PNG" />
</div>
<div class="student-name"> Zhenyu Yu </div>
<div> School: University of California Santa Barbara </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is getting the experience to work with others on a big project. </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="teamWork">Team Jessica, Yuancheng, & Zhenyu</a>
</div>
<div class="student-container">
<div>
<img src=" static/img/Elizabeth.jpg">
</div>
<div class="student-name"> Elizabeth Barco Lopez </div>
<div> School: CSP - Warrior-Toro CSP at El Camino College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is solving real-life problems and learning more about GitHub. </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="static/img/Rahul_G.png" />
</div>
<div class="student-name"> Rahul Gupta </div>
<div> School: CSUS (Sacramento State) </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining experience and working with others! </p>
<a href="team_michael_rahul_magiber">Team Michael, Rahul, and Magiber</a>
</div>
<div class="student-container">
<div>
<img src="static/img/conlyn_pic.jpg" />
</div>
<div class="student-name"> Conlyn Pattison </div>
<div> School: CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is gaining experience and knowledge by collaborating with my team and industry mentor. </p>
<a href="trav_con"> Team Travis & Conlyn </a>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Edmond Lee </div>
<div> School: UCM </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
<a href="sun_edm">Team Sunveer & Edmond</a>
</div>
<div class="student-container">
<div>
<img src="static/img/TamNguyen.jpg" />
</div>
<div class="student-name"> Tam Nguyen </div>
<div> School: Orange Coast College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is an environment that resembles a tech internship where I could develop industry skills. </p>
<a href="/nt"> Team N & T </a>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Carlos Santiago Pacheco </div>
<div> School: CSin3 Cohort at CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Gagan Rampur </div>
<div> School: CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Bhumin solanki </div>
<div> School: CSUDH </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Minh Tran </div>
<div> School: CSUSM </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Jorge Marquez </div>
<div> School: CSULB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Edenilson Zetino </div>
<div> School: Bakersfield College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Akhil Kalakota </div>
<div> School: Moorpark College </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Carlos Lopez </div>
<div> School: San Diego State University </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Camille Clendenon </div>
<div> School: CS++ Cohort at CSUMB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Soroush Mahdavi </div>
<div> School: San Diego Mesa college </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Eric Escareno </div>
<div> School: CSUSM </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Aleia Natividad </div>
<div> School: CCSF </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Megan Chung </div>
<div> School: CSULB </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Wilmer Chang </div>
<div> School: CCNY </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>
<div class="student-name"> Kerem Evrenosoglu </div>
<div> School: University of San Francisco </div>
<p> What I'm most looking forward to about the CodeDay Labs internship is ... </p>
<div> Open Source Project: <Wait until Module 5 to answer this> </div>
<div> Team Members: <Wait until Module 5 to answer this> </div>
<div> Team Write-up: <Wait until Module 5 to answer this> </div>
</div>
<div class="student-container">
<div>
<img src="" />
</div>