-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1031 lines (863 loc) · 42.7 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 class="no-js" lang="en">
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Matthew Ouyang | Portfolio</title>
<meta name="description" content="Portfolio website">
<meta name="author" content="Matthew Ouyang">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/vendor.css">
<!-- script
================================================== -->
<script defer src="js/vendor/fontawesome/all.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5RCGGWKJN5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-5RCGGWKJN5', { cookie_flags: 'SameSite=None;Secure' });
</script>
<!-- favicons
================================================== -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
</head>
<body id="top" class="ss-preload">
<!-- preloader
================================================== -->
<div id="preloader">
<div id="loader"></div>
</div>
<!-- header
================================================== -->
<header class="s-header">
<div class="row s-header__nav-wrap">
<nav class="s-header__nav">
<ul>
<li class="current"><a class="smoothscroll" href="#hero">Home</a></li>
<li><a class="smoothscroll" href="#about">About</a></li>
<li><a class="smoothscroll" href="#resume">Résumé</a></li>
<li><a class="smoothscroll" href="#portfolio">Portfolio</a></li>
<li><a class="smoothscroll" href="#contact">Contact</a></li>
</ul>
</nav>
</div> <!-- end row -->
<a class="s-header__menu-toggle" href="#0" title="Menu">
<span class="s-header__menu-icon"></span>
</a>
</header> <!-- end s-header -->
<!-- hero
================================================== -->
<section id="hero" class="s-hero target-section">
<div class="s-hero__bg rellax" data-rellax-speed="-7"></div>
<div class="row s-hero__content">
<div class="column">
<div class="s-hero__content-about">
<h1>Matthew Ouyang</h1>
<h3>
> System.<span style="color:#fb805f">out</span>.println(<div id="text"></div>
<div id="cursor"></div>);
</h3>
<div class="s-hero__content-social">
<a href="https://www.linkedin.com/in/matthew-ouyang-7a732719b/"><i class="fab fa-linkedin"
aria-hidden="true"></i></a>
<a href="https://github.com/mouyang2001"><i class="fab fa-github" aria-hidden="true"></i></a>
</div>
</div> <!-- end s-hero__content-about -->
</div>
</div> <!-- s-hero__content -->
<div class="s-hero__scroll">
<a href="#about" class="s-hero__scroll-link smoothscroll">
<span class="scroll-arrow">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
style="fill:rgba(0, 0, 0, 1);">
<path
d="M18.707 12.707L17.293 11.293 13 15.586 13 6 11 6 11 15.586 6.707 11.293 5.293 12.707 12 19.414z">
</path>
</svg>
</span>
<span class="scroll-text">Scroll Down</span>
</a>
</div> <!-- s-hero__scroll -->
</section> <!-- end s-hero -->
<!-- about
================================================== -->
<section id="about" class="s-about target-section">
<div class="row">
<div class="column large-3 tab-12">
<img class="s-about__pic" src="images/avatars/matthew.jpg" alt="">
</div>
<div class="column large-9 tab-12 s-about__content">
<h3>About Me</h3>
<p>
I am a highly accomplished Software Engineering student with extensive experience in the
field. As I approach the
end of my final year, pursuing a Bachelor of Engineering degree from the prestigious University of
Auckland, I remain
driven by my long-standing ambition to work in the technology industry and make a positive impact on
people's lives.
With my impressive background, I am excited to connect with you and explore all the possibilities
that the future holds.
</p>
<hr>
<div class="row s-about__content-bottom">
<div class="column w-1000-stack">
<h3>Contact Details</h3>
<p>
Matthew Ouyang <br>
Auckland, New Zealand <br>
<span><a href="tel:+640223113644">(+64) 22 311 3644</a></span> <br>
<span><a href="mailto:mouyang2001@gmail.com">mouyang2001@gmail.com</a></span>
</p>
</div>
<div class="column w-1000-stack">
<a href="https://drive.google.com/file/d/181Nl4jZLjLAEz-suyVh2xmtHOIMiKOyu/view?usp=sharing"
class="btn btn--download">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
style="fill:rgba(0, 0, 0, 1);">
<path d="M12 16L16 11 13 11 13 4 11 4 11 11 8 11z"></path>
<path d="M20,18H4v-7H2v7c0,1.103,0.897,2,2,2h16c1.103,0,2-0.897,2-2v-7h-2V18z"></path>
</svg>
Download Résumé
</a>
</div>
</div>
</div>
</div> <!-- end row -->
</section> <!-- end s-about -->
<!-- resume
================================================== -->
<section id="resume" class="s-resume target-section">
<div class="row s-resume__section">
<div class="column large-3 tab-12">
<h3 class="section-header-allcaps">Career</h3>
</div>
<div class="column large-9 tab-12">
<div class="resume-block">
<div class="resume-block__header">
<h4 class="h3">Atlassian</h4>
<p class="resume-block__header-meta">
<span>Software Engineer Intern</span>
<span class="resume-block__header-date">
Nov 2022 - Feb 2023
</span>
</p>
</div>
<ul>
<li>Collaborated with the software team to design and implement a new Jira Service Management
virtual agent
configuration experience.
</li>
<li>
Delivered 10 diverse full-stack development tickets, including new feature creation, bug
fixes, and style changes.
</li>
<li>
Developed APIs for a SpringBoot microservice, contributing to developing a scalable and
efficient system.
</li>
<li>
Leveraged GraphQL Relay to integrate frontend with the backend, improving performance and
user experience.
</li>
</ul>
</div> <!-- end resume-block -->
<div class="resume-block">
<div class="resume-block__header">
<h4 class="h3">Aroaro Mixed Reality Labs</h4>
<p class="resume-block__header-meta">
<span>Software Engineer</span>
<span class="resume-block__header-date">
May 2022 - Nov 2022
</span>
</p>
</div>
<ul>
<li>
Collaborated effectively with the University Aroaro & Foodlab research and development
teams.
</li>
<li>
Developed dotnet microservices to manage nopcommerce instances and orchestrate with
Kubernetes.
</li>
<li>
Provided valuable assistance to researchers to ensure the timely delivery of software goals,
demonstrating a keen
eye for detail and excellent communication skills.
</li>
</ul>
</div> <!-- end resume-block -->
<div class="resume-block">
<div class="resume-block__header">
<h4 class="h3">Beca Group</h4>
<p class="resume-block__header-meta">
<span>Software Engineer Intern</span>
<span class="resume-block__header-date">
November 2021 - Feburary 2022
</span>
</p>
</div>
<ul>
<li>
Conducted extensive research on geospatial visualization technologies and hosting solutions,
aimed at aggregating
real-time IoT data from multiple sources, including EagleIO, Point Clouds, 3D
photogrammetry, and GIS layers, into
a single, comprehensive view.
</li>
<li>
Developed a React web app and Unreal Engine prototype, digital twin of Christchurch CBD,
aggregating IoT data
from multiple sources, using Cesium geospatial libraries and plugins.
</li>
<li>
Developed a backend system for serving 3D tiles, which will save thousands of dollars per
year in existing Cesium
Ion Cloud hosting costs.
</li>
</ul>
</div> <!-- end resume-block -->
<div class="resume-block">
<div class="resume-block__header">
<h4 class="h3">Auckland University Muay Thai Club</h4>
<p class="resume-block__header-meta">
<span>Fullstack Web Developer</span>
<span class="resume-block__header-date">
November 2021 - Feburary 2023
</span>
</p>
</div>
<ul>
<li>
Manage the club website, providing seamless access for over 200 member signups for weekly
training and events.
</li>
<li>
Designed and implemented serverless backend with Firebase functions, enabling administrators
to utilize the
Firebase authentication features and manage members from the frontend.
</li>
<li>
Expanded website to support summer school training program, resulting in an additional $900
in annual revenue.
</li>
<li>
Fix a critical signup exploit, preventing the loss of hundreds of dollars in membership
payments.
</li>
</ul>
</div> <!-- end resume-block -->
<div class="resume-block">
<div class="resume-block__header">
<h4 class="h3">Web Development Consulting Club</h4>
<p class="resume-block__header-meta">
<span>Frontend Web Developer</span>
<span class="resume-block__header-date">
April 2021 - October 2021
</span>
</p>
</div>
<ul>
<li>
Worked with a team of 9 to successfully patch software bugs and enhance the user experience
for Auckland Student Pool
Association club's online booking and payment application, resulting in a significant
increase in user satisfaction.
</li>
<li>
Delivered exceptional value to the club by building a highly requested QR check-in app
feature, reducing waiting times
and significantly improving the experience for over 100 members.
</li>
<li>
Demonstrated strong technical and analytical skills by integrating Google Analytics and Tag
Manager, enabling the
in-depth analysis of user interaction data to inform client management decisions and drive
the success of the
application.
</li>
</ul>
</div> <!-- end resume-block -->
<div class="resume-block">
<div class="resume-block__header">
<h4 class="h3">Mcdonalds</h4>
<p class="resume-block__header-meta">
<span>Crew Member</span>
<span class="resume-block__header-date">
December 2018 - Januaury 2020
</span>
</p>
</div>
<ul>
<li>
Received the Employee of the Month Award in January and February 2019 for consistently
exceeded monthly KPIs and
maintaining customer satisfaction ratings.
</li>
<li>
Due to outstanding performance and demonstrating strong leadership/hospitality skills, given
further responsibility for
managing the kitchen in an unsupervised capacity.
</li>
<li>
Developed and taught crew members new efficient methods of preparing food, which in turn led
to exceeding monthly KPI
targets.
</li>
</ul>
</div> <!-- end resume-block -->
</div>
</div> <!-- s-resume__section -->
<div class="row s-resume__section">
<div class="column large-3 tab-12">
<h3 class="section-header-allcaps">Education</h3>
</div>
<div class="column large-9 tab-12">
<div class="resume-block">
<div class="resume-block__header">
<h4 class="h3">University of Auckland</h4>
<p class="resume-block__header-meta">
<span></span>Bachelor of Engineering</span>
<span class="resume-block__header-date">
2020-2023
</span>
</p>
</div>
<h6>Academics</h6>
<ul>
<li>
GPA of A/A+ to date.
</li>
<li>
Dean's Honours List 2020
</li>
<li>
Certificate of Outstanding Achievement COMPSCI 373
</li>
</ul>
<h6>Competitions</h6>
<ul>
<li>
2nd Place DEVS x GDSC Hackathon 2023
</li>
<li>
SINZ Innovation Challenge Finalists 2022
</li>
<li>
1st Place DEVS Hackathon 2021
</li>
<li>
2nd Place Jarden Stock Pitch competition 2021
</li>
<li>
MCC Energy Case Competition Finalists 2021
</li>
<li>
NZ MYOB IT Competition Top 3 2020
</li>
</ul>
<h6>Leadership Roles</h6>
<ul>
<li>
Projects executive - Web Development & Consulting Club 2023
</li>
<li>
Executive member - Developers Society 2022 2023
</li>
<li>
Executive member - University Muay Thai Club 2022
</li>
<li>
University Guide 2021
</li>
</ul>
</div> <!-- end resume-block -->
<div class="resume-block">
<div class="resume-block__header">
<h4 class="h3">Lynfield College</h4>
<p class="resume-block__header-meta">
<span>Highschool</span>
<span class="resume-block__header-date">
2014-2019
</span>
</p>
</div>
<h6>Achievements</h6>
<ul>
<li>
NCEA Levels 1,2,3 with Excellent Endorsement
</li>
<li>
NCEA Physics Scholarship 2019
</li>
<li>
2nd place Auckland Regional Dragon Boating 2018
</li>
<li>
3rd place Junior National Curling NZ 2018
</li>
<li>
Academic Honours 2017
</li>
</ul>
</div> <!-- end resume-block -->
</div>
</div> <!-- s-resume__section -->
<div class="row s-resume__section">
<div class="column large-3 tab-12">
<h3 class="section-header-allcaps">Skills</h3>
</div>
<div class="column large-9 tab-12">
<div class="resume-block">
<h4 class="h3">Core Languages</h4>
<ul>
<li>Java</li>
<li>Python</li>
<li>Javascript/Typescript</li>
<li>SQL</li>
</ul>
<h4 class="h3">Technologies</h4>
<ul>
<li>ReactJS, ExpressJS, Dotnet, JavaFX, SpringBoot</li>
<li>Firebase, MongoDB, MySQL</li>
</ul>
</div> <!-- end resume-block -->
</div>
</div> <!-- s-resume__section -->
</section> <!-- end s-resume -->
<!-- portfolio
================================================== -->
<section id="portfolio" class="s-portfolio target-section">
<div class="row s-portfolio__header">
<div class="column large-12">
<h3>Project Showcase</h3>
</div>
</div>
<div class="row collapse block-large-1-4 block-medium-1-3 block-tab-1-2 block-500-stack folio-list">
<div class="column folio-item">
<a href="#modal-01" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-aspa.jpg" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-02" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-clique.jpg" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-03" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-developets.png" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-04" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-jotter.jpg" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-05" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-traffic.jpg" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-06" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-genie.png" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-07" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-aumt.png" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-08" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-kemukupu.png" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-09" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-carbontip.png" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-10" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-imageprocess.png" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-11" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-gourmet-gallery.png" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-12" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-scheduler.png" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-13" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-scalemate.png" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-14" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-promptverse.png" alt="">
</a>
</div> <!-- end folio-item -->
<div class="column folio-item">
<a href="#modal-15" class="folio-item__thumb">
<img src="images/portfolio/gallery/g-sapling.png" alt="">
</a>
</div> <!-- end folio-item -->
</div> <!-- end folio-list -->
<!-- Modal Templates Popup
=========================================================== -->
<div id="modal-01" hidden>
<div class="modal-popup">
<img src="images/portfolio/aspa.jpg" alt="" />
<div class="modal-popup__desc">
<h5>ASPA Enrollment Form</h5>
<p>
This is a WDCC backed project aimed at providing ASPA (Auckland Students Pool Association) with
an integrated event
registration system that supports automated emails, online payments and other great features.
</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/UoaWDCC/ASPA-EnrollmentForm">Github</a></li>
<li><a href="https://aspa.wdcc.co.nz/">Live</a></li>
<li><a href="https://test-aspa.wdcc.co.nz/">Test</a></li>
</ul>
</div>
<!-- <a href="#" class="modal-popup__details">Project link</a> -->
</div>
</div> <!-- end modal -->
<div id="modal-02" hidden>
<div class="modal-popup">
<img src="images/portfolio/clique.jpg" alt="" />
<div class="modal-popup__desc">
<h5>Clique</h5>
<p>
Android messaging app using Android native SDK and firebase client-side library to manage data.
Can take photos and share them with friends. Add friends via a search screen. Animated
scrolling.
</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/mouyang2001/Clique">Github</a></li>
</ul>
</div>
</div>
</div> <!-- end modal -->
<div id="modal-03" hidden>
<div class="modal-popup">
<img src="images/portfolio/developets.png" alt="" />
<div class="modal-popup__desc">
<h5>Developets</h5>
<p>
Developets is a DEVS – Developers Society 48 Hour Hackathon project. Dev teams can collectively
own a virtual pet that's affected by the project quality based on your team's
code quality. Developets won 1st place, a Centrality.ai special prize and was also awarded best
technical implementation.
</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/Ray-F/developets">Github</a></li>
<li><a href="https://developets-client.herokuapp.com/">Demo</a> - Hosted on Heroku so might take
time to startup</li>
</ul>
</div>
</div>
</div> <!-- end modal -->
<div id="modal-04" hidden>
<div class="modal-popup">
<img src="images/portfolio/jotter.jpg" alt="" />
<div class="modal-popup__desc">
<h5>Jotter</h5>
<p>Note sharing social media web application. With a 'twitter feel' user interface. Wanted to try
building a fullstack social media web application as a side project for fun.</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/mouyang2001/jotter">Github</a></li>
<li><a href="https://jotter-8af9d.web.app/">Website</a></li>
</ul>
</div>
</div>
</div> <!-- end modal -->
<div id="modal-05" hidden>
<div class="modal-popup">
<img src="images/portfolio/traffic.jpg" alt="" />
<div class="modal-popup__desc">
<h5>Traffic Jam C</h5>
<p>Traffic jam game that can be played within the console. Written in pure C for end of course
introduction to programming project.</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/mouyang2001/enggen131-C">Github</a></li>
<li><a href="https://onlinegdb.com/HJT5U_DGO">Demo</a></li>
</ul>
</div>
</div>
</div> <!-- end modal -->
<div id="modal-06" hidden>
<div class="modal-popup">
<img src="images/portfolio/genie.png" alt="" />
<div class="modal-popup__desc">
<h5>Genie</h5>
<p>MYOB IT Case Competition 2020. AI lead generation and client automation prototype for small
businesses. Awarded Top 3 in New Zealand.</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/Ray-F/Genie">Github</a></li>
<li><a href="https://genie-app-digital.herokuapp.com/">Demo</a> - Hosted on Heroku so might take
time to startup</li>
</ul>
</div>
</div>
</div> <!-- end modal -->
<div id="modal-07" hidden>
<div class="modal-popup">
<img src="images/portfolio/aumt.png" alt="" />
<div class="modal-popup__desc">
<h5>AUMT Club Website</h5>
<p>Enables members to sign up for weekly training events and register for social events. Admin
feature allows
AUMT executives to create events and manage members.
</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/aumuaythai/aumt-website-frontend">Github</a></li>
<li><a href="https://aumt.co.nz/">Website</a></li>
</ul>
</div>
</div>
</div> <!-- end modal -->
<div id="modal-08" hidden>
<div class="modal-popup">
<img src="images/portfolio/kemukupu.png" alt="" />
<div class="modal-popup__desc">
<h5>Kēmu Kupu</h5>
<p>2nd Year University Project, JavaFX Linux application. A spelling quiz game to help people learn
and to spell Te Reo Māori.
Utilizes the University of Auckland's enhanced Festival TTS system with state of the art Māori
speech synthesis.</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/mouyang2001/kemu-kupu">Github</a></li>
</ul>
</div>
</div>
</div> <!-- end modal -->
<div id="modal-09" hidden>
<div class="modal-popup">
<img src="images/portfolio/carbontip.png" alt="" />
<div class="modal-popup__desc">
<h5>Carbon Tiptoe!</h5>
<p>High fidelity prototype assignment for SOFTENG 350 course. I was tasked with developing a website
for a
conservation
and sutainability business called “Carbon Tiptoe!”. The website is a platform for users to
signup to
calculate their carbon footprint.
Built using HTML, CSS and Javascript</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/mouyang2001/SOFTENG-350-Assignment">Github</a></li>
<li><a href="https://mouyang2001.github.io/SOFTENG-350-Assignment/">Prototype</a></li>
</ul>
</div>
</div>
</div> <!-- end modal -->
<div id="modal-10" hidden>
<div class="modal-popup">
<img src="images/portfolio/imageprocess.png" alt="" />
<div class="modal-popup__desc">
<h5>License Plate Detection</h5>
<p>Image processing assignment for the course COMSCI 373. The aim of this project is to detect the
bounding box
around the license plate in an image of a car. Extension script includes the ability to
extract the characters of the license plate using an OCR algorithm.</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/mouyang2001/CS373-Assignment">Github</a></li>
</ul>
</div>
</div>
</div> <!-- end modal -->
<div id="modal-11" hidden>
<div class="modal-popup">
<img src="images/portfolio/gourmet-gallery.png" alt="" />
<div class="modal-popup__desc">
<h5>Gourmet Galleries</h5>
<p>
Android application for browsing expensive artworks. SOFTENG 306 Android development project.
Worked in team of 3.
I was responsible for implementing dependency injection, data modeling and uploading sample data
to firebase cloud firestore.
Created with Java Android SDK using Android studio.
</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/se306-2022/project-1-java-team3">Github</a></li>
</ul>
</div>
</div>
</div> <!-- end modal -->
<div id="modal-12" hidden>
<div class="modal-popup">
<img src="images/portfolio/scheduler.png" alt="" />
<div class="modal-popup__desc">
<h5>Task Scheduling</h5>
<p>
JavaFX application that provides a visual representation of a task scheduling algorithm. SOFTENG
306 Project 2 team of 6.
I was responsible for implementing the branch & bound algorithm and pruning optimization
techniques. I also paralellized the
dfs search process by utilizing Java multi-threading API. Created with JavaFX and Java 11.
</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/se306-2022/project-2-team-2">Github</a></li>
</ul>
</div>
</div>
</div> <!-- end modal -->
<div id="modal-13" hidden>
<div class="modal-popup">
<img src="images/portfolio/scalemate.png" alt="" />
<div class="modal-popup__desc">
<h5>Scalemate</h5>
<p>
Developed a comprehensive prototype for a smart animal scale system, featuring real-time
precise measurements, live
messaging, notification alerts, and an automated email dispatch system.
</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/The-University-of-Auckland/capstone-project-team-11">Github</a>
</li>
<li>
<a href="https://scalemate.dog/">Prototype</a>
</li>
</ul>
</div>
</div>
</div> <!-- end modal -->
<div id="modal-14" hidden>
<div class="modal-popup">
<img src="images/portfolio/promptverse.png" alt="" />
<div class="modal-popup__desc">
<h5>Promptverse</h5>
<p>
Promptverse is a dynamic AI prompt marketplace and social platform, empowering a new wave of
prompt artists to create,
share, and monetize their AI artworks. We use the OpenAI API to generate artworks.
I was repsonsible for backend development, overall design and tehnical guidance.
</p>
<ul class="modal-popup__cat">
<li><a
href="https://github.com/UOA-CS732-SE750-Students-2023/project-group-xenogenic-xolos">Github</a>
</li>
<li>
<a href="https://promptverse.up.railway.app/">
Promptverse
</a>
</li>
</ul>
</div>
</div>
</div> <!-- end modal -->
<div id="modal-15" hidden>
<div class="modal-popup">
<img src="images/portfolio/sapling.png" alt="" />
<div class="modal-popup__desc">
<h5>Sapling</h5>
<p>
DEVSxGDSC Hacakthon Team WDCC 2nd Place. Sapling is a groundbreaking coworker matching
application designed to enrich workplace environments and foster
healthier, happier employees. Our platform cultivates a more connected, engaged, and productive
workforce by encouraging
workers to step outside for a break and bond over shared interests.
</p>
<ul class="modal-popup__cat">
<li><a href="https://github.com/lukisoo/sprout">Github</a>
</li>
</ul>
</div>
</div>
</div> <!-- end modal -->
</section> <!-- end s-portfolio -->
<!-- contact
================================================== -->
<section id="contact" class="s-contact target-section">
<div class="row s-contact__header">
<div class="column large-12">
<h3 class="section-header-allcaps">Greetings</h3>
</div>
</div>
<div class="row s-contact__content">
<div class="column large-7 medium-12">
<h4 class="huge-text">
Looking forward to working with you.
</h4>
</div>
<div class="column large-4 medium-12">
<div class="row contact-infos">
<div class="column large-12 medium-6 tab-12">
<div class="contact-block">
<h5 class="contact-block__header">
Email
</h5>
<p class="contact-block__content">
<a class="mailtoui" href="mailto:mouyang2001@gmail.com">mouyang2001@gmail.com</a>
</p>
</div> <!-- end contact-block -->
</div>
<div class="column large-12 medium-6 tab-12">
<div class="contact-block">
<h5 class="contact-block__header">
Phone
</h5>
<p class="contact-block__content">
<a href="tel:+1975432345">(+64) 22 311 3644</a>
</p>
</div> <!-- end contact-block -->
</div>
<div class="column large-12">
<a href="mailto:mouyang2001@gmail.com" class="mailtoui btn btn--primary h-full-width">Send an
email</a>
</div>
</div> <!-- end contact-infos -->
</div>
</div> <!-- s-contact__content -->
</section> <!-- end s-contact -->
<!-- footer
================================================== -->
<footer class="s-footer">
<div class="row">
<div class="column large-4 medium-6 w-1000-stack s-footer__social-block">
<ul class="s-footer__social">