-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1158 lines (1055 loc) · 86.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Hello, I'm Neeco! Learn about me and what I do.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Neeco Fabian</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/png" href="favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon-180.png">
<script src="script.js" defer></script>
<script src="https://code.jquery.com/jquery-3.0.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/ScrollTrigger.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/MotionPathPlugin.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.7.0/CSSRulePlugin.min.js"></script>
</head>
<body>
<!--Home-->
<header class="home" id="home">
<h1>Hello, I'm</h1><div class="bigger">neeco</div>
<div class="arrow bounce"></div>
</header>
<a class="logo-link" href="#home">
<img class="logo-link-image" src="images/personal-website-logo.svg">
</a>
<!--Develop Section-->
<section class="develop" id="develop">
<div class="section-title">
<div class="section-title-inner-wrapper">
<button class="ima" tabindex=-1><h2>I </h2></button>
<div class="dropdown">
<button class="dropdown-button"><h2 id="section-title-text-develop">develop<div class="triangle">▼</div></h2></button>
<ul class="dropdown-items">
<!-- <li class="dropdown-item dropdown-item-develop"><a class="dropdown-link" href="#develop"><h2 class="dropdown-link-text dropdown-link-develop">develop</h2></a></li> -->
<li class="dropdown-item dropdown-item-design"><a class="dropdown-link" href="#design"><h2 class="dropdown-link-text dropdown-link-design">design</h2></a></li>
<li class="dropdown-item dropdown-item-study"><a class="dropdown-link" href="#study"><h2 class="dropdown-link-text dropdown-link-study">study</h2></a></li>
<li class="dropdown-item dropdown-item-work"><a class="dropdown-link" href="#work"><h2 class="dropdown-link-text dropdown-link-work">work</h2></a></li>
<li class="dropdown-item dropdown-item-reply"><a class="dropdown-link" href="#reply"><h2 class="dropdown-link-text dropdown-link-reply">reply</h2></a></li>
</ul>
</div>
</div>
</div>
<!--Programming Projects-->
<h3>Here are some of my programming projects.</h3>
<div class="projects">
<div class="project" id="articulat3">
<div class="project-banner">articulat3 articulat3</div>
<div class="project-content" id="articulat3">
<span class="project-title"><span id="articulat3-title-1">articulat</span><span id="articulat3-title-2">3</span></span>
<p>A service for generating 3D objects from text prompts.</p>
<ul class="project-description">
<li>Deployed a web app to easily create and export custom object files.</li>
<li>Created a gallery for users to browse, search, and share creations.</li>
<li>Developed in an Agile team: code reviews, story refinement, project management.</li>
<li>Submitted 5 deliverables: development plans, code releases, reports, presentations.</li>
<li class="li-break">In collaboration with <a class="text-link" href="https://tisl.cs.toronto.edu" target="_blank">TISL</a>. Based on <a class="text-link" href="https://github.com/threestudio-project/threestudio" target="_blank">threestudio</a> framework.</li>
<li>Made with <b>React</b>, <b>TypeScript</b>, <b>shadcn/ui</b>, <b>Tailwind CSS</b></li>
</ul>
</div>
<div>
<a class="project-button" id="articulat3-button" href="https://github.com/neecofabian/articulat3" target="_blank">Repo</a>
</div>
<img class="project-logo" id="articulat3-logo" src="images/project-logos/articulat3-logo.png" alt="articulat3 logo">
</div>
<div class="project" id="help-wanted">
<div class="project-banner">HelpWanted HelpWanted</div>
<div class="project-content" id="help-wanted">
<span class="project-title"><span id="help-wanted-title">HelpWanted.js</span></span>
<p>A frontend JavaScript library for generating website tours and tutorials.</p>
<ul class="project-description">
<li>Developers can construct a series of modals viewed in:
<ul>
<li><b>Guided Mode</b> - Users navigate through a sequence of dialogs pinned to HTML elements.</li>
<li><b>Discovery Mode</b> - Users hover on highlighted elements to view pop-up annotations.</li>
</ul>
</li>
<li>An exercise in DOM manipulation.</li>
<li>Deployed a Heroku website to show API details, usage examples, and demos.</li>
<li class="li-break">Wrote reports detailing the product proposal and alpha release.</li>
<li>Made with <b>HTML</b>, <b>CSS</b>, <b>Javascript</b></li>
</ul>
</div>
<div>
<a class="project-button help-wanted-button" href="https://github.com/neecofabian/help-wanted" target="_blank">Repo</a>
<a class="project-button help-wanted-button" href="files/HelpWanted_Proposal.pdf" target="_blank">Proposal</a>
<a class="project-button help-wanted-button" href="files/HelpWanted_Alpha.pdf" target="_blank">Alpha Release Report</a>
</div>
<img class="project-logo" id="help-wanted-logo" src="images/project-logos/help-wanted-logo.png" alt="HelpWanted.js logo">
</div>
<div class="project" id="speedrun">
<div class="project-banner">speedrun.com</div>
<div class="project-content" id="speedrun-content">
<span class="project-title"><span id="speedrun-title">speedrun.com Inquiry</span></span>
<p>A data analysis project on <a class="text-link" href="https://www.speedrun.com" target="_blank">speedrun.com</a>’s gaming and user database.</p>
<ul class="project-description">
<li>Wrote Python scripts to fetch JSON data using REST API and clean up .csv files.</li>
<li>Constructed a DDL schema and populated tables with wrangled data.</li>
<li>Performed SQL queries to identify trends and answer research questions:
<ol>
<li>Who are the best of the best?</li>
<li>Are speed runners improving over time?</li>
<li>Do some players have unfair advantages?</li>
</ol>
</li>
<li class="li-break">Aggregated the results into visuals and presented findings.</li>
<li>Made with <b>PostgreSQL</b>, <b>DDL</b>, <b>Python</b></li>
</ul>
</div>
<div>
<a class="project-button speedrun-button" href="https://github.com/neecofabian/speedrun-sql" target="_blank">Repo</a>
<a class="project-button speedrun-button" href="https://www.figma.com/proto/hWciGWcZov8YKT2wabPcAO/Speedrunner-Slides-(Final)?t=1DNO4h5KZimgzscV-1&scaling=contain&content-scaling=fixed&page-id=0%3A1&node-id=5-20" target="_blank">Findings</a>
</div>
<img class="project-logo" id="speedrun-logo" src="images/project-logos/speedrun-logo.png" alt="Speedrun.com logo">
</div>
<div class="project" id="conference-manager">
<div class="project-banner">Conference Manager</div>
<div class="project-content" id="conference-manager-content">
<span class="project-title"><span id="con-man-title-light">Conference </span><span id="con-man-title-dark">Manager</span></span>
<p>A hub for managing large conferences.</p>
<ul class="project-description">
<li>Join as an organizer, attendee, or speaker.</li>
<li>Sign up for events and view a sorted schedule.</li>
<li>Chat and network with attendees, speakers, and organizers.</li>
<li>Get suggestions when creating events, rooms, and amenities.</li>
<li>See conference statistics, receive event reminders.</li>
<li class="li-break">Join the conference Discord server.</li>
<li>Made with <b>Java, Twilio, Discord API</b></li>
</ul>
</div>
<div><a class="project-button" id="conference-manager-button" href="https://github.com/neecofabian/Conference-Manager" target="_blank">Repo</a></div>
<img class="project-logo" id="conference-manager-logo" src="images/project-logos/conference_manager_colour_logo.png" alt="Conference Manager logo">
</div>
<div class="project" id="outhouse">
<div class="project-banner">Outhouse</div>
<div class="project-content" id="outhouse-content">
<span class="project-title"><span id="outhouse-title">Outhouse</span></span>
<p>A crowdsourcing platform to locate, review, and report public restrooms.</p>
<ul class="project-description">
<li>Incorporated Google Maps API for an interactive map.</li>
<li>Developed form flows to let users write reviews, add new restrooms.</li>
<li>Created a dashboard for admin users to perform CRUD operations.</li>
<li>Implemented a RESTful API with Express for the backend.</li>
<li class="li-break">Designed on Figma. Deployed with Heroku.</li>
<li>Made with <b>React</b>, <b>Express</b>, <b>MongoDB</b>, <b>Google Maps API</b></li>
</ul>
</div>
<div><a class="project-button" id="outhouse-button" href="https://github.com/neecofabian/outhouse" target="_blank">Repo</a></div>
<img class="project-logo" id="outhouse-logo" src="images/project-logos/outhouse-logo.png" alt="Outhouse logo">
</div>
<div class="project" id="personal-website">
<div class="project-banner">neecofabian.com </div>
<div class="project-content" id="personal-website-content">
<span class="project-title" id="personal-website-title">neecofabian.com</span>
<p>My personal website. Look around!</p>
<ul class="project-description">
<li>Made with
<ul>
<li>A handful of <b>HTML</b> and <b>CSS</b></li>
<li>A dash of <b>Vanilla-Tilt.js</b></li>
<li>A touch of <b>JQuery</b></li>
<li>A sprinkle of <b>GSAP</b> animations</li>
<li>And a partridge in a pear tree.</li>
</ul>
</li>
<li>A work in progress, like me.</li>
</ul>
</div>
<div><a class="project-button" id="personal-website-button" href="https://github.com/neecofabian/neecofabian.github.io" target="_blank">Repo</a></div>
<img class="project-logo" id="personal-website-logo" src="images/project-logos/personal-website-logo.png" alt="personal website logo">
</div>
<div class="project extra-project" id="centipede">
<div class="project-banner">Centipede</div>
<div class="project-content" id="centipede-content">
<span class="project-title"><span id="centi-title">Centipede</span></span>
<p>A remake of the classic arcade game.</p>
<ul class="project-description">
<li>Hit the centipede to split it into smaller parts.</li>
<li>Shoot mushrooms three times to remove them.</li>
<li>Protect yourself from falling fleas.</li>
<li>Play with a friend as a team of two.</li>
<li class="li-break">Don't get hit or game over!</li>
<li>Made with <b>Assembly Language</b></li>
</ul>
</div>
<div><a class="project-button" id="centipede-button" href="https://youtu.be/XaN0oMwYTmM" target="_blank">Demo</a></div>
<img class="project-logo" id="centipede-logo" src="images/project-logos/centipede_logo.png" alt="Centipede logo">
</div>
<div class="project extra-project" id="bowlo">
<div class="project-banner">Bowlo Bowlo</div>
<div class="project-content" id="Bowlo-content">
<span class="project-title"><span id="bowlo-title">Bowlo</span></span>
<p>A decentralized learning platform for global affairs.</p>
<ul class="project-description">
<li>A vision of unfiltered learning. Currently a proof of concept.</li>
<li>Share lessons about history, politics, and current events.</li>
<li>Read personal stories from people living in oppressed regions.</li>
<li>Built on a decentralized network, ensuring reliability and freedom of speech.</li>
<li class="li-break">A bowl of stories. A bowl of friends.</li>
<li>Made with <b>GunDB, TypeScript, Svelte, Docker</b></li>
<li>Made at <b>Hack the North 2021</b></li>
</ul>
</div>
<div>
<a class="project-button bowlo-button" href="https://github.com/neecofabian/bowlo" target="_blank">Repo</a>
<a class="project-button bowlo-button" href="https://www.youtube.com/watch?v=fJ06niJOJew&ab_channel=NeecoFabian" target="_blank">Demo</a>
</div>
<img class="project-logo" id="bowlo-logo" src="images/project-logos/bowlo_logo.png" alt="Bowlo logo">
</div>
<div class="project extra-project" id="illuminote">
<div class="project-banner">illuminote illuminote </div>
<div class="project-content" id="illuminote-content">
<span class="project-title" id="illuminote-title-blue">illumi</span><span class="project-title" id="illuminote-title-pink">note</span>
<p>A Mixed Reality multiplayer game in the dark.</p>
<ul class="project-description">
<li>Place sticky notes on a TV, projector screen, or monitor.</li>
<li>Scan with your phone to build a custom map.</li>
<li>Teleport and bounce bullets using the sticky notes.</li>
<li>Hide in the dark and find the enemy by firing glowing bullets.</li>
<li class="li-break">Shoot your opponent to win!</li>
<li>Made with <b>Python, OpenCV</b></li>
<li>Made at <b>Hack the North 2020++</b></li>
</ul>
</div>
<div>
<a class="project-button" id="illuminote-button1" href="https://github.com/neecofabian/Illuminote" target="_blank">Repo</a>
<a class="project-button" id="illuminote-button2" href="https://www.youtube.com/watch?v=vV_ab0vMUgk" target="_blank">Demo</a>
</div>
<img class="project-logo" src="images/project-logos/illuminote_glow_logo.png" alt="Illuminote logo">
</div>
<div class="project extra-project" id="senso">
<div class="project-banner">senso senso senso </div>
<div class="project-content" id="senso-content">
<span class="project-title" id="senso-title">senso</span>
<p>An app to fidget and focus.</p>
<ul class="project-description">
<li>Tilt the phone to steer the ball.</li>
<li>Feel the haptic feedback.</li>
<li>Toggle the volume buttons for more vibrations.</li>
<li class="li-break">Calibrate the ball using the screen.</li>
<li>Made with <b>Java, Android Studio</b></li>
<li>Made at <b>Hack the North 2019</b></li>
</ul>
</div>
<div>
<a class="project-button senso-button" href="https://github.com/neecofabian/Senso" target="_blank">Repo</a>
<a class="project-button senso-button" href="https://youtu.be/2Og2lsXKkH4?si=Qhu1DRXilJJOAWuU" target="_blank">Demo</a>
</div>
<img class="project-logo" src="images/project-logos/senso_white_logo.png" alt="Senso logo">
</div>
<div class="project extra-project" id="lax">
<div class="project-banner">LAX LAX LAX LAX LAX </div>
<div class="project-content" id="lax-content">
<span class="project-title" id="lax-title"><span id="lax-title-p">L</span><span id="lax-title-b">A</span><span id="lax-title-g">X</span></span>
<p>A relaxation and productivity centre.</p>
<ul class="project-description">
<li><b>Breathe</b> - follow visual breathing exercises.</li>
<li><b>Release</b> - jot worries and release when ready.</li>
<li><b>Remember</b> - create flash cards.</li>
<li>Secured with password protection.</li>
<li class="li-break">Toggle between light and dark modes.</li>
<li>Made with <b>JavaFX</b></li>
</ul>
</div>
<div><a class="project-button" id="lax-button" href="https://github.com/neecofabian/Lax" target="_blank">Repo</a></div>
<img class="project-logo" id="lax-logo" src="images/project-logos/lax_gradient_logo.png" alt="Lax logo">
</div>
<div class="break"></div>
<button class="page-button develop-button" id="more-projects-btn">Show More</button>
<a class="page-button develop-button" href="https://github.com/neecofabian" target="_blank">GitHub</a>
</div>
<!--Toolbox-->
<div class="toolbox-section">
<h3>Look inside my toolbox.</h3>
<div class="toolbox-container">
<div class="flap"></div>
<div class="tools">
<div class="tool"><span id="tool-java"><span id="java-left">Ja</span><span id="java-right">va</span></span></div>
<div class="tool"><span id="tool-python"><span id="python-left">Pyt</span><span id="python-right">hon</span></span></div>
<div class="tool"><span id="tool-c">C</span></div>
<div class="tool"><span id="tool-c-sharp">C#</span></div>
<div class="tool"><span id="tool-sql">SQL</span></div>
<div class="tool"><span id="tool-asm">Assembly</span></div>
<div class="tool"><span id="tool-bash">Bash</span></div>
<div class="tool"><span id="tool-r">R</span></div>
<div class="tool"><span id="tool-html">HTML</span></div>
<div class="tool"><span id="tool-css">CSS</span></div>
<div class="tool"><span id="tool-js">JavaScript</span></div>
<div class="tool"><span id="tool-ts">TypeScript</span></div>
<div class="tool"><span id="tool-react">React</span></div>
<div class="tool"><span id="tool-vue"><span id="vue-left">Vue</span><span id="vue-right">.js</span></span></div>
<div class="tool"><span id="tool-express">Express</span></div>
<div class="tool"><span id="tool-node"><span id="node-left">Node</span><span id="node-right">.js</span></span></div>
</div>
</div>
</div>
</section>
<!--Design Section-->
<section class="design" id="design">
<div class="section-title">
<div class="section-title-inner-wrapper">
<button class="ima" tabindex=-1><h2>I </h2></button>
<div class="dropdown">
<button class="dropdown-button"><h2 id="section-title-text-design">design<div class="triangle">▼</div></h2></button>
<ul class="dropdown-items">
<li class="dropdown-item dropdown-item-develop"><a class="dropdown-link" href="#develop"><h2 class="dropdown-link-text dropdown-link-develop">develop</h2></a></li>
<!-- <li class="dropdown-item dropdown-item-design"><a class="dropdown-link" href="#design"><h2 class="dropdown-link-text dropdown-link-design">design</h2></a></li> -->
<li class="dropdown-item dropdown-item-study"><a class="dropdown-link" href="#study"><h2 class="dropdown-link-text dropdown-link-study">study</h2></a></li>
<li class="dropdown-item dropdown-item-work"><a class="dropdown-link" href="#work"><h2 class="dropdown-link-text dropdown-link-work">work</h2></a></li>
<li class="dropdown-item dropdown-item-reply"><a class="dropdown-link" href="#reply"><h2 class="dropdown-link-text dropdown-link-reply">reply</h2></a></li>
</ul>
</div>
</div>
</div>
<!--Design Projects-->
<h3>A portfolio of UI/UX projects I designed.</h3>
<div class="projects">
<div class="project" id="bst">
<div class="project-banner">Bike Share Toronto</div>
<div class="project-content" id="bst-content">
<span class="project-title"><span id="bst-title-1">Bike Share Toronto </span><span id="bst-title-2">App</span></span>
<p>A design solution to improve service availability across Toronto.</p>
<ol class="project-description">
<li>Deployed <b>surveys</b> and conducted <b>interviews</b> to identify current issues.</li>
<li>Condensed user research into an <b>experience map</b>.</li>
<li>Designed new mobile app features for: reservations, rewards, bike transfers.</li>
<li>Created paper and Figma <b>prototypes</b>.</li>
<li>Conducted <b>usability tests</b> to evaluate and tweak designs.</li>
<li>Delivered 3 reports and 4 presentations about <b>research findings</b>.</li>
</ol>
<p>Explore project deliverables:</p>
<div>
<a class="project-button bst-button" href="https://www.figma.com/proto/PQZx943olfTUg5oj7auZHu/Bike-Share-Toronto-Experience-Map?type=design&t=aiLspRBp8m0lslys-1&scaling=min-zoom&page-id=0%3A1&node-id=1-2&mode=design" target="_blank">Experience Map</a>
<a class="project-button bst-button" href="https://youtu.be/ZQeuhl9Y9NU" target="_blank">Paper Prototype</a>
<a class="project-button bst-button" href="https://www.figma.com/design/mwhXxed0RhwfHff7WBeeOj/Bike-Share-Toronto-App-Redesign-(Copy)?node-id=0-1&t=5pElu52mDDX0IjE0-1" target="_blank">Figma Designs</a>
<a class="project-button bst-button" href="https://www.figma.com/proto/igqzO3jMo3KmVvSIFfkWEi/Bike-Share-Toronto-App-Redesign?type=design&node-id=3123-5358&t=RzsAFrAvlsvC9CvX-1&scaling=scale-down&page-id=0%3A1&starting-point-node-id=3123%3A5358&mode=design" target="_blank">Figma Prototype</a>
<a class="project-button bst-button" href="https://docs.google.com/presentation/d/1NpLUkon1LvaVoE2Qm1uchQKpXDWmyl7ivNR6VzndRuA/edit?usp=sharing" target="_blank">Final Presentation</a>
</div>
</div>
<img class="project-logo" id="bst-logo" src="images/project-logos/bst-logo.png" alt="Bike Share Toronto logo">
</div>
<div class="project" id="wi-find">
<div class="project-banner">Wi-Find Wi-Find Wi-Find</div>
<div class="project-content" id="wi-find-content">
<span class="project-title" id="wi-find-title">Wi-Find</span>
<p>A research project about digital nomads, leading to a mobile app design. Eases the search for reliable work amenities, such as Wi-Fi, when travelling abroad.</p>
<ol class="project-description">
<li>Conducted <b>background research</b> and <b>surveys</b> on the problem space.</li>
<li>Identified personas, stakeholders, requirements, and key tasks.</li>
<li>Converted findings into paper and Figma <b>prototypes</b>.</li>
<li>Refined designs after tests: <b>cognitive walkthroughs</b>, <b>think alouds</b></li>
<li>Submitted 6 reports, 4 presentations to demo the app and results.</li>
</ol>
<div>
<p>Browse project deliverables:</p>
<a class="project-button" id="wi-find-button" href="https://docs.google.com/forms/d/e/1FAIpQLSeERREg5LoVQKpEe7WEq3cigJbZJFpl3nJHboAn-zBFmAhF6Q/viewform" target="_blank">Survey</a>
<a class="project-button" id="wi-find-button" href="https://drive.google.com/file/d/1TgvKgcgQyefsP9weMuoBYGTkDdPFiDqw/view?usp=sharing" target="_blank">Survey Results</a>
<a class="project-button" id="wi-find-button" href="https://drive.google.com/file/d/1-68eUetZexd7BE3Kk21oKmbgDFMvV0jR/view?usp=sharing" target="_blank">Paper Prototype</a>
<a class="project-button" id="wi-find-button" href="https://www.figma.com/design/Br7ObXdp1X1RmXkyMWHvzA/New-CSC396--Digital-Nomads-Hi-Fi-Prototype-Usability-Testing-(Copy)?node-id=0-1&t=yQkPuCClstX8juy2-1" target="_blank">Figma Designs</a>
<a class="project-button" id="wi-find-button" href="https://www.figma.com/proto/Br7ObXdp1X1RmXkyMWHvzA/New-CSC396--Digital-Nomads-Hi-Fi-Prototype-Usability-Testing-(Copy)?node-id=1-2&p=f&t=ieQCZe2GdfF0tiSx-1&scaling=scale-down&content-scaling=fixed&page-id=0%3A1&starting-point-node-id=1%3A2&show-proto-sidebar=1" target="_blank">Figma Prototype</a>
<a class="project-button" id="wi-find-button" href="https://docs.google.com/presentation/d/19h-SrPFa5yoMkcfVluvPdvByiN09C1A6DmcpJJax0vU/edit?usp=sharing" target="_blank">Final Presenation</a>
</div>
</div>
<img class="project-logo" id="wi-find-logo" src="images/project-logos/wi-find-logo.png" alt="Wi-Find logo">
</div>
<div class="project" id="pixel-135">
<div class="project-banner">135 135 135 135</div>
<div class="project-content" id="pixel-135-content">
<span class="project-title" id="pixel-135-title"><span id="pixel-135-title-pixel">pixel </span><span id="pixel-135-title-1">1</span><span id="pixel-135-title-3">3</span><span id="pixel-135-title-5">5</span></span>
<p>Between May and September 2020, I created <b>400</b> pixel art snippets for fun!</p>
<ul class="project-description">
<li>Each piece is:
<ul>
<li>Shaped as a crest.</ol>
<li>Coloured with the Endesga 64 palette.</ol>
<li>Drawn with at most, 135 pixels.</ol>
</ul>
</li>
<li>Made using <a class="text-link" href="https://apps.apple.com/ca/app/sprite-pencil/id1437835952" target="_blank">Sprite Pencil</a>.</li>
<li>This gallery features all snippets in chronological order.</li>
<li>Watch my creations improve in the 4 months I was stuck indoors.</li>
</ul>
</div>
<div>
<p class="project-button-tag">Every pixel counts.</p>
<a class="project-button" id="pixel-135-button" href="https://www.figma.com/design/2o4fzjBnQzzebHWPms2RM9/Pixel-Art-Archive?node-id=9-204&t=hXT7zn4KvyZ4NBuF-1" target="_blank">Pixel Art Gallery</a>
</div>
<img class="project-logo" id="pixel-135-logo" src="images/project-logos/pixel-135-logo.png" alt="Pixel 135 logo">
</div>
<div class="project" id="misc">
<div class="project-banner">misc. misc. misc.</div>
<div class="project-content" id="misc-content">
<span class="project-title" id="misc-title">misc.</span>
<p>A collection of <b>miscellaneous</b> visual works from multiple projects.</p>
<ol class="project-description">
<li>A screenshots archive of frontend designs I implemented.</li>
<li>Logos, icons, and graphics designed for this website.</li>
<li>A sample of early mockups done at the start of a project.</li>
<li>A custom slide deck created for a data inquiry project.</li>
</ol>
</div>
<div>
<p class="project-button-tag">Look around:</p>
<a class="project-button misc-button" href="https://www.figma.com/design/N7J8TK4VDqvIuiwuZ5Zrkr/UI-Screenshot-Archive?node-id=0-1&t=T33GbscaQkRvhRso-1" target="_blank">1. UI Screenshots Archive</a>
<a class="project-button misc-button" href="https://www.figma.com/design/EjRSAEHEvTOFTpOSu8rI2D/Website-Assets?node-id=0-1&t=jhQGyRnVfCDxCLeq-1" target="_blank">2. Website Assets</a>
<a class="project-button misc-button" href="https://www.figma.com/design/uGWbkawJemlcHLzq7tXtLW/Articulate-(Design-Process)?t=fkctr2ajVthHwCro-1" target="_blank">3. Low-Fi Design Process</a>
<a class="project-button misc-button" href="https://www.figma.com/proto/hWciGWcZov8YKT2wabPcAO/Speedrunner-Slides-(Final)?t=1DNO4h5KZimgzscV-1&scaling=contain&content-scaling=fixed&page-id=0%3A1&node-id=5-20" target="_blank">4. Inquiry Slides</a>
</div>
<img class="project-logo" id="misc-logo" src="images/project-logos/misc-logo.png" alt="misc. logo">
</div>
<div class="break"></div>
</div>
</section>
<!--Study Section-->
<section class="study" id="study">
<div class="section-title">
<div class="section-title-inner-wrapper">
<button class="ima" tabindex=-1><h2>I </h2></button>
<div class="dropdown">
<button class="dropdown-button"><h2 id="section-title-text-study">study<div class="triangle">▼</div></h2></button>
<ul class="dropdown-items">
<li class="dropdown-item dropdown-item-develop"><a class="dropdown-link" href="#develop"><h2 class="dropdown-link-text dropdown-link-develop">develop</h2></a></li>
<li class="dropdown-item dropdown-item-design"><a class="dropdown-link" href="#design"><h2 class="dropdown-link-text dropdown-link-design">design</h2></a></li>
<!-- <li class="dropdown-item dropdown-item-study"><a class="dropdown-link" href="#study"><h2 class="dropdown-link-text dropdown-link-study">study</h2></a></li> -->
<li class="dropdown-item dropdown-item-work"><a class="dropdown-link" href="#work"><h2 class="dropdown-link-text dropdown-link-work">work</h2></a></li>
<li class="dropdown-item dropdown-item-reply"><a class="dropdown-link" href="#reply"><h2 class="dropdown-link-text dropdown-link-reply">reply</h2></a></li>
</ul>
</div>
</div>
</div>
<div class="uoft-container">
<div class="specialist-at-uoft">
<div class="specialist"><b>Computer Science</b> Specialist @</div>
<div class="uoft">University of Toronto</div>
</div>
</div>
<h3>
<span class="translucent">Some courses I completed during my undergraduate degree.</span>
</h3>
<!--Courses-->
<div class="courses">
<div class="course-wrapper">
<div class="course" id="csc485">
<div class="course-title">CSC<br>485</div>
<image class="course-icon" src="images/course-icons/bubbles.svg" alt="CSC485 bubbles"></image>
<div class="course-content">
<span class="inner-course-title">CSC485</span>
<span class="course-name">Computational Linguistics</span>
<div class="marquee">
<div class="marquee-left1"> grammars • parsing • dependency graphs • projectivity • Chu-Lie-Edmonds algorithm • </div>
<div class="marquee-left2"> grammars • parsing • dependency graphs • projectivity • Chu-Lie-Edmonds algorithm • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> lexicon • syntax • semantics • pragmatics • ambiguity • thematic roles • case • grammatical function • phrase • context-free grammar • </div>
<div class="marquee-right2"> lexicon • syntax • semantics • pragmatics • ambiguity • thematic roles • case • grammatical function • phrase • context-free grammar • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> WordNet • word2vec • BERT • word sense disambiguation • context • agreement features • voice • </div>
<div class="marquee-left2"> WordNet • word2vec • BERT • word sense disambiguation • context • agreement features • voice • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> PRPN • supertagging • recurrent neural networks • combinatory categorial grammar • tree adjoining grammar • charts • </div>
<div class="marquee-right2"> PRPN • supertagging • recurrent neural networks • combinatory categorial grammar • tree adjoining grammar • charts • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper">
<div class="course" id="csc458">
<div class="course-title">CSC<br>458</div>
<image class="course-icon" src="images/course-icons/network.svg" alt="CSC458 network"></image>
<div class="course-content">
<span class="inner-course-title">CSC458</span>
<span class="course-name">Computer Networks</span>
<div class="marquee">
<div class="marquee-left1"> 4-Layer Network Model • bandwidth • latency • encoding • error detection • parity • switch tables • DNS • packets • </div>
<div class="marquee-left2"> 4-Layer Network Model • bandwidth • latency • encoding • error detection • parity • switch tables • DNS • packets • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> IP • forwarding • routing • Bellman-Ford algo • distance vectors • Dijkstra's algo • link states • </div>
<div class="marquee-right2"> IP • forwarding • routing • Bellman-Ford algo • distance vectors • Dijkstra's algo • link states • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> autonomous systems • BGP • UDP • TCP • congestion control • flow control • retransmission • Nagle's algo • middleboxes • RED • </div>
<div class="marquee-left2"> autonomous systems • BGP • UDP • TCP • congestion control • flow control • retransmission • Nagle's algo • middleboxes • RED • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> SDNs • Data Center Networks • architecture • overlay networks • tunneling • </div>
<div class="marquee-right2"> SDNs • Data Center Networks • architecture • overlay networks • tunneling • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper">
<div class="course" id="csc428">
<div class="course-title">CSC<br>428</div>
<image class="course-icon" src="images/course-icons/cursor-click.svg" alt="CSC428 cursor click"></image>
<div class="course-content">
<span class="inner-course-title">CSC428</span>
<span class="course-name">Human-Computer Interaction</span>
<div class="marquee">
<div class="marquee-left1"> designer mindset • interventions • cognitive load • psychology • mental health • eustress • reflections • </div>
<div class="marquee-left2"> designer mindset • interventions • cognitive load • psychology • mental health • eustress • reflections • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> study design • research question • research plan • pilot testing • peer review • </div>
<div class="marquee-right2"> study design • research question • research plan • pilot testing • peer review • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> randomized A/B experiments • statistical analysis • ML & AI applications • </div>
<div class="marquee-left2"> randomized A/B experiments • statistical analysis • ML & AI applications • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> collective intelligence • crowdsourcing • participatory design • stakeholders • </div>
<div class="marquee-right2"> collective intelligence • crowdsourcing • participatory design • stakeholders • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper">
<div class="course" id="csc396">
<div class="course-title">CSC<br>396</div>
<image class="course-icon" src="images/course-icons/eye.svg" alt="CSC396 eye"></image>
<div class="course-content">
<span class="inner-course-title">CSC396</span>
<span class="course-name">Designing Systems for <br>Real World Problems</span>
<div class="marquee">
<div class="marquee-left1"> user experience • problem space • target audience • literature review • keyhole impact • design processes • </div>
<div class="marquee-left2"> user experience • problem space • target audience • literature review • keyhole impact • design processes • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> personas • scenarios • experience maps • design principles • task analysis • requirements • </div>
<div class="marquee-right2"> personas • scenarios • experience maps • design principles • task analysis • requirements • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> prototypes • conceptual models • constraints • standards • usability testing • </div>
<div class="marquee-left2"> prototypes • conceptual models • constraints • standards • usability testing • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> System Usability Score • Net Promoter Score • reports & data visualization • prototype iteration • </div>
<div class="marquee-right2"> System Usability Score • Net Promoter Score • reports & data visualization • prototype iteration • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper">
<div class="course" id="csc373">
<div class="course-title">CSC<br>373</div>
<image class="course-icon" src="images/course-icons/venn.svg" alt="CSC373 venn"></image>
<div class="course-content">
<span class="inner-course-title">CSC373</span>
<span class="course-name">Algorithm Design, Analysis, & Complexity</span>
<div class="marquee">
<div class="marquee-left1"> divide & conquer • Master Theorem • greedy algorithms • interval scheduling • partitioning • minimize lateness • Huffman encoding • </div>
<div class="marquee-left2"> divide & conquer • Master Theorem • greedy algorithms • interval scheduling • partitioning • minimize lateness • Huffman encoding • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> dynamic programming • top-down • bottom-up • knapsack • travelling salesman • </div>
<div class="marquee-right2"> dynamic programming • top-down • bottom-up • knapsack • travelling salesman • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> network flow • residual graphs • Ford-Fulkerson algo • min-cut max-flow • Edmonds-Karp algo • bipartite matching • Hall's Marriage theorem • </div>
<div class="marquee-left2"> network flow • residual graphs • Ford-Fulkerson algo • min-cut max-flow • Edmonds-Karp algo • bipartite matching • Hall's Marriage theorem • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> linear programming • standard form • simplex algo • primal • dual • P • NP-complete • co-NP • reductions • randomized algorithms • </div>
<div class="marquee-right2"> linear programming • standard form • simplex algo • primal • dual • P • NP-complete • co-NP • reductions • randomized algorithms • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper">
<div class="course" id="csc369">
<div class="course-title">CSC<br>369</div>
<image class="course-icon" src="images/course-icons/file.svg" alt="CSC369 file"></image>
<div class="course-content">
<span class="inner-course-title">CSC369</span>
<span class="course-name">Operating Systems</span>
<div class="marquee">
<div class="marquee-left1"> file systems • directories • links • inodes • disk layout • data block allocation • superblock • free map • FFS • NTFS • crashing • </div>
<div class="marquee-left2"> file systems • directories • links • inodes • disk layout • data block allocation • superblock • free map • FFS • NTFS • crashing • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> processes • fork • zombies • interrupts • system calls • threads • scheduling • synchronization • </div>
<div class="marquee-right2"> processes • fork • zombies • interrupts • system calls • threads • scheduling • synchronization • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> locks • signal • broadcast • condition variables • semaphores • deadlock • attacks • </div>
<div class="marquee-left2"> locks • signal • broadcast • condition variables • semaphores • deadlock • attacks • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> page replacement • page tables • TLBs • virtual memory • process scheduling • </div>
<div class="marquee-right2"> page replacement • page tables • TLBs • virtual memory • process scheduling • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper">
<div class="course" id="csc343">
<div class="course-title">CSC<br>343</div>
<image class="course-icon" src="images/course-icons/table.svg" alt="CSC343 table"></image>
<div class="course-content">
<span class="inner-course-title">CSC343</span>
<span class="course-name">Intro to Databases</span>
<div class="marquee">
<div class="marquee-left1"> relational model • schemas • attribute • cardinality • arity • keys • superkeys • foreign keys • referential integrity constraints • </div>
<div class="marquee-left2"> relational model • schemas • attribute • cardinality • arity • keys • superkeys • foreign keys • referential integrity constraints • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> relational algebra • projection • Cartesian product • natural join • • theta join • set operations • </div>
<div class="marquee-right2"> relational algebra • projection • Cartesian product • natural join • • theta join • set operations • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> DBMS • SQL • DML • subqueries • groupby • orderby • having • removing duplication • operators • scope • </div>
<div class="marquee-left2"> DBMS • SQL • DML • subqueries • groupby • orderby • having • removing duplication • operators • scope • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> DDL • functional dependency theory • decomposition • BCNF • 3NF • Chase test • Entity/Relationship model • </div>
<div class="marquee-right2"> DDL • functional dependency theory • decomposition • BCNF • 3NF • Chase test • Entity/Relationship model • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper">
<div class="course" id="csc318">
<div class="course-title">CSC<br>318</div>
<image class="course-icon" src="images/course-icons/double-diamond.svg" alt="CSC318 double diamond"></image>
<div class="course-content">
<span class="inner-course-title">CSC318</span>
<span class="course-name">Design of Interactive Computational Media</span>
<div class="marquee">
<div class="marquee-left1"> usefulness • usability • Double-Diamond Design Model • user-centered design • user research • </div>
<div class="marquee-left2"> usefulness • usability • Double-Diamond Design Model • user-centered design • user research • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> POV statements • observations • problem statement • research question • interviews • questionnaires • biases • </div>
<div class="marquee-right2"> POV statements • observations • problem statement • research question • interviews • questionnaires • biases • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> design requirements • experience maps • paper prototypes • storyboards • personas • job stories • stakeholders • empathy maps • </div>
<div class="marquee-left2"> design requirements • experience maps • paper prototypes • storyboards • personas • job stories • stakeholders • empathy maps • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> think aloud • heuristic evaluation • cognitive walkthroughs • high-fidelity prototypes • user testing • </div>
<div class="marquee-right2"> think aloud • heuristic evaluation • cognitive walkthroughs • high-fidelity prototypes • user testing • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper">
<div class="course" id="csc311">
<div class="course-title">CSC<br>311</div>
<image class="course-icon" src="images/course-icons/io.svg" alt="CSC311 input output"></image>
<div class="course-content">
<span class="inner-course-title">CSC311</span>
<span class="course-name">Intro to Machine Learning</span>
<div class="marquee">
<div class="marquee-left1"> input vectors • decision boundaries • kNN • training set • validation set • test set • </div>
<div class="marquee-left2"> input vectors • decision boundaries • kNN • training set • validation set • test set • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> decision trees • entropy • bias-variance decomposition • Bayes optimality • bagging • linear regression • supervised learning • </div>
<div class="marquee-right2"> decision trees • entropy • bias-variance decomposition • Bayes optimality • bagging • linear regression • supervised learning • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> gradient descent • feature mapping • regularization • logistic regression • softmax regression • ROC curve • </div>
<div class="marquee-left2"> gradient descent • feature mapping • regularization • logistic regression • softmax regression • ROC curve • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> multilayer perceptrons • backpropagation • convolution layers • GDA • PCA • K-means • GMM • reinforcement learning • </div>
<div class="marquee-right2"> multilayer perceptrons • backpropagation • convolution layers • GDA • PCA • K-means • GMM • reinforcement learning • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper">
<div class="course" id="csc309">
<div class="course-title">CSC<br>309</div>
<image class="course-icon" src="images/course-icons/globe.svg" alt="CSC309 globe"></image>
<div class="course-content">
<span class="inner-course-title">CSC309</span>
<span class="course-name">Programming on the Web</span>
<div class="marquee">
<div class="marquee-left1"> World Wide Web • URL • HTTP • DNS • Network 4-Layer Model • client • server • </div>
<div class="marquee-left2"> World Wide Web • URL • HTTP • DNS • Network 4-Layer Model • client • server • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> HTML • CSS • JavaScript • ES6 • hoisting • closures • objects • scope • prototypes • callbacks • listeners • promises • </div>
<div class="marquee-right2"> HTML • CSS • JavaScript • ES6 • hoisting • closures • objects • scope • prototypes • callbacks • listeners • promises • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> DOM • Virtual DOM • frameworks • libraries • React • transpiling • event loop • JSON • state • hooks • </div>
<div class="marquee-left2"> DOM • Virtual DOM • frameworks • libraries • React • transpiling • event loop • JSON • state • hooks • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> Node.js • express • MongoDB • models • authentication • cookies • sessions • HTTPS • TLS • keys • OWASP • OAuth • </div>
<div class="marquee-right2"> Node.js • express • MongoDB • models • authentication • cookies • sessions • HTTPS • TLS • keys • OWASP • OAuth • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper">
<div class="course" id="csc301">
<div class="course-title">CSC<br>301</div>
<image class="course-icon" src="images/course-icons/code.svg" alt="CSC301 code"></image>
<div class="course-content">
<span class="inner-course-title">CSC301</span>
<span class="course-name">Intro to Software Engineering</span>
<div class="marquee">
<div class="marquee-left1"> Agile • Scrum • sprints • standups • XP • Kanban • Test Driven Development • Waterfall • </div>
<div class="marquee-left2"> Agile • Scrum • sprints • standups • XP • Kanban • Test Driven Development • Waterfall • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> personas • user stories • story points • planning poker • Class Responsibilities Collaborators • </div>
<div class="marquee-right2"> personas • user stories • story points • planning poker • Class Responsibilities Collaborators • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> REST • MVC • 3-tiered • burndown chart • sprint reviews • backlog • scrum master • </div>
<div class="marquee-left2"> REST • MVC • 3-tiered • burndown chart • sprint reviews • backlog • scrum master • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> testing • development • deployment • CI/CD • peer reviews • code styles • refactoring • </div>
<div class="marquee-right2"> testing • development • deployment • CI/CD • peer reviews • code styles • refactoring • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper">
<div class="course" id="csc300">
<div class="course-title">CSC<br>300</div>
<image class="course-icon" src="images/course-icons/people.svg" alt="CSC300 people"></image>
<div class="course-content">
<span class="inner-course-title">CSC300</span>
<span class="course-name">Computers & Society</span>
<div class="marquee">
<div class="marquee-left1"> ethics • virtues • categorical imperative • utilitarianism • hybrid constructivism • infrastructure • </div>
<div class="marquee-left2"> ethics • virtues • categorical imperative • utilitarianism • hybrid constructivism • infrastructure • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> data politics • data analysis • privacy principles • surveillance capitalism • digital footprints • panopticon • </div>
<div class="marquee-right2"> data politics • data analysis • privacy principles • surveillance capitalism • digital footprints • panopticon • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> extraction • emissions • e-waste • broken world thinking • right to repair • copyright • intellectual property • fair-use • </div>
<div class="marquee-left2"> extraction • emissions • e-waste • broken world thinking • right to repair • copyright • intellectual property • fair-use • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> gender disparity • sexuality • race • intersectionality • modernization • digital colonialism • </div>
<div class="marquee-right2"> gender disparity • sexuality • race • intersectionality • modernization • digital colonialism • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper extra-course">
<div class="course" id="csc263">
<div class="course-title">CSC<br>263</div>
<image class="course-icon" src="images/course-icons/avl.svg" alt="CSC263 tree"></image>
<div class="course-content">
<span class="inner-course-title">CSC263</span>
<span class="course-name">Data Structures & Analysis</span>
<div class="marquee">
<div class="marquee-left1"> priority queue (heaps) • dictionary (AVL trees) • <b>ADTs</b> • disjoint set (path compression) • </div>
<div class="marquee-left2"> priority queue (heaps) • dictionary (AVL trees) • <b>ADTs</b> • disjoint set (path compression) • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> <b>algorithms</b> • random quicksort • Breadth First Search • Depth First Search • Prim’s • Kruskal’s • </div>
<div class="marquee-right2"> <b>algorithms</b> • random quicksort • Breadth First Search • Depth First Search • Prim’s • Kruskal’s • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> closed addressing • open addressing • <b>hashing</b> • linear, quadratic probing • double hashing • </div>
<div class="marquee-left2"> closed addressing • open addressing • <b>hashing</b> • linear, quadratic probing • double hashing • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> aggregate method • accounting method • WC sequence complexity • <b>amortized analysis</b> • </div>
<div class="marquee-right2"> aggregate method • accounting method • WC sequence complexity • <b>amortized analysis</b> • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper extra-course">
<div class="course" id="csc258">
<div class="course-title">CSC<br>258</div>
<image class="course-icon" src="images/course-icons/processor.svg" alt="CSC258 processor"></image>
<div class="course-content">
<span class="inner-course-title">CSC258</span>
<span class="course-name">Computer Organization</span>
<div class="marquee">
<div class="marquee-left1"> semiconductors • junctions • <b>circuit design</b> • transistors • gates • </div>
<div class="marquee-left2"> semiconductors • junctions • <b>circuit design</b> • transistors • gates • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> <b>sequential circuits</b> • multiplexers • adders • comparators • latches • clocks • registers • </div>
<div class="marquee-right2"> <b>sequential circuits</b> • multiplexers • adders • comparators • latches • clocks • registers • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> sequence recognizer • state tables • <b>Finite State Machines</b> • flip flops • </div>
<div class="marquee-left2"> sequence recognizer • state tables • <b>Finite State Machines</b> • flip flops • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> control unit • RAM • <b>microprocessors</b> • program counter • registers • ALU • </div>
<div class="marquee-right2"> control unit • RAM • <b>microprocessors</b> • program counter • registers • ALU • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper extra-course">
<div class="course" id="csc236">
<div class="course-title">CSC<br>236</div>
<image class="course-icon" src="images/course-icons/states.svg" alt="CSC236 state transitions"></image>
<div class="course-content">
<span class="inner-course-title">CSC236</span>
<span class="course-name">Intro to the<br>Theory of Computation</span>
<div class="marquee">
<div class="marquee-left1"> simple • complete • structural • <b>induction types</b> • Principle of Well Ordering • </div>
<div class="marquee-left2"> simple • complete • structural • <b>induction types</b> • Principle of Well Ordering • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> <b>divide-and-conquer algorithms</b> • Master Theorem • Pumping Lemma • recurrence relation • </div>
<div class="marquee-right2"> <b>divide-and-conquer algorithms</b> • Master Theorem • Pumping Lemma • recurrence relation • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> <b>runtime analysis of recursive programs</b> • repeated substitution • </div>
<div class="marquee-left2"> <b>runtime analysis of recursive programs</b> • repeated substitution • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> partial correctness • <b>recursive and iterative correctness proofs</b> • termination • invariants • </div>
<div class="marquee-right2"> partial correctness • <b>recursive and iterative correctness proofs</b> • termination • invariants • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper extra-course">
<div class="course" id="csc209">
<div class="course-title">CSC<br>209</div>
<image class="course-icon" src="images/course-icons/pipe.svg" alt="CSC209 processes"></image>
<div class="course-content">
<span class="inner-course-title">CSC209</span>
<span class="course-name">Systems Programming</span>
<div class="marquee">
<div class="marquee-left1"> dynamic memory allocation • <b>C</b> • function pointers • strings • structs • </div>
<div class="marquee-left2"> dynamic memory allocation • <b>C</b> • function pointers • strings • structs • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> shell programming • <b>Unix</b> • compilation • permissions • </div>
<div class="marquee-right2"> shell programming • <b>Unix</b> • compilation • permissions • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> <b>pipes</b> • fork • wait • dup2 • redir • <b>sockets</b> • select • </div>
<div class="marquee-left2"> <b>pipes</b> • fork • wait • dup2 • redir • <b>sockets</b> • select • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> processes • signals • system calls • error handling • </div>
<div class="marquee-right2"> processes • signals • system calls • error handling • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper extra-course">
<div class="course" id="csc207">
<div class="course-title">CSC<br>207</div>
<image class="course-icon" src="images/course-icons/layers.svg" alt="CSC207 dependency layers"></image>
<div class="course-content">
<span class="inner-course-title">CSC207</span>
<span class="course-name">Software Design</span>
<div class="marquee">
<div class="marquee-left1"> UML • CRC • <b>Java</b> • Javadoc • version control (Git) • regular expressions • </div>
<div class="marquee-left2"> UML • CRC • <b>Java</b> • Javadoc • version control (Git) • regular expressions • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> dependency injection • observer • factory • <b>design patterns</b> • facade • iterator • </div>
<div class="marquee-right2"> dependency injection • observer • factory • <b>design patterns</b> • facade • iterator • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> <b>SOLID principles</b> • abstraction • encapsulation • low coupling • high cohesion • </div>
<div class="marquee-left2"> <b>SOLID principles</b> • abstraction • encapsulation • low coupling • high cohesion • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> <b>Clean Architecture</b> • Model View Presenter Architecture • </div>
<div class="marquee-right2"> <b>Clean Architecture</b> • Model View Presenter Architecture • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper extra-course">
<div class="course" id="csc165">
<div class="course-title">CSC<br>165</div>
<image class="course-icon" src="images/course-icons/qed.svg" alt="CSC165 qed"></image>
<div class="course-content">
<span class="inner-course-title">CSC165</span>
<span class="course-name">Math Expression & Reasoning for CS</span>
<div class="marquee">
<div class="marquee-left1"> <b>notation</b> • sets • predicate logic • ¬ • ∧ • ∨ • ⇒ • ⇔ • ∀ • ∃ • </div>
<div class="marquee-left2"> <b>notation</b> • sets • predicate logic • ¬ • ∧ • ∨ • ⇒ • ⇔ • ∀ • ∃ • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> direct • cases • simple induction • <b>proof techniques</b> • contradiction • contrapositive • disproofs • </div>
<div class="marquee-right2"> direct • cases • simple induction • <b>proof techniques</b> • contradiction • contrapositive • disproofs • </div>
</div>
<div class="marquee">
<div class="marquee-left1"> <b>runtime analysis of iterative programs</b> • worst case • best case • average case • </div>
<div class="marquee-left2"> <b>runtime analysis of iterative programs</b> • worst case • best case • average case • </div>
</div>
<div class="marquee">
<div class="marquee-right1"> modular arithmetic • primes • binary representation • <b>number theory</b> • </div>
<div class="marquee-right2"> modular arithmetic • primes • binary representation • <b>number theory</b> • </div>
</div>
</div>
</div>
</div>
<div class="course-wrapper extra-course">
<div class="course" id="csc148">
<div class="course-title">CSC<br>148</div>
<image class="course-icon" src="images/course-icons/stack.svg" alt="CSC148 stack"></image>
<div class="course-content">