-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathslp_2024.html
More file actions
1023 lines (910 loc) · 38.8 KB
/
slp_2024.html
File metadata and controls
1023 lines (910 loc) · 38.8 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Semester Long Project</title>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/jpg" href="images/logo.png"/>
<!--[if lte IE 8]>-->
<script src="html5.js" type="text/javascript"></script>
<!--[endif]-->
<!--Google Fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital@0;1&family=Open+Sans&display=swap" rel="stylesheet">
<!--Font Awesome Extension-->
<script src="https://kit.fontawesome.com/fb25db8e8c.js" crossorigin="anonymous"></script>
<!--CSS Extensions-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="css/slp-custom.css">
<!--jQuery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.min.css">
</head>
<body>
<!--------SIDEBAR--------->
<div class="row g-0 col-md-2 d-none d-md-block"> <!--hides sidebar on mobile screen-->
<nav id="sidebar" class="col-md-2">
<!-- Sidebar Header -->
<div id="sidebarHeader">
<span onclick="window.location.href='slp.html'">SLP</span></br>
<div id="tagline">Semester Long Project</div>
</div>
<!-- Sidebar Links -->
<div class="links">
<ul class="list-unstyled components">
<li class="active">
<a href="index.html">
<div class="icon"><div style="margin-top: -2px;"><i class="fab fa-pagelines"></i></div></div>
<button>sheCodes</button>
</a>
</li>
<li>
<div class="icon"><div style="margin-top: -2px;"><i class="fas fa-book"></i></div></div>
<button class="tablinks" onclick="openPage(event, 'about')">About SLP</button>
</li>
<li>
<div class="icon"><div style="margin-left: 2px; margin-top: -2px;"><i class="fas fa-chevron-right"></i></div></div>
<button class="tablinks" onclick="window.location.href='slp_2024.html'">SLP Fall 2024</button>
</li>
<li>
<div class="icon"><div style="margin-left: 2px; margin-top: -2px;"><i class="fas fa-chevron-right"></i></div></div>
<button class="tablinks" onclick="window.location.href='slp_2022.html'">SLP Fall 2022</button>
</li>
<li>
<div class="icon"><div style="margin-left: 2px; margin-top: -2px;"><i class="fas fa-chevron-right"></i></div></div>
<button class="tablinks" onclick="window.location.href='slp_2021.html'">SLP Fall 2021</button>
</li>
<li>
<div class="icon"><div style="margin-left: 2px; margin-top: -2px;"><i class="fas fa-chevron-right"></i></div></div>
<button class="tablinks" onclick="window.location.href='slp_2020.html'">SLP Fall 2020</button>
</li>
<li><!-- Link with dropdown items -->
<a href="#homeSubmenu" data-toggle="collapse" aria-expanded="false">
<div class="icon"><div style="margin-top: -2px;"><i class="fas fa-chevron-down"></i></div></div>
<button class="tablinks" onclick="openPage(event, 'all')">All Projects</button>
</a>
<ul class="list-unstyled groups">
<li><button class="tablinks" onclick="openPage(event, 'group1')">joeBot</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group2')">Letters2U</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group3')">Moodz</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group4')">Lane Detection</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group5')">Artifical Intelligence</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group6')">Echoes of Art</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group7')">Memory Vault</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group8')">Cyber & UI/UX</button></li>
</ul>
</li>
</ul>
</div>
</nav>
</div><!--sidebar-->
<!--------TOPBAR for mobile--------->
<div class="d-none d-sm-block d-sm-none d-md-none d-lg-none d-xl-none">
<nav id="mobileNav">
<a href="#homeSubmenu" data-toggle="collapse" aria-expanded="false">
<div class="mobile-header">
<div class="icon m"><div style="margin-top: 4px;"><i class="fas fa-bars"></i></div></div>
Semester Long Project
</div>
</a>
<ul class="collapse list-unstyled" id="homeSubmenu">
<li><a href="https://www.cpp.edu/~shecodes/">
<div class="icon"><div style="margin-top: -6px;"><i class="fab fa-pagelines"></i></div></div>
<button class="removeBorder">sheCodes</button>
</a></li>
<li>
<li>
<div class="icon"><div style="margin-top: -7px;"><i class="fas fa-book"></i></div></div>
<button class="tablinks removeBorder" onclick="openPage(event, 'about')">About SLP</button>
</li>
<div class="icon"><div style="margin-top: -5px;"><i class="fas fa-chevron-down"></i></div></div>
<button class="tablinks removeBorder" onclick="openPage(event, 'all')">All Projects</button>
</li>
<li>
<div class="icon"><div style="margin-left: 2px; margin-top: -2px;"><i class="fas fa-chevron-right"></i></div></div>
<button class="tablinks" onclick="window.location.href='slp_2024.html'">SLP Fall 2022</button>
</li>
<li>
<div class="icon"><div style="margin-left: 2px; margin-top: -2px;"><i class="fas fa-chevron-right"></i></div></div>
<button class="tablinks" onclick="window.location.href='slp_2022.html'">SLP Fall 2022</button>
</li>
<li>
<div class="icon"><div style="margin-left: 2px; margin-top: -2px;"><i class="fas fa-chevron-right"></i></div></div>
<button class="tablinks" onclick="window.location.href='slp_2021.html'">SLP Fall 2021</button>
</li>
<li>
<div class="icon"><div style="margin-left: 2px; margin-top: -2px;"><i class="fas fa-chevron-right"></i></div></div>
<button class="tablinks" onclick="window.location.href='slp_2020.html'">SLP Fall 2020</button>
</li>
<div class="indent row">
<div class="column col">
<li><button class="tablinks" onclick="openPage(event, 'group1')">joeBot</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group2')">Letters2U</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group3')">Moodz</button></li>
</div>
<div class="column col">
<li><button class="tablinks" onclick="openPage(event, 'group4')">Lane Detection</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group5')">Password Analyzer</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group6')">Echoes of Art</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group7')">Web Portfolio</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group8')">Cybersecurity & UI/UX</button></li> </div>
</div>
</ul>
</nav>
</div>
<!--really roundabout way to show on xs screen-->
<div class="d-block d-sm-none">
<nav id="mobileNav">
<a href="#homeSubmenu" data-toggle="collapse" aria-expanded="false">
<div class="mobile-header">
<div class="icon m"><div style="margin-top: 4px;"><i class="fas fa-bars"></i></div></div>
Semester Long Project
</div>
</a>
<ul class="collapse list-unstyled" id="homeSubmenu">
<li><a href="https://www.cpp.edu/~shecodes/">
<div class="icon"><div style="margin-top: -6px;"><i class="fab fa-pagelines"></i></div></div>
<button class="removeBorder">sheCodes</button>
</a></li>
<li>
<li>
<div class="icon"><div style="margin-top: -7px;"><i class="fas fa-book"></i></div></div>
<button class="tablinks removeBorder" onclick="openPage(event, 'about')">About SLP</button>
</li>
<div class="icon"><div style="margin-top: -5px;"><i class="fas fa-chevron-down"></i></div></div>
<button class="tablinks removeBorder" onclick="openPage(event, 'all')">All Projects</button>
</li>
<li>
<div class="icon"><div style="margin-left: 2px; margin-top: -2px;"><i class="fas fa-chevron-right"></i></div></div>
<button class="tablinks" onclick="window.location.href='slp_2024.html'">SLP Fall 2023</button>
</li>
<li>
<div class="icon"><div style="margin-left: 2px; margin-top: -2px;"><i class="fas fa-chevron-right"></i></div></div>
<button class="tablinks" onclick="window.location.href='slp_2023.html'">SLP Fall 2023</button>
</li>
<li>
<div class="icon"><div style="margin-left: 2px; margin-top: -2px;"><i class="fas fa-chevron-right"></i></div></div>
<button class="tablinks" onclick="window.location.href='slp_2022.html'">SLP Fall 2022</button>
</li>
<li>
<div class="icon"><div style="margin-left: 2px; margin-top: -2px;"><i class="fas fa-chevron-right"></i></div></div>
<button class="tablinks" onclick="window.location.href='slp_2021.html'">SLP Fall 2021</button>
</li>
<li>
<div class="icon"><div style="margin-left: 2px; margin-top: -2px;"><i class="fas fa-chevron-right"></i></div></div>
<button class="tablinks" onclick="window.location.href='slp_2020.html'">SLP Fall 2020</button>
</li>
<div class="indent row">
<div class="column col">
<li><button class="tablinks" onclick="openPage(event, 'group1')">joeBot</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group2')">Letters2U</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group3')">Moodz</button></li>
</div>
<div class="column col">
<li><button class="tablinks" onclick="openPage(event, 'group4')">Lane Detection</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group5')">Password Analyzer</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group6')">Echoes of Art</button></li>
</div>
<div class="column col">
<li><button class="tablinks" onclick="openPage(event, 'group7')">Memory Vault</button></li>
<li><button class="tablinks" onclick="openPage(event, 'group8')">Cybersecurity & UI/UX</button></li>
</div>
</ul>
</nav>
</div>
<!--------CONTENT--------->
<div class="d-none d-sm-block d-md-none d-lg-none d-xl-none" style="width: 100%; height: 75px;"></div> <!--adds space-->
<div class="d-block d-sm-none" style="width: 100%; height: 75px;"></div> <!--adds space-->
<div id="container" class="offset-md-3 col-md-8">
<div id="all" class="tabcontent active">
<div class="row gy-5">
<div class="col col-md-6 col-sm-12 col-12">
<div style="background: url('images/2024/joeBot_cover.jpg') center; background-size: 200%;" class="cell tablinks" onclick="openPage(event, 'group1')">
<div class="projectName">joeBot<br /><span>Intro to Automation/Scripting Team</span></div>
</div>
</div>
<div class="col col-md-6 col-sm-12 col-12">
<div style="background: url(images/2024/letters2u_cover.jpg) center; background-size: 100%;" class="cell tablinks" onclick="openPage(event, 'group2')">
<div class="projectName">Letters2U<br /><span>UI/UX Team</span></div>
</div>
</div>
<div class="col col-md-6 col-sm-12 col-12">
<div style="background: url(images/2024/moodz_cover.jpg) center; background-size: 150%;" class="cell tablinks" onclick="openPage(event, 'group3')">
<div class="projectName">Moodz<br /><span>Full Stack Development Team</span></div>
</div>
</div>
<div class="col col-md-6 col-sm-12 col-12">
<div style="background: url(images/2024/lanedetection_cover.jpg) center; background-size: 100%;" class="cell tablinks" onclick="openPage(event, 'group4')">
<div class="projectName">Lane Detection<br /><span>Artificial Intelligence Team</span></div>
</div>
</div>
<div class="col col-md-6 col-sm-12 col-12">
<div style="background: url(images/2024/passwordanalyzer_cover.jpg) center; background-size: 150%" class="cell tablinks" onclick="openPage(event, 'group5')">
<div class="projectName">Password Analyzer<br /><span> Cybersecurity Team</span></div>
</div>
</div>
<div class="col col-md-6 col-sm-12 col-12">
<div style="background: url(images/2024/echoesofart_cover.jpg) center; background-size: 150%" class="cell tablinks" onclick="openPage(event, 'group6')">
<div class="projectName">Echoes of Art<br /><span>Web Development Team</span></div>
</div>
</div>
<div class="col col-md-6 col-sm-12 col-12">
<div style="background: url(images/2024/memoryvault_cover.jpg) center; background-size: 150%" class="cell tablinks" onclick="openPage(event, 'group7')">
<div class="projectName">Memory Vault<br /><span>iOS Mobile App Team</span></div>
</div>
</div>
<div class="col col-md-6 col-sm-12 col-12">
<div style="background: url(images/2024/cybersecurityuiuix_cover.jpg) center; background-size: 150%" class="cell tablinks" onclick="openPage(event, 'group8')">
<div class="projectName">Cybersecurity & UI/UX<br /><span> Intro to Coding Team</span></div>
</div>
</div>
</div>
</div>
<div id="about" class="tabcontent">
<div class="projectTitle"><h1>About SLP</h1></div>
<p> Semester-Long Projects (SLP) is a great program to enrich coding skills in a group setting. Participants
are formed into groups of similar interests. Each group is led by a mentor to build a unique coding project.
SLP includes workshops like git, inclusive design, and other topics to aid the project's completion. At the
end of the semester, the groups come together for sheCode's SLP Demo Day to showcase their project!
</p>
<br>
<h5>We congratulate every member and team lead on finishing SLP of 2022!</h5>
<p>
Thank you for your 10 weeks of teamwork and dedication! You have accomplished
these past 10 weeks and should be proud of all the work you have done. We hope that SLP
has encouraged you to explore more about Computer Science and inspires you to continue
pursuing projects outside of class. We hope you had fun and learned a lot!
sheCodes and sheBoard are so proud of you and we can’t wait to see where you will go from here.
<br>
-Laura Siu (she/her) sheCodes Internal Vice President 2022-2023
</p>
<br>
<h4>Judges for SLP 2022</h4>
<ul>
<li><h4>Daisy Tang</h4></li>
<li><h4>Markus Eger</h4></li>
<li><h4>Mohammad Husain</h4></li>
<li><h4>Lan Yang</h4></li>
<li><h4>Yu Sun</h4></li>
</ul>
<p>
We would like to thank you judges for being a SLP Demo Day Judge!
We appreciate you sharing your expertise and guidance with our members.
On behalf of sheCodes, we sincerely thank you for taking the time to help
create a meaningful experience for our SLP participants.
</p>
</div>
<div id="group1" class="tabcontent">
<div class="projectTitle"><h1>joeBot<br /><span>Intro to Automation/Scripting Team</span></h1></div>
<h2>Team Introduction</h2>
<ul>
<li><h4>Athalia Zhou</h4></li>
<li>Damian Varela</li>
<li> Annabel Wen</li>
<li>Hiyab Gebreegziabher</li>
<li>Hyewon Kang</li>
<li>Areesha Imtiaz</li>
</ul>
<h2>About the Project</h2>
<img src="images/2024/joeBot.jpg" alt="shelearns pic" width="800" height="450" style="background-size: contain;">
<br><br>
<p><a href="https://drive.google.com/file/d/1fHeT4rCErhC3_B0Sjj6LloBgtcapGutz/view?usp=sharing " target="_blank">Video Demo</a> </p>
<p><a href="https://github.com/zhouAthalia/discordBot" target="_blank">Github</a></p>
sheCodes Discord Bot to have more control over it and can make it more consistent! Bot features included
welcome message, a tic tac toe game, an economy game, anime GIFs, wanted posters, and a Tetris game!
<br>
<br>
Roles/Responsibilities:<br>
<br>Lead <br>
<ul>
<li>Athalia: Welcome message</li>
</ul>
Members<br>
<ul>
<li>Damian: Tic tac toe game</li>
<li>Annabel: Economy game</li>
<li>Hiyab: Anime GIFs</li>
<li>Hyewon: Wanted posters</li>
<li>Areesha: Tetris game</li>
</ul>
<br>
<h2>Tools</h2>
<ul>
<li>Python</li>
<li>Discord</li>
<li>VS Code</li>
<li>Git/Github</li>
</ul>
<h2>Challenges</h2>
<ul>
<li>Using Python</li>
<li>Compatibility issues with MacOS</li>
<li>Discord Token Security </li>
</ul>
<h2>What Was Learned</h2>
<ul>
<li>Gained experience working with Python and Discord Bots</li>
<li>Gained insight into working with Discord as a platform</li>
</ul>
<h2>Given More Time...</h2>
<ul>
<li>Expand features on the bot</li>
<li>Increase the speed of the Tetris game</li>
<li>Grow economy game’s features </li>
<li>Looking for a hosting platform</li>
<li>Combining files</li>
<li>Possible art contest </li>
</ul>
</div>
<div id="group2" class="tabcontent">
<div class="projectTitle"><h1>Letters2U<br /><span>UI/UX Team</span></h1></div>
<h2>Team Introduction</h2>
<ul>
<li><h4>Kenia Velasco</h4></li>
<li>Aiah Valera</li>
<li>Sarah Abdeen</li>
<li>Ally Nguyen</li>
<li>Michelle Paino</li>
<li>Zelda Perez</li>
<li>Amanda Huang</li>
</ul>
<h2>About the Project</h2>
<img src="images/2024/letters2u.jpg" width="800" height="450" style="background-size: contain;">
<br><br>
<p><a href="https://drive.google.com/file/d/1RG2yxKu4KkP6qU-Pkn9AG_5r9kgEltwm/view?usp=sharing" target="_blank">Video Demo Desktop App</a> </p>
<p><a href="https://drive.google.com/file/d/1pQUhh3ZegYt7zFIiNa0iXi3mnaaUo5Fp/view?usp=sharing" target="_blank">Video Demo Mobile App</a> </p>
<p><a href="https://www.figma.com/design/3c8IElXYLvL8tfqlW1nElO/Website-Wireframe?node-id=0-1 " target="_blank">Figma Desktop App</a></p>
<p><a href="https://www.figma.com/design/jOdUh8zi8bcWdorWEzheyA/Letters2U?node-id=0-1&p=f" target="_blank">Figma Mobile App</a></p>
An application that allows users to share mindful letters with others! Letters2U aims to create a less overwhelming experience that prioritizes written content between users.
<br>
<br>
Roles/Responsibilities:<br></p>
Lead:
<li>Kenia (Mobile App Team)</li>
</p>
Members:
<li>Mobile App Team: Michelle, Sarah, Ally</li>
<li>Desktop App Team: Aiah, Zelda, Amanda</li>
<br>
<h2>Tools</h2>
<ul>
<li>Figma</li>
<li>Discord</li>
<li>Zoom</li>
<li>Google Docs</li>
<li>Procreate</li>
</ul>
<h2>Challenges</h2>
<ul>
<li>Consistency through both projects</li>
<li>Nailing down specific design choices and clarity on why we were making them</li>
<li>Keeping accessibility in mind for future implementations</li>
</ul>
<h2>What Was Learned</h2>
<ul>
<li>UI/UX Frameworks</li>
<li>Working in a Team</li>
<li>Figma Prototyping</li>
</ul>
<h2>Given More Time...</h2>
<ul>
<li>Polish up certain features and more research on UI/UX</li>
<li>Code a low-fidelity with functionality </li>
</ul>
</div>
<div id="group3" class="tabcontent">
<div class="projectTitle"><h1>Moodz<br /><span>Full Stack Development Team</span></h1></div>
<h2>Team Introduction</h2>
<ul>
<li><h4>Erika Ledesma</h4></li>
<li><h4>Mohraiel Matta</h4></li>
<li>Amber Ellis</li>
<li>Katie Pham</li>
<li>Justin Ha</li>
<li>Louisa (Janet) Auwlia</li>
<li>Melody Duong</li>
<li>Scott Lee</li>
<li>Denise Thuong</li>
<li>Sarah To</li>
</ul>
<h2>About the Project</h2>
<br><br>
<p><a href="https://moodz-c88e6d62bced.herokuapp.com/login " target="_blank">Video Demo</a> </p>
<p><a href="https://github.com/Full-Stack-sheCodes-24" target="_blank">GitHub Link</a></p>
Moodz combines music and journaling to create a meaningful way of reflecting on emotions over time.
<br>
<br>
Roles/Responsibilities:<br></p>
Lead:
<ul>
<li>Erika: Worked with Spotify API to grab preview URL and used an HTML audio tag to play the preview; Refactored song search bar; Animated icon when audio is played and paused</li>
<li>Mo: Code Review, Project Management, Styling, Displaying preview audio for entries, Creating entry modal</li>
</ul>
</p>
Members:
<ul>
<li>Melody: Spotify authentication; logout/delete entry functions, logout pop-up</li>
<li>Scott: Initial backend project setup; JWT authentication; Optimized song search bar; Backend API endpoints for entries; Confirmation dialog when deleting entries; Spotify API authentication</li>
<li>Katie: Design styling; Project Management; Styling; Authentication Page, Entry Formatting</li>
<li>Janet: Logo design; Display artist in the preview; Refactored search results; Navigation Bar; About Us Page</li>
<li>Sarah: Calendar; Editing profile; Background image; Spotify user access token swapping for API calls</li>
<li>Denise: Post button functionality and for post entries to show up on frontend</li>
<li>Amber: Post API endpoint for user authentication; Created a custom font and reformatted entries; Post button functionality</li>
<li>Justin: Set up frontend and backend architecture, Set up OAuth flow using JWT tokens for frontend and backend communication, Used MongoDB aggregation pipelines to build personalized social media feed and search results for adding other users as friends, Used Docker to deploy app to a service such as Heroku</li>
</ul>
<br>
<h2>Tools</h2>
<ul>
<li>Frontend: Vue.js, Figma, Canva</li>
<li>Backend: ASP.NET (C#), MongoDB</li>
<li>Agile Development: GitHub, Azure DevOps, Discord</li>
</ul>
<h2>Challenges</h2>
<ul>
<li>Running our backend API on Mac</li>
<li>Understanding the tech stack flow with Spotify API</li>
</ul>
<h2>What Was Learned</h2>
<ul>
<li>Agile Development</li>
<li>Azure DevOps</li>
<li>First time using Spotify web API for most of us</li>
</ul>
<h2>Given More Time...</h2>
<ul>
<li>Notification functionality to include friend requests</li>
<ul>
<li>Ability to add or reject requests from navbar notif button</li>
</ul>
<li>Deployment</li>
<ul>
<li>We already deployed our full stack project but we haven’t deployed our Spotify dev app so it only allows our members on the Spotify dev app to login</li>
</ul>
<li>Personalization</li>
<ul>
<li>Uploading their own wallpaper to make it their safe space journal!</li>
<li>Uploading images in an entry to enhance the user’s experience with the app :D/li>
<li>Editing an entry</li>
</ul>
</ul>
</div>
<div id="group4" class="tabcontent">
<div class="projectTitle"><h1>Lane Detection<br /><span> Artificial Intelligence Team/span></h1></div>
<h2>Team Introduction</h2>
<ul>
<li><h4>Hasti Abbasi</h4></li>
<li><h4>Isabelle Guevara</h4></li>
<li>Kripa Sigdel</li>
<li>Sonia Pandey</li>
<li>Vanisa Suadprathon</li>
<li>Amelie Carillo</li>
<li>Arriana Flores</li>
<li>Lacey Nguyen</li>
</ul>
<h2>About the Project</h2>
<img src="images/2024/lanedetection.jpg" width="800" height="450" style="background-size: contain;">
<br><br>
<p><a href="https://drive.google.com/file/d/1nbE9Pp3-by-zwUU9CFV73VPrTh8HGi3F/view?usp=sharing" target="_blank">Video Demo</a> </p>
<p><a href="https://github.com/IsabelleGueva/AI-Lane-Detection" target="_blank">Github Link</a></p>
Computer vision algorithm to detect lane line markings on the roads
<br>
<br>
Roles/Responsibilities:<br></p>
Lead:
<li>Hasti: Backend Dev, Image Combination</li>
<li>Isabelle: Hough Transform Coordination</li>
</p>
Members:
<li>Kripa: Region of Interest Function, Figma Prototype</li>
<li>Sonia: Image/Video Preprocessing, Gaussian Blur, Figma Prototype</li>
<li>Vanisa: Greyscale Conversion, Edge Detection</li>
<li>Amelie: Greyscale Conversion, Edge Detection</li>
<li>Arriana: Figma Prototype</li>
<li>Lacey: Backend Dev</li>
<br>
<h2>Tools</h2>
<ul>
<li>Python</li>
<li>Figma</li>
<li>VS Code</li>
<li>Github</li>
</ul>
<h2>Challenges</h2>
<ul>
<li>Difficulty coordinating the Figma interface with the Python/OpenCV backend due to lack of time and experience with integration</li>
<li>Insufficient time to test the program on various/ambiguous road conditions, such as faded markings, nighttime lighting, or construction zones</li>
<li>Managing contributions from multiple team members while ensuring consistent code quality and sticking to a unified version</li>
<li>Adapting to Python, OpenCV, GitHub, and Figma, which were new to some team members, led to slower progress initially</li>
<li>Balancing project work with other academic and club responsibilities limited the depth of implementation and testing</li>
<li>Ensuring everyone was comfortable with GitHub (e.g., pull requests and branch management) required additional effort</li>
</ul>
<h2>What Was Learned</h2>
<ul>
<li>Project planning and time management</li>
<li>Learned technologies and methods of communication to complete the project
<ul>
<li>Python</li>
<li>OpenCV library</li>
<li>Figma</li>
<li>GitHub functions and best practices
<ul>
<li>Coding as a team</li>
<li>Collaborative efforts</li>
</ul>
</li>
</ul>
</li>
</ul>
<h2>Given More Time...</h2>
<ul>
<li>Integrated Frontend and Backend: Connect the Figma interface with the backend to create a functional web or mobile app</li>
<li>User Experience Enhancements: Add smoother transitions / clear instructions / better design for a more intuitive interface</li>
<li>Expanded Testing: Test on diverse datasets, including rural roads, urban intersections, and challenging conditions like rain or low lighting</li>
<li>Improved Algorithm: Enhance lane detection to handle ambiguous scenarios such as faded markings and construction zones</li>
<li>Performance Optimization: Reduce processing time for videos and improve efficiency for larger files</li>
<li>Real-World Applications: Explore live camera feed processing for potential real-time lane detection use cases</li>
</ul>
</div>
<div id="group5" class="tabcontent">
<div class="projectTitle"><h1>Password Analyzer<br /><span>Cybersecurity Team</span></h1></div>
<a href="https://www.freepik.com/free-photo/ai-technology-brain-background-digital-transformation-concept_17122619.htm#query=Artificial%20Intelligence&position=0&from_view=search&track=sph">Cover image by Rawpixel.com</a> on Freepik
<br><br>
<h2>Team Introduction</h2>
<ul>
<li><h4>Medha Swarnachandrabalaji</h4></li>
<li>Josephine Villar</li>
<li>Valeria Urzua</li>
<li>Sara Downing</li>
<li>Ashley Mapes</li>
<li>Mandy Ly</li>
</ul>
<h2>About the Project</h2>
<img src="images/2024/passwordanalyzer.jpg" width="800" height="450" style="background-size: contain;">
<br><br>
<p><a href="https://youtu.be/VJIERZDIl6s" target="_blank">Video Demo</a> </p>
<p><a href="https://github.com/MedhaS1/Cyber-SLP-2024" target="_blank">Github Link</a></p>
Analyze a user’s password based on criteria and give them a report of the strength of their password and/or a better password if their password isn’t strong
<br>
<br>
Roles/Responsibilities:<br></p>
Lead:
<ul>
<li>Medha: project management, putting code together, code that checks if password is common and tells user if it is</li>
</ul>
</p>
Members:
<ul>
<li>Josie: code to see if the password has any special characters</li>
<li>Valeria: code to see if the password has 12+ characters and at least one capital letter</li>
<li>Sara: code to see if password has at least one lowercase letter and at least one number</li>
<li>Ashley: code to make a strong password and encrypt the inputted password</li>
<li>Mandy: code to ask the users questions about their password and check if the user uses two or more of the same characters in a row, flask implementation, putting the code together</li>
</ul>
<br>
<h2>Tools</h2>
<ul>
<li>Python</li>
<li>VS Code</li>
<li>Github</li>
<li>Git</li>
<li>Github Desktop</li>
<li>Flask/Jinja</li>
</ul>
<h2>Challenges</h2>
<ul>
<li>Learning Python with no experience beforehand</li>
<li>Downloading Git on MacOS</li>
<li>Handling edge cases</li>
<li>Learning about new libraries</li>
<li>Working through bugs</li>
</ul>
<h2>What Was Learned</h2>
<ul>
<li>Learned Python and other tools within the project (e.g. GitHub/Git)</li>
<li>Learned how to analyze and identify password weaknesses</li>
<li>Gained insight into creating user-friendly password analysis</li>
<li>Enhance understanding of cybersecurity fundamentals, such as password strength metrics and user data security </li>
</ul>
<h2>Given More Time...</h2>
<ul>
<li>Add more layers of security to the encryption and decryption using a public key encryption instead of symmetric </li>
<li>Add a scoring system of the user’s password (ex. weak, moderate, strong)</li>
<li>Given feedback as users type in the password</li>
<li>Add code to support multiple human languages so larger audience could use the tool</li>
</ul>
</div>
<div id="group6" class="tabcontent">
<div class="projectTitle"><h1>Echoes of Art<br /><span>Web Development Team</span></h1></div>
<h2>Team Introduction</h2>
<ul>
<li><h4>Julia Chaidez</h4></li>
<li><h4>Michelle Solares</h4></li>
<li>Roshan Karimi</li>
<li>Mayela Ancheta</li>
<li>Katelyn Mijares</li>
<li>Melissa Gio </li>
</ul>
<h2>About the Project</h2>
<img src="images/2024/echoesofart.jpg" width="800" height="450" style="background-size: contain;">
<br><br>
<p><a href="https://youtu.be/UGxQvNVa5OE?si=0Li5zs4dI85vVLFX" target="_blank">Video Demo</a> </p>
<p><a href="https://github.com/juliachaidez3/WEBDEV_SLP2024" target="_blank">Github Link</a></p>
The website is to showcase art pieces. It lets users explore and learn about different artworks, art movements, and artists. The goal is to make art exciting and accessible, not to sell or advertise art but to provide a beautiful and educational experience for visitors.
<br>
<br>
Roles/Responsibilities:<br></p>
Leads:</p>
Julia:
<li>Project coordination, decision-making, and overall direction</li>
Members: </p>
<li>Javascript and Interactivity: Michelle and Melissa
<ul>
<li>Responsible for coding interactive features and user interactions</li>
</ul>
</li>
<li>Styling and Layout: Roshan and Mayela
<ul>
<li>Focused on visual design, ensuring user interface is aesthetically pleasing and functional</li>
</ul>
</li>
<li>Accessibility and Testing: Katelyn
<ul>
<li>Ensured the site was accessible and tested for usability </li>
</ul>
</li>
<br>
<h2>Tools</h2>
<ul>
<li>Figma</li>
<li>HTML/CSS/JavaScript</li>
<li>Github</li>
<li>Jest</li>
</ul>
<h2>Challenges</h2>
<ul>
<li>Translating Figma designs to responsive code</li>
<li>Balancing aesthetics with functionality </li>
</ul>
<h2>What Was Learned</h2>
<ul>
<li>Gained hands-on experience with JavaScript to enhance user interactivity </li>
<li>Seeing the static Figma designs come alive as functional, interactive web pages</li>
<li>Feel more confident to translate designs into responsive, interactive web pages</li>
<li>Working with teammates improved problem-solving, communication, and technical skills</li>
</ul>
<h2>Given More Time...</h2>
<ul>
<li>Search/Sort</li>
<li>Like Button</li>
<li>Sign Up</li>
</ul>
</div>
<div id="group7" class="tabcontent">
<div class="projectTitle"><h1>Memory Vault<br /><span>iOS Mobile App Team</span></h1></div>
<h2>Team Introduction</h2>
<ul>
<li><h4>Alison Ching</h4></li>
<li>Caitlyn Hue</li>
<li>Heather Trombley</li>
<li>Sarah Acosta</li>
<li>Cynthia Nguyen</li>
<li>Elsa Zheng</li>
<li>Meredith Toledo</li>
</ul>
<h2>About the Project</h2>
<img src="images/2024/memoryvault.jpg" width="800" height="450" style="background-size: contain;">
<br><br>
<p><a href="https://drive.google.com/file/d/1d9bHpwRkyr66LwT4AuQyLCNKNTuJ46-L/view?usp=sharing" target="_blank">Video Demo</a> </p>
<p><a href="https://github.com/alisoneching/MemoryVault.git" target="_blank">Github Link</a></p>
Capture and share memories through time capsules! The app allows you to customize with photos, videos, text, etc, notifications when capsules are ready to open, and allows you to share and collaborate with friends.
<br>
<br>
Roles/Responsibilities:<br></p>
Lead:</p>
Backend: Alison
<ul></ul>
<li>Prototyping, App Functions, Basic Screens</li>
</ul>
</p>
Members:</p>
Frontend: Caitlyn, Heather, Sarah
<li>Caitlyn: App Prototype, Wireframe, Slides</li>
<li>Heather: App Prototype, Wireframe, Concepts and theme</li>
<li>Sarah: App Prototype, Wireframe, Icons</li>
Backend: Cynthia, Elsa, Meredith
<li>Cynthia: Wireframing, Implementing app UI</li>
<li>Elsa: Prototyping, App Functions, More Screens</li>
<li>Meredith: Prototyping, Wireframing, Verifying functionality </li>
<br>
<h2>Tools</h2>
<ul>
<li>Figma</li>
<li>XCode</li>
<li>Swift UI</li>
<li>Github</li>
<li>Discord</li>
<li>Google Docs</li>
</ul>
<h2>Challenges</h2>
<ul>
<li>Machine Issues
<ul>
<li>Many members did not own a MacBook to run Swift UI and Xcode and had a difficult time using a virtual machine.</li>
</ul>
</li>
<li>Time Constraints
<ul>
<li>Due to scheduling conflicts and countless features we wanted to add, we did not have enough time to collaborate and implement everything in mind.</li>
</ul>
</li>
<li>Experience with Firebase
<ul>
<li>Most of the team did not have experience with Firebase, making it a learning process to use and difficult to connect the database to the app. </li>
</ul>
</li>
</ul>
<h2>What Was Learned</h2>
<ul>
<li>Gained more experience in the frontend and backend aspects of app development, including working with Xcode and Swift UI</li>
<li>Interested in pursuing Cloud storage for pictures and videos</li>
</ul>
<h2>Given More Time...</h2>
<ul>
<li>Perfect project and implement Firebase</li>
</ul>
</div>
<div id="group8" class="tabcontent">
<div class="projectTitle"><h1>Cybersecurity & UI/UX<br /><span>Intro To Coding Team</span></h1></div>
<a href="https://www.freepik.com/free-vector/data-extraction-concept-illustration_12079896.htm#query=machine%20learning&position=21&from_view=search&track=sph">Cover image by storyset</a> on Freepik
<br><br>
<h2>Team Introduction</h2>
<ul>
<li><h4>Alison Fung</h4></li>
<li><h4>Lesly Ibarra</h4></li>
<li>Caoilainn Johnsson (CJ)</li>
<li>Janice Lachan</li>
<li>Marianne Goce</li>
<li>Tina Arezoomanians</li>
<li>Elijah Harnanto</li>
<li>Sayumi Amarasinghe</li>
<li>Sarah Huynh</li>
</ul>
<h2>About the Project</h2>
<img src="images/2024/cybersecurity.jpg" width="500" height="450" style="background-size: contain;">
<img src="images/2024/uiux.jpg" width="300" height="300" style="background-size: contain;">
<br><br>
<p><a href="https://youtu.be/T4udxlBBRt4" target="_blank">Cybersecurity Video Demo</a> </p>
<p><a href="https://youtu.be/PUAG-kmxxlY" target="_blank">UI/UX Video Demo</a> </p>
<p><a href="https://github.com/alisonfung/post-it-board" target="_blank">Cybersecurity GitHub Link</a></p>
<p><a href="https://github.com/leslydibarra/IntroToCoding_Cybersecurity/branches" target="_blank">UI/UX GitHub Link</a></p>
Split into two mini-teams with focused topics depending on member’s interests: Cybersecurity & UI/UX!
Cybersecurity: Personalized Password Manager
UI/UX: Virtual post-it board for users to keep track of important due dates and events
<br>
<br>
Roles/Responsibilities:<br></p>
Leads:
<li>Alison (UI/UX Team)</li>
<li>Lesly (Cybersecurity Team)</li>
</p>
Members:
<li>Cybersecurity Team: CJ, Janice, Marianne</li>
<li>UI/UX Team
<ul>
<li>Design Team: Sarah, Elijah</li>
<li>Coding Team: Tina, Sayumi</li>
</ul>
</li>
<br>
<h2>Tools</h2>
<ul>
<li>Cybersecurity
<ul>
<li>Python</li>
<li>Vs Code</li>
<li>Wireshark</li>
<li>Github</li>
<li>Code Academy</li>
</ul>
</li>
<li>UI/UX
<ul>
<li>Figma</li>
<li>Github</li>
<li>Discord</li>
<li>HTML/CSS/JavaScript</li>
</ul>
</li>
</ul>
<h2>Challenges</h2>
<ul>
<li>Cybersecurity
<ul>
<li>Limited time to add more features</li>
</ul>
</li>
<li>UI/UX
<ul>
<li>Design Team: Toolbar, Overlay-prototyping; Learning and navigating Figma</li>
<li>Coding Team: Creating an overlay and implementing its functionality to add, save, and edit post-its (referencing tutorials, event handlers); Formatting post-it layout across the page using Flexbox</li>
</ul>
</li>
</ul>
<h2>What Was Learned</h2>
<ul>
<li>Cybersecurity
<ul>
<li>Learned how to successfully create own Personal Password Manager</li>
<li>Basics of Python, RSA key encryption, and WireShark before applying to the project</li>
</ul>
</li>
<li>UI/UX
<ul>
<li>User-friendly/interactive design </li>
<li>Learning design in Figma</li>
<li>Cross-communication between design and programming teams & how to split up tasks</li>
<li>Website programming and enjoying working in a group</li>
</ul>
</li>
</ul>
<h2>Given More Time...</h2>
<ul>
<li>Cybersecurity
<ul>
<li>Future implementation of more features within each personal password manager </li>
</ul>
</li>
<li>UI/UX
<ul>
<li>Calendar view with reminder due dates</li>
<li>Store a user’s post-its in cookies or implement some sort of login method so that they could return to their previous post-its</li>
</ul>
</li>
</ul>
</div>
</div> <!--content-->
</div> <!--bootstrap-->
<!--CREDIT-->
<div id="creditDesktop" class="d-none d-md-block">
<div id="anchor">
<div style="margin-top: -3px;"><i class="fas fa-anchor"></i></div>
</div>
<div id="4thMonth">
<div style="font-size: 10pt; padding-top: 10px;">Coded with care by Mohraiel</div>
</div>
</div>
<div id="creditMobile" class="d-none d-sm-block d-sm-none d-md-none d-lg-none d-xl-none">
� 2023 <a href="https://www.cpp.edu/~shecodes/">sheCodes</a>
<br />
<small>Coded with SLAY by Mohraiel</small>
</div>
<div id="creditMobile" class="d-block d-sm-none">
� 2023 <a href="https://www.cpp.edu/~shecodes/">sheCodes</a>
<br />
<small>Coded with SLAY by Mohraiel</small>
</div>
</body>
<!--Javascript-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>