-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1541 lines (1428 loc) · 72 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="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="Jeff Wang"/>
<meta name="title" property="og:title" content="Jeff Wang Portfolio" />
<meta name="description" content="Personal Portfolio Website"/>
<meta name="image" property="og:image" content="https://jeffwang4321.github.io/img/site1.PNG">
<!-- <meta name="image" property="og:image" content=""> -->
<link rel="stylesheet" href="./styles.css"/>
<link rel="shortcut icon" href="./img/icon.png"/>
<!-- Icons -->
<link href='https://cdn.jsdelivr.net/npm/[email protected]/css/boxicons.min.css' rel='stylesheet'/>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap" rel="stylesheet"/>
<title>Jeff Wang Portfolio</title>
</head>
<body>
<!-- ======================== HEADER/NAV bar ======================== -->
<header>
<h3>JEFF WANG.</h3>
<h4>
<nav>
<ul>
<li><a href="#home" id="n_home">Home</a></li>
<li><a href="#about" id="n_about">Skills</a></li>
<li><a href="#work" id="n_work">Work</a></li>
<li><a href="#project" id="n_project">Projects</a></li>
<li><a href="#contact" id="n_contact">Contact</a></li>
</ul>
</nav>
</h4>
</header>
<!-- ======================== HOME section ======================== -->
<div id="home">
<img src="./img/jw.jpg">
<p>Jeff Wang</p>
<h4>Computer Science Undergraduate @ Simon Fraser University</h4>
<div class="home_buttons">
<button><a href="Resume.pdf" target="_"><h4>Resume</h4></a></button>
<a id="git_button" href="https://github.com/jeffwang4321" target="_"><i class='bx bxl-github'></i><b>GitHub</b></a>
</div>
</div>
<div id="home_b"></div>
<!-- ======================== ABOUT/SKILLS section ======================== -->
<div id="about">
<h3>About Me</h3>
<p>
Hi there! I'm Jeff Wang and I'm an undergraduate computer science student at Simon Fraser University residing in Vancouver, BC. I love being a software developer and the freedom to express my ideas through code!
</p>
</div>
<!-- ======================== SKILL section ======================== -->
<div class="skills">
<!--===== INFO LIST =====-->
<div class="column">
<h3>Profile</h3>
<ul class="info-list">
<li>
<strong>Full Name:</strong>
<span>   Jeff Wang</span>
</li>
<li>
<strong>Education:</strong>
<span>   Simon Fraser University</span>
</li>
<li>
<strong>Major:</strong>
<span>   Computing Science</span>
</li>
<li>
<strong>Email:</strong>
<span>   <a href="mailto:[email protected]">[email protected]</a></span>
</li>
</ul>
</div>
<!--===== SKILL BAR =====-->
<div class="column">
<h3>Skills</h3>
<ul class="skill-bars">
<li>
<div class="progress percent85"><span>Every Day</span></div>
<i class='bx bxl-python'></i>
<strong>Python, NumPy, Pandas</strong>
</li>
<li>
<div class="progress percent80"><span>Well Acquainted</span></div>
<i class='bx bxl-c-plus-plus'></i>
<strong>C, C++, C#</strong>
</li>
<li>
<div class="progress percent90"><span>Love It</span></div>
<i class='bx bxl-javascript'></i>
<strong>Javascript, HTML, CSS</strong>
</li>
<li>
<div class="progress percent95"><span>Having Fun</span></div>
<i class='bx bx-pencil'></i>
<strong>Graphic Design, Film Editing </strong>
</li>
</ul>
</div>
</div>
<div class="skills-button">
<button>
<a class="popup-button" href="#popup_skills"><h4>More Skills</h4></a>
</button>
</div>
<div id="about_b"></div>
<!-- ======================== Popup Text for Skills ======================== -->
<div id="popup_skills" class="overlay">
<div class="popup">
<a class="close" href="##">×</a>
<div class="content">
<h2>Transferable Skills</h2>
<ul>
<li>
•  Strong interpersonal skills developed from past leadership and team member experiences
</li>
<li>
•  Self-directed team member; dedicated to professionalism, organization, and punctuality
</li>
<li>
•  Fast and adaptable learner; able to quickly understand and utilize new technical concepts
</li>
<li>
•  Highly motivated and works well under pressure
</li>
<li>
•  Can effectively convey technical concepts in writing or presenting verbally
</li>
<li>
•  Native proficiency in both English and Mandarin
</li>
</ul>
<h2>Technical Skills</h2>
<table>
<tr><th>Languages:</th></tr>
<tr>
<td>
<div id= "table_item">
<img src="logo/python.png">
<h4>Python</h4>
</div>
<div id= "table_item">
<img src="logo/java.png">
<h4>Java</h4>
</div>
<div id= "table_item">
<img src="logo/javascript.png">
<h4>JavaScript</h4>
</div>
<div id= "table_item">
<img src="logo/html5.png">
<h4>HTML5</h4>
</div>
<div id= "table_item">
<img src="logo/sass.png">
<h4>Sass</h4>
</div>
<div id= "table_item">
<img src="logo/C.png">
<h4>C</h4>
</div>
<div id= "table_item">
<img src="logo/cpp.png">
<h4>C++</h4>
</div>
<!-- <div id= "table_item">
<img src="logo/csharp.png">
<h4>C#</h4>
</div> -->
<div id= "table_item">
<img src="logo/swift.png">
<h4>Swift</h4>
</div>
<!-- <div id= "table_item">
<img src="logo/rlogo.png">
<h4>R</h4>
</div> -->
<div id= "table_item">
<img src="logo/sqlite.png">
<h4>SQL</h4>
</div>
</td>
</tr>
<td> </td>
<tr><th>Libraries & Frameworks:</th></tr>
<tr>
<td>
<div id= "table_item">
<img src="logo/react.png">
<h4>React</h4>
</div>
<div id= "table_item">
<img src="logo/redux.png">
<h4>Redux</h4>
</div>
<div id= "table_item">
<img src="logo/nodejs.png">
<h4>Node.js</h4>
</div>
<div id= "table_item">
<img src="logo/boot.png">
<h4>Bootstrap</h4>
</div>
<div id= "table_item">
<img src="logo/firebase.png">
<h4>FireBase</h4>
</div>
<div id= "table_item">
<img src="logo/pandas.png">
<h4>Pandas</h4>
</div>
<div id= "table_item">
<img src="logo/numpy.png">
<h4>NumPy</h4>
</div>
<div id= "table_item">
<img src="logo/matplotlib.png">
<h4>Matplotlib</h4>
</div>
</td>
</tr>
<td> </td>
<tr><th>IDEs:</th></tr>
<tr>
<td>
<div id= "table_item">
<img src="logo/vs.png">
<h4>Visual Studio</h4>
</div>
<div id= "table_item">
<img src="logo/android.png">
<h4>Android Studio</h4>
</div>
<div id= "table_item">
<img src="logo/python.png">
<h4>IDLE</h4>
</div>
<div id= "table_item">
<img src="logo/wing.png">
<h4>Wing</h4>
</div>
<div id= "table_item">
<img src="logo/netbeans.png">
<h4>NetBeans</h4>
</div>
<div id= "table_item">
<img src="logo/xcode2.png">
<h4>XCode</h4>
</div>
<div id= "table_item">
<img src="logo/rstudio.png">
<h4>R Studio</h4>
</div>
<div id= "table_item">
<img src="logo/atom.png">
<h4>Atom</h4>
</div>
</td>
</tr>
<td> </td>
<tr><th>Technologies:</th></tr>
<tr>
<td>
<div id= "table_item">
<img src="logo/github.png">
<h4>Git</h4>
</div>
<div id= "table_item">
<img src="logo/expo.png">
<h4>Expo</h4>
</div>
<div id= "table_item">
<img src="logo/linux.png">
<h4>Linix</h4>
</div>
<!-- <div id= "table_item">
<img src="logo/ubuntu.png">
<h4>Ubuntu</h4>
</div> -->
<div id= "table_item">
<img src="logo/sqlserver.png">
<h4>SQL Server</h4>
</div>
<div id= "table_item">
<img src="logo/office365.png">
<h4>Office365</h4>
</div>
<div id= "table_item">
<img src="logo/adobecreative.png">
<h4>Adobe Creative</h4>
</div>
<div id= "table_item">
<img src="logo/jira.png">
<h4>JIRA</h4>
</div>
<div id= "table_item">
<img src="logo/salesforce.png">
<h4>SalesForce</h4>
</div>
<div id= "table_item">
<img src="logo/matlab.png">
<h4>MatLab</h4>
</div>
</td>
</tr>
</table>
</div>
</div>
</div>
<!-- ======================== WORK section ======================== -->
<div id="work">
<h3>Work</h3>
<div class="w-container">
<div class="box">
<a class="popup-button" href="#popup_w0">
<div class="overlay-text">
<h1>Rainforest</h1>
<p>Software Developer</p>
</div>
<img src="img/rfa.jpg">
</a>
</div>
<div class="box">
<a class="popup-button" href="#popup_w1">
<div class="overlay-text">
<h1>ClearDent</h1>
<p>Database Technician</p>
</div>
<img src="img/cd.jpg">
</a>
</div>
<div class="box">
<a class="popup-button" href="#popup_w2">
<div class="overlay-text">
<h1>McDonalds</h1>
<p>Team Leader</p>
</div>
<img src="img/md.jpg">
</a>
</div>
<div class="box">
<a class="popup-button" href="#popup_w3">
<div class="overlay-text">
<h1>Science World</h1>
<p>Exhibit Facilitator</p>
</div>
<img src="img/sw.jpg">
</a>
</div>
</div>
</div>
<div id="work_b"></div>
<!-- ======================== Popup Text for Work ======================== -->
<div id="popup_w0" class="overlay">
<div class="popup">
<a class="close" href="##">×</a>
<div class="content">
<p><b>Rainforest Automation</b>  Vancouver, BC — Software Developer</p>
<p><b>Duration: 8 months</b>  (Jan 2021 – Sep 2021)</p>
<ul>
<li>
•  Implemented the pricing graph, the edit device modal and the demand history cache for the company's user portal using React and Redux
</li>
<li>
•  Maintained, updated and debugged 40+ tickets for React components, Redux stores and optimized REST API request functions
</li>
<li>
•  Designed and automated test scripts for Unix firmware using Python's fabric library and front-end testing using Cypress
</li>
<li>
•  Automated REST API tests to monitor cloud health using Postman collections
</li>
<li>
•  Troubleshooted UNIX firmware using bash scripts and XML commands
</li>
</ul>
<table>
<tr><th>TECHNOLOGIES</th></tr>
<tr>
<td>
<div id= "table_item">
<img src="logo/react.png">
<h4>React</h4>
</div>
<div id= "table_item">
<img src="logo/redux.png">
<h4>Redux</h4>
</div>
<div id= "table_item">
<img src="logo/javascript.png">
<h4>JavaScript</h4>
</div>
<!-- <div id = "table_item">
<img src="logo/html5.png">
<h4>HTML5</h4>
</div> -->
<div id = "table_item">
<img src="logo/sass.png">
<h4>Sass</h4>
</div>
<!-- <div id= "table_item">
<img src="logo/nodejs.png">
<h4>Node.js</h4>
</div> -->
<div id= "table_item">
<img src="logo/unix.png">
<h4>Unix</h4>
</div>
<div id= "table_item">
<img src="logo/python.png">
<h4>Python</h4>
</div>
</td>
</tr>
</table>
</div>
</div>
</div>
<div id="popup_w1" class="overlay">
<div class="popup">
<a class="close" href="##">×</a>
<div class="content">
<p><b>ClearDent (Prococious Technology Inc),</b>  Burnaby, BC — Database Support Technician</p>
<p><b>Duration: 8 months</b>  (May 2019 – Dec 2019)</p>
<ul>
<li>
•  Applied database scripts for software clients using SQL Management Studio
</li>
<li>
•  Performed cloud database backups, set up and regular integrity checks
</li>
<li>
•  Automated and debugged database backups and integrity check scripts in C++
</li>
<li>
•  Responsible for regular software checkup, updates and SQL Server maintenance
</li>
<li>
•  Assisted technicians with software setups and database migrations
</li>
</ul>
<table>
<tr><th>TECHNOLOGIES</th></tr>
<tr>
<td>
<div id= "table_item">
<img src="logo/sqlserver.png">
<h4>SQL Server</h4>
</div>
<div id= "table_item">
<img src="logo/sqlms.png">
<h4>Management Studio</h4>
</div>
<div id= "table_item">
<img src="logo/cpp.png">
<h4>C++</h4>
</div>
<div id= "table_item">
<img src="logo/excel.png">
<h4>Excel</h4>
</div>
<div id = "table_item">
<img src="logo/jira.png">
<h4>JIRA</h4>
</div>
<div id= "table_item">
<img src="logo/salesforce.png">
<h4>SalesForce</h4>
</div>
</td>
</tr>
</table>
</div>
</div>
</div>
<div id="popup_w2" class="overlay">
<div class="popup">
<a class="close" href="##">×</a>
<div class="content">
<p><b>McDonalds Canada,</b>  Coquitlam, BC</p>
<p><b>Duration: 2 years</b>  (Oct 2014 - May 2017)</p>
<ul>
<li>
•  Strong interpersonal skills with customers and team members
</li>
<li>
•  Employee of the month for hospitality
</li>
<li>
•  Dependable worker with leadership capacity and quality assurance
</li>
<li>
•  Works well under pressure and in stressful conditions
</li>
</ul>
<table>
<tr><th>SKILLS</th></tr>
<tr>
<td>
<div id= "table_item">
<img src="logo/leadership.png">
<h4>Leadership</h4>
</div>
<div id= "table_item">
<img src="logo/communications.png">
<h4>Communication</h4>
</div>
<div id= "table_item">
<img src="logo/teamwork.png">
<h4>Teamwork</h4>
</div>
<div id= "table_item">
<img src="logo/observant.png">
<h4>Observant</h4>
</div>
<div id= "table_item">
<img src="logo/patience.png">
<h4>Patience</h4>
</div>
</td>
</tr>
</table>
</div>
</div>
</div>
<div id="popup_w3" class="overlay">
<div class="popup">
<a class="close" href="##">×</a>
<div class="content">
<p><b>TELUS the World of Science</b>  , Vancouver, BC</p>
<p><b>Duration: 3 months</b>  (Mar 2015 - May 2015)</p>
<ul>
<li>
•  Demonstrated and explained the science behind each equipment station and facility
</li>
<li>
•  Responsible for the safety of individuals and provide customer services to visitors
</li>
<li>
•  Strong interpersonal skills among young adults and children
</li>
</ul>
<table>
<tr><th>SKILLS</th></tr>
<tr>
<td>
<div id= "table_item">
<img src="logo/observant.png">
<h4>Observant</h4>
</div>
<div id= "table_item">
<img src="logo/communications.png">
<h4>Communication</h4>
</div>
<div id= "table_item">
<img src="logo/patience.png">
<h4>Patience</h4>
</div>
<div id= "table_item">
<img src="logo/leadership.png">
<h4>Leadership</h4>
</div>
<div id= "table_item">
<img src="logo/teamwork.png">
<h4>Teamwork</h4>
</div>
</td>
</tr>
</table>
</div>
</div>
</div>
<!-- ======================== PROJECTS section ======================== -->
<div id="project">
<h3>Projects</h3>
<div class="container">
<div class="box">
<a class="popup-button" href="#popup_IO">
<div class="overlay-text">
<h1>IO Games</h1>
<p>Multiplayer Socket Games</p>
</div>
<img src="img/io.jpg">
</a>
</div>
<div class="box">
<a class="popup-button" href="#popup_AppDev">
<div class="overlay-text">
<h1>App Dev</h1>
<p>Expo & React Native</p>
</div>
<img src="img/AppDev.jpg">
</a>
</div>
<div class="box">
<a class="popup-button" href="#popup_LibraryDB">
<div class="overlay-text">
<h1>Library DB</h1>
<p>Python x SQLite Application</p>
</div>
<img src="img/db.jpg">
</a>
</div>
<div class="box">
<a class="popup-button" href="#popup_Web">
<div class="overlay-text">
<h1>Web Design</h1>
<p>HTML5, CSS3 & JavaScript</p>
</div>
<img src="img/WebDesign.jpg">
</a>
</div>
<div class="box">
<a class="popup-button" href="#popup_Reversi">
<div class="overlay-text">
<h1>Reversi AI</h1>
<p>Monte-Carlo Tree Search</p>
</div>
<img src="img/rai.jpg">
</a>
</div>
<div class="box">
<a class="popup-button" href="#popup_FirstBite">
<div class="overlay-text">
<h1>First Bite</h1>
<p>Newborn Dietary Tracker</p>
</div>
<img src="img/fb.jpg">
</a>
</div>
<div class="box">
<a class="popup-button" href="#popup_Candy">
<div class="overlay-text">
<h1>Candy Factory</h1>
<p>Multithreading & Bounded Buffers</p>
</div>
<img src="img/cf.jpg">
</a>
</div>
<!-- <div class="box">
<a class="popup-button" href="#popup_TicTac">
<div class="overlay-text">
<h1>Tic Tac Toe</h1>
<p>Monte-Carlo Tree Search</p>
</div>
<img src="img/Tic.jpg">
</a>
</div> -->
<div class="box">
<a class="popup-button" href="#popup_ClinicDB">
<div class="overlay-text">
<h1>Clinic Database</h1>
<p>C++ ADT class</p>
</div>
<img src="img/clinic.jpg">
</a>
</div>
<div class="box">
<a class="popup-button" href="#popup_Graphic">
<div class="overlay-text">
<h1>Graphic Design</h1>
<p>2D Animation & Film Editing</p>
</div>
<img src="img/Graphic.jpg">
</a>
</div>
</div>
</div>
<div id="project_b"></div>
<!-- ======================== Popup Text for Projects ======================== -->
<div id="popup_IO" class="overlay">
<div class="popup">
<a class="close" href="##">×</a>
<div class="content">
<p><b>IO Games</b>  — Personal Project   <a id="git_button" href="https://github.com/jeffwang4321/IO-Games" target="_"><i class='bx bxl-github'></i><b>GitHub</b></a></p>
<p><b>Duration: 2 week</b>  (Oct 2020 – Nov 2020)</p>
<ul>
<li>
•  Developed a web based multiplayer games using Node.js and Socket.io
</li>
<li>
•  Realtime communication between client server environment using web sockets
</li>
<li>
•  Client connections organized into unique rooms and can run independently
</li>
<li>
•  Implemented a group chat feature, 3 unique minigames and score tracking
</li>
<li>
•  Hosted: <a href="https://io-games-jeff-wang.herokuapp.com/" target="_">IO Games Website</a>
</li>
</ul>
<iframe height="500vh" width="100%" src="https://www.youtube.com/embed/f04S7N4gTlE" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<p></p><p></p><p></p>
<p><b>Features</b></p>
<p>Chat Features:</p>
<ul>
<li>
•  Users can join different rooms by each entering a player name and the game id
</li>
<li>
•  Users can assign themselves a unique identification color
</li>
<li>
•  Users can send groupchat messages to other users in the room
</li>
<li>
•  A notification is sent when a user joins or leaves the room
</li>
<li>
•  Chatroom tracks the number of connected users, player name & player color
</li>
<li>
•  Users can toggle chat display to show or hide the chat modal
</li>
</ul>
<p>Game Features:</p>
<ul>
<li>
•  Score tracking modal displays in real-time
</li>
<li>
•  Room connection is disabled while a game is in session
</li>
<li>
•  Room states & display automatically reset at the end of each round
</li>
<li>
•  User disconnection, empty room state and multi-round edge cases tested
</li>
<li>
•  Blank tiles change to user color on click (Spam Colors)
</li>
<li>
•  Interactive prompts display after user input (Party Blanks)
</li>
<li>
•  Individual card type and info tracked and respond to client interactions (Hearts & Skulls)
</li>
</ul>
<p></p><p></p>
<!-- <p><b>How To Play</b></p> -->
<p><b>Spam Colors:</b></p>
<!-- <ul>
<li>
•  Click the blank tiles to get +1 point
</li>
<li>
•  Game end when all 100 tiles have been clicked
</li>
<li>
•  Click the most tiles to win!
</li>
</ul> -->
<img width ="100%" src="./img/game1.png">
<p></p><p></p><p></p>
<p><b>Party Blanks:</b></p>
<!-- <ul>
<li>
•  Each player takes turns reading the prompt
</li>
<li>
•  Remaining players have 1 chance to answer the prompt
</li>
<li>
•  Once remaining players have answered, hit the reveal button to read the answers
</li>
<li>
•  Prompt reader then selects their favourite answer for +1 point!
</li>
<li>
•  Click the button to skip bad prompts or end the game
</li>
</ul> -->
<img width ="100%" src="./img/partyblanks.gif">
<p></p><p></p><p></p>
<p><b>Hearts & Skulls:</b></p>
<!-- <ul>
<li>
•  Each round players can place any combination of 2 hearts and 2 skulls
</li>
<li>
•  At the end of each round, players bid for the highest # of flips
</li>
<li>
•  The winning player randomly flips the same # of cards they had betted on
</li>
<li>
•  Click the button to end the round
</li>
<li>
•  If the player does not hit a skull after all their flips +1 point!
</li>
<li>
•  If the player hits at least one skull -1 point
</li>
</ul> -->
<img width ="100%" src="./img/heartsnskulls.gif">
<table>
<tr><th>TECHNOLOGIES</th></tr>
<tr>
<td>
<div id= "table_item">
<img src="logo/socket.png">
<h4>Socket.io</h4>
</div>
<div id= "table_item">
<img src="logo/javascript.png">
<h4>JavaScript</h4>
</div>
<div id= "table_item">
<img src="logo/nodejs.png">
<h4>Node.js</h4>
</div>
<div id= "table_item">
<img src="logo/html5.png">
<h4>HTML5</h4>
</div>
<div id= "table_item">
<img src="logo/css3.png">
<h4>CSS3</h4>
</div>
</td>
</tr>
</table>
</div>
</div>
</div>
<div id="popup_LibraryDB" class="overlay">
<div class="popup">
<a class="close" href="##">×</a>
<div class="content">
<p><b>Library Database</b>  — Database Systems I, SFU   <a id="git_button" href="https://github.com/jeffwang4321/Library-Database" target="_"><i class='bx bxl-github'></i><b>GitHub</b></a></p>
<p><b>Duration: 15 hrs</b>  (Apr 2020 – May 2020)</p>
<ul>
<li>
•  Designed and built a real-world database application for Vancouver libraries
</li>
<li>
•  Designed an entity-relationship model and drafted it into an E/R diagram
</li>
<li>
•  Ensured the schema met the project requirements and avoided anomalies
</li>
<li>
•  Converted the E/R diagram to table schemas for this database using SQLite
</li>
<li>
•  Built the database application using Python and SQLite
</li>
</ul>
<p></p><p></p>
<p><b>Features/ Specifications</b></p>
<ul>
<li>
•  Users can find, borrow and return an item in the library
</li>
<li>
•  User can donate an item to the library
</li>
<li>
•  Users can find and register for an event in the library
</li>
<li>
•  Users can volunteer and ask a librarian for assistance
</li>
<li>
•  Users can list all items, people, dues and events table
</li>
</ul>
<p></p><p></p>
<p><b>E/R Diagram</b></p>
<img width ="100%" src="./img/erdiagram.JPG">
<p></p><p></p><p></p>
<p>Schema:</p>
<ul>
<li>
•  Item (<u>ID</u>, title, author, edition, year, genre, quantity, numAvailable)
</li>
<li>
•  ItemCopy (<u>itemID</u>, <u>copyNum</u>, type, status)
</li>
<li>
•  FutureItem (<u>ID</u>, title, author, edition, year, genre, quantity, type, arrivalDate)
</li>
<li>
•  Person (<u>ID</u>, firstName, lastName, age, owes)
</li>
<li>
•  Registered (<u>personID</u>, <u>eventID</u>)
</li>
<li>
•  Event (<u>ID</u>, eventName, date, room, startTime, endTime, fee, recommendedAge)
</li>
<li>
•  CheckedOut (<u>copyID</u>, <u>personID</u>, <u>itemID</u>)
</li>
<li>
•  Dues (<u>copyID</u>, <u>personID</u>, <u>itemID</u>, dueDate)
</li>
<li>
•  Staff (<u>ID</u>, firstName, lastName, age, gender, role)
</li>
</ul>
<p></p><p></p>
<p><b>Demo</b></p>
<ul>
<li>
•  List all book items
</li>
</ul>
<img width ="100%" src="./img/listitems.JPG">
<p></p><p></p><p></p>
<ul>
<li>
•  List all people and dues
</li>
</ul>
<img width ="100%" src="./img/listpersons.JPG">
<p></p><p></p><p></p>
<ul>
<li>
•  Return a book item
</li>
</ul>
<img width ="100%" src="./img/returnbook.JPG">