-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
984 lines (903 loc) · 41.3 KB
/
resume.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
<!DOCTYPE html>
<html>
<title>Resume</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/solid.min.css"
integrity="sha512-tk4nGrLxft4l30r9ETuejLU0a3d7LwMzj0eXjzc16JQj+5U1IeVoCuGLObRDc3+eQMUcEQY1RIDPGvuA7SNQ2w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://raw.githubusercontent.com/km594/krispinmoutia/master/styles.css">
<!-- Import the component -->
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.25.0/components/prism-powerquery.min.js"
integrity="sha512-uq1mDYkZ8vbtBEBIoIwYUBBCoOPeQgE+KQ9EWdJ4rC52qteO2+h96q6BT9aADviiaVFbtghqyRlEjWlHDANf2w=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script> -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.20.0/themes/prism-okaidia.min.css">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/prismjs@1.20.0/plugins/line-numbers/prism-line-numbers.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300&family=Ubuntu:wght@300&display=swap"
rel="stylesheet">
<style>
.scaled {
transform: scale(1);
transition: scale 0.3s;
}
.scaled:hover {
transform: scale(1.25);
}
.sidebar {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
/* padding-top: 60px; */
color: white;
}
.sidebar a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
.sidebar a:hover {
color: #f1f1f1;
}
.sidebar .closebtn {
z-index: 10;
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
#sidebar-overlay {
top: 0;
height: 100vh;
width: 100vw;
z-index: 0;
background: black;
position: absolute;
opacity: 0.4;
}
.openbtn {
font-size: 20px;
cursor: pointer;
background-color: #111;
color: white;
padding: 10px 15px;
border: none;
}
.openbtn:hover {
background-color: #444;
}
#main {
transition: margin-left .5s;
padding: 16px;
}
#topnav {
transition: top 0.3s;
}
#hamburger-menu {
position: fixed;
width: 100%;
z-index: 1;
transition: top 0.3s;
}
/* .mobile-nav {
display: none !important;
} */
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidebar {
padding-top: 15px;
}
.sidebar a {
font-size: 18px;
}
/* .mobile-nav {
display: inline-block !important;
} */
}
/* @media screen and (max-width: 600px) {
.mobile-hide {
display: none;
}
} */
/* Add a black background color to the top navigation */
.topnav {
background-color: #333;
overflow: hidden;
position: fixed;
transition: top 0.3s;
/* Transition effect when sliding down (and up) */
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Add an active class to highlight the current page */
.active {
background-color: #04AA6D;
color: white;
}
/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
display: none;
}
/* Dropdown container - needed to position the dropdown content */
.dropdown {
float: left;
overflow: hidden;
}
/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
font-size: 17px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
/* Style the dropdown content (hidden by default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
/* Style the links inside the dropdown */
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover,
.dropdown:hover .dropbtn {
background-color: #555;
color: white;
}
/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
color: black;
}
/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
display: block;
}
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
.topnav a:not(:first-child),
.dropdown .dropbtn {
display: none;
}
.topnav a.icon {
float: right;
display: block;
}
}
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
.topnav.responsive {
position: relative;
}
.topnav.responsive a.icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
.topnav.responsive .dropdown {
float: none;
}
.topnav.responsive .dropdown-content {
position: relative;
}
.topnav.responsive .dropdown .dropbtn {
display: block;
width: 100%;
text-align: left;
}
}
.dev-show {
/* display: block !important; */
}
.dev-hide {
/* display: none; */
}
.dark-mode {
background-color: #333;
color: white;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Ubuntu", sans-serif
}
code[class*="language-"],
pre[class*="language-"] {
/* white-space: normal !important; */
word-break: break-word !important;
}
.slideUp {
animation-name: slideUp;
-webkit-animation-name: slideUp;
animation-duration: 1s;
-webkit-animation-duration: 1s;
visibility: visible;
}
@keyframes slideUp {
0% {
opacity: 0;
-webkit-transform: translateY(70%);
}
100% {
opacity: 1;
-webkit-transform: translateY(0%);
}
}
@-webkit-keyframes slideUp {
0% {
opacity: 0;
-webkit-transform: translateY(70%);
}
100% {
opacity: 1;
-webkit-transform: translateY(0%);
}
}
#profile-pic {
opacity: 0.5;
}
#navbar {
background-color: #333;
position: fixed;
top: 0;
width: 100%;
display: block;
transition: top 0.3s;
}
#navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 15px;
text-decoration: none;
font-size: 17px;
}
#navbar a:hover {
background-color: #ddd;
color: black;
}
/* Create the background for the splash */
.full-page-splash.backdrop {
background-color: black;
color: white;
/* z-index: 99999; */
height: 100vh;
width: 100vw;
}
/* .full-page-splash{
top: 60px;
} */
.start-btn {
height: calc(100vh/3);
}
.start-banner {
height: calc(100vh/3);
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://raw.githubusercontent.com/km594/krispinmoutia/master/pics/logo-2530x2530.png");
background-color: black;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
position: relative;
font-size: larger;
}
.text-wrap {
word-wrap: break-word;
white-space: normal;
/* flex-wrap: wrap; */
}
.full-width {
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
}
div.w3-sticky {
position: -webkit-sticky;
/* Safari */
position: sticky;
top: 0;
height: 0;
z-index: 1;
}
.w3-circle {
/* height: 25px;
width: 25px; */
background-color: #bbb;
border-radius: 50%;
/* display: inline-block; */
}
.centre-vert {
display: flex;
justify-content: center;
flex-direction: column;
}
</style>
<script>
var dev = false;
</script>
<body class="w3-light-grey">
<!-- Navbar (sit on top) -->
<div id="topnav" class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding w3-card">
<a href="https://km594.github.io/krispinmoutia/" class="w3-bar-item w3-button"><b>KM</b></a>
<!-- Float links to the right. Hide them on small screens -->
<a href="javascript:void(0);"
class="w3-bar-item w3-right w3-button icon w3-hide-large w3-hide-medium w3-show-small"
onclick="toggleShow('hamburger-menu');">☰</a>
<div id="navbar-items" class="w3-right w3-hide-small">
<a href="https://km594.github.io/krispinmoutia/#about" class="w3-bar-item w3-button">About me</a>
<a href="https://km594.github.io/krispinmoutia/#projects" class="w3-bar-item w3-button">Projects</a>
<a href="https://km594.github.io/krispinmoutia/#work" class="w3-bar-item w3-button">Work</a>
<a href="https://km594.github.io/krispinmoutia/resume.html" class="w3-bar-item w3-button">CV</a>
<!-- <a href="https://krispinm.w3spaces.com/resume" class="w3-bar-item w3-button">CV</a> -->
<!-- add flip transition to resume page? -->
</div>
</div>
<div id="hamburger-menu" class="w3-bar-block w3-hide w3-hide-medium w3-hide-large w3-white w3-card-4">
<ul class="w3-ul w3-hoverable">
<li><a href="https://km594.github.io/krispinmoutia" class="w3-bar-item w3-button" onclick="toggleShow('hamburger-menu')">Home</a></li>
<li><a href="https://km594.github.io/krispinmoutia/#about" class="w3-bar-item w3-button" onclick="toggleShow('hamburger-menu')">About me</a>
</li>
<li><a href="https://km594.github.io/krispinmoutia/#projects" class="w3-bar-item w3-button"
onclick="toggleShow('hamburger-menu')">Projects</a></li>
<li><a href="https://km594.github.io/krispinmoutia/#work" class="w3-bar-item w3-button" onclick="toggleShow('hamburger-menu')">Work</a></li>
</li>
<li><a href="https://km594.github.io/krispinmoutia/resume.html" class="w3-bar-item w3-button"
onclick="toggleShow('hamburger-menu')">CV</a></li>
</ul>
</div>
</div>
<!-- Sticky summary button -->
<div id="summary-button" class="w3-sticky w3-right" style="top: 50px;">
<!-- <button class="w3-btn w3-green w3-circle w3-padding-16 w3-margin"><i class="fas fa-id-card"></i></button> -->
<!-- <button class="w3-btn w3-red w3-circle w3-padding-16 w3-display-topright"><i class="fas fa-id-card"></i></button> -->
<button class="w3-circle w3-button w3-indigo w3-margin w3-xlarge w3-padding-16"
onclick="toggleSidebar();toggleShow('sidebar-overlay')" title="Summary"><i class="fas fa-id-card"></i></button>
</div>
<!-- Navbar -->
<div id="navbar" class="w3-top w3-margin-bottom topnav w3-hide">
<div class="w3-bar w3-grey">
<a href="javascript:void(0)" class="w3-bar-item w3-button w3-mobile w3-indigo" style="width:33%">Home</a>
<a href="javascript:void(0)" onmouseover="this.innerHTML = 'Coming soon!'"
onmouseout="this.innerHTML = 'Analytics'" class="w3-bar-item w3-button w3-mobile"
style="width:33%">Analytics</a>
<a href="javascript:void(0)" onmouseover="this.innerHTML = 'Coming soon!'"
onmouseout="this.innerHTML = 'Engineering'" class="w3-bar-item w3-button w3-mobile"
style="width:33%">Engineering</a>
</div>
</div>
<!-- Page Container -->
<div id="sidebar-overlay" class="w3-hide">
<span> </span>
</div>
<div id="mySidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeSidebar()">✖</a>
<div id="info-panel" class="">
<!-- <div id="info-panel" class="w3-third"> -->
<div class="w3-white w3-text-grey w3-card-4">
<div class="w3-display-container">
<div class="dev-show" style="background-color: black">
<img id="profile-pic"
src="https://raw.githubusercontent.com/km594/krispinmoutia/master/pics/profile_pic.jpg"
style="width:100%" alt="Avatar">
</div>
<!-- <caption class="w3-center">
Krispin Moutia
</caption> -->
<div class="w3-display-bottommiddle w3-container w3-text-white w3-indigo w3-block w3-center"
style="position:inherit !important;">
<h3 style="white-space: nowrap">Krispin Moutia</h3>
</div>
</div>
<div class="w3-container">
<p><i class="fa fa-briefcase fa-fw w3-margin-right w3-large w3-text-indigo"></i>Data Analyst |
Engineer | Developer</p>
<p><i class="fa fa-home fa-fw w3-margin-right w3-large w3-text-indigo"></i>Sydney, NSW</p>
<p><i class="fa fa-envelope fa-fw w3-margin-right w3-large w3-text-indigo"></i>kmoutia594@gmail.com
</p>
<!-- <p><i class="fa fa-phone fa-fw w3-margin-right w3-large w3-text-indigo"></i>1224435534</p> -->
<hr>
<p class="w3-large"><b><i class="fa fa-asterisk fa-fw w3-margin-right w3-text-indigo"></i>Skills</b>
</p>
<div style="overflow-y: auto">
<p>Mechanical Engineering</p>
<div class="w3-light-grey w3-round-xlarge w3-small">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:90%">
</div>
</div>
<p>Data Analytics</p>
<div class="w3-light-grey w3-round-xlarge w3-small">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:90%">
<div class="w3-center w3-text-white"> </div>
</div>
</div>
<p>Quality Engineering</p>
<div class="w3-light-grey w3-round-xlarge w3-small">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:85%">
</div>
</div>
<p>Web Development</p>
<div class="w3-light-grey w3-round-xlarge w3-small">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:75%">
</div>
</div>
</div>
<br>
<p class="w3-large w3-text-theme">
<b><i class="fa fa-code fa-fw w3-margin-right w3-text-indigo"></i>Languages</b>
</p>
<div>
<!-- <div style="max-height: 30vh; overflow-y: auto"> -->
<p>Python</p>
<div class="w3-light-grey w3-round-xlarge w3-small w3-margin-right">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:100%">
</div>
</div>
<!-- <div class="w3-light-grey w3-round-xlarge w3-small">
<div class="w3-round-xlarge w3-indigo" style="height:24px;width:100%"></div>
</div> -->
<p>Power Query M</p>
<div class="w3-light-grey w3-round-xlarge w3-small w3-margin-right">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:90%">
</div>
</div>
<!-- <div class="w3-light-grey w3-round-xlarge">
<div class="w3-round-xlarge w3-indigo" style="height:24px;width:90%"></div>
</div> -->
<p>DAX</p>
<div class="w3-light-grey w3-round-xlarge w3-small w3-margin-right">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:80%">
</div>
</div>
<!-- <div class="w3-light-grey w3-round-xlarge">
<div class="w3-round-xlarge w3-indigo" style="height:24px;width:80%"></div>
</div> -->
<p>VBA</p>
<div class="w3-light-grey w3-round-xlarge w3-small w3-margin-right">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:80%">
</div>
</div>
<!-- <div class="w3-light-grey w3-round-xlarge">
<div class="w3-round-xlarge w3-indigo" style="height:24px;width:80%"></div>
</div> -->
<p>MATLAB</p>
<div class="w3-light-grey w3-round-xlarge w3-small w3-margin-right">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:80%">
</div>
</div>
<!-- <div class="w3-light-grey w3-round-xlarge">
<div class="w3-round-xlarge w3-indigo" style="height:24px;width:80%"></div>
</div> -->
<p>JavaScript/TypeScript</p>
<div class="w3-light-grey w3-round-xlarge w3-small w3-margin-right">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:70%">
</div>
</div>
<!-- <div class="w3-light-grey w3-round-xlarge">
<div class="w3-round-xlarge w3-indigo" style="height:24px;width:70%"></div>
</div> -->
<br>
</div>
</div>
</div>
<!-- End Left Column -->
</div>
</div>
<!-- Add w3-hide to main-content -->
<div id="main-content" class="w3-content w3-margin-top w3-mobile"
style="max-width:1400px; margin-top: 60px!important;">
<!-- The Grid -->
<div class="w3-row-padding">
<!-- Right Column -->
<div id="content-panel" class="">
<div class="w3-container w3-card w3-white w3-margin-bottom">
<h2 class="w3-text-grey w3-padding-16">
<i class="fa fa-suitcase fa-fw w3-margin-right w3-xxlarge w3-text-indigo"></i>Work Experience
</h2>
<div class="w3-container">
<h5 class="w3-opacity"><b>Mechanical Engineer | PROK</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>May 2022 - Present
</h6>
<h6>
<button onclick="toggleShow('job0')" class="w3-button w3-light-grey w3-block w3-left-align w3-hover-text-white">
Work description:
</button>
</h6>
<div id="job0" class="w3-hide w3-card dev-show">
<ul class="w3-ul ">
<li class="">
<button class="w3-button w3-white w3-block w3-left-align"
onclick="toggleShow('work-0-0')">
Product Design
<!-- <a href="javascript:void(0)" onclick="toggleShow('work-0-0')">Quality improvement</a> -->
</button>
<div id="work-0-0" class="w3-hide dev-show w3-light-gray">
<ul class="w3-ul">
<li class="w3-hover-grey w3-hover-text-white">Finite element analysis (FEA)</li>
<li class="w3-hover-grey w3-hover-text-white">Design for manufacture</li>
<li class="w3-hover-grey w3-hover-text-white">Product improvement</li>
</ul>
</div>
</li>
<li class="">
<button class="w3-button w3-white w3-block w3-left-align"
onclick="toggleShow('work-0-1')">Failure analysis</button>
<div id="work-0-1" class="w3-hide dev-show w3-light-gray">
<ul class="w3-ul">
<li class="w3-hover-grey w3-hover-text-white">Troubleshooting</li>
<li class="w3-hover-grey w3-hover-text-white">Testing</li>
<li class="w3-hover-grey w3-hover-text-white">Reporting</li>
</ul>
</div>
</li>
<li class="">
<button class="w3-button w3-white w3-block w3-left-align"
onclick="toggleShow('work-0-2')">Project management</button>
<div id="work-0-2" class="w3-hide dev-show w3-light-gray">
<ul class="w3-ul">
<li class="w3-hover-grey w3-hover-text-white">Progress reporting</li>
<li class="w3-hover-grey w3-hover-text-white">Drawing management</li>
</ul>
</div>
</li>
</ul>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>Junior Quality Engineer | King Living</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Jun 2020 - Dec
2021
</h6>
<h6>
<button onclick="toggleShow('job1')" class="w3-button w3-light-grey w3-block w3-left-align w3-hover-text-white">
Work description:
</button>
</h6>
<div id="job1" class="w3-hide w3-card dev-show">
<ul class="w3-ul ">
<li class="">
<button class="w3-button w3-white w3-block w3-left-align"
onclick="toggleShow('work-0-0')">
Quality Improvement
<!-- <a href="javascript:void(0)" onclick="toggleShow('work-0-0')">Quality improvement</a> -->
</button>
<div id="work-0-0" class="w3-hide dev-show">
<ul class="w3-ul">
<li class="w3-hover-light-grey">Consumer data analysis</li>
<li class="w3-hover-light-grey">Troubleshooting</li>
<li class="w3-hover-light-grey">Process improvement</li>
</ul>
</div>
</li>
<li class="">
<button class="w3-button w3-white w3-block w3-left-align"
onclick="toggleShow('work-0-1')">Product design</button>
</li>
<li class="">
<button class="w3-button w3-white w3-block w3-left-align"
onclick="toggleShow('work-0-2')">Process design</button>
</li>
<li class="">
<button class="w3-button w3-white w3-block w3-left-align"
onclick="toggleShow('work-0-3')">Factory planning</button>
</li>
<li class="">
<button class="w3-button w3-white w3-block w3-left-align"
onclick="toggleShow('work-0-4')">Project management</button>
</li>
<li class="">
<button class="w3-button w3-white w3-block w3-left-align"
onclick="toggleShow('work-0-5')">Business intelligence & reporting</button>
</li>
<li class="">
<button class="w3-button w3-white w3-block w3-left-align"
onclick="toggleShow('work-0-6')">Report development (Python/Power
BI/SAP)</button>
</li>
<li class="">
<button class="w3-button w3-white w3-block w3-left-align"
onclick="toggleShow('work-0-7')">Web development</button>
</li>
<li class="">
<button class="w3-button w3-white w3-block w3-left-align"
onclick="toggleShow('work-0-8')">Machine learning</button>
</li>
</ul>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>Data Analyst | Gandangara Health Services</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Apr 2020
(Contract)</h6>
<h6>
<button onclick="toggleShow('job2')" class="w3-button w3-light-grey w3-block w3-left-align w3-hover-text-white">
Work description:
</button>
</h6>
<div id="job2" class="w3-hide dev-show">
<ul class="w3-ul w3-hoverable w3-card">
<li>Reporting & analytics</li>
</ul>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>Mechanical Engineering Intern | Boral Cement</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i> Dec 2018 - Mar
2019</h6>
<h6>
<button onclick="toggleShow('job3')" class="w3-button w3-light-grey w3-block w3-left-align w3-hover-text-white">
Work description:
</button>
</h6>
<div id="job3" class="w3-hide dev-show">
<ul class="w3-ul w3-card">
<li>Mechanical engineering</li>
<li>Project management</li>
</ul>
</div>
<br>
</div>
</div>
<div class="w3-container w3-card w3-white w3-margin-bottom">
<h2 class="w3-text-grey w3-padding-16">
<i class="fa fa-certificate fa-fw w3-margin-right w3-xxlarge w3-text-indigo"></i>Education
</h2>
<div class="w3-container">
<h5 class="w3-opacity"><i class="fa fa-university fa-fw w3-margin-right"></i>
<b>University of Wollongong</b>
</h5>
<h6 class="w3-text-indigo">
<i class="fa fa-calendar fa-fw w3-margin-right"></i>Graduated 2019
</h6>
<button onclick="toggleShow('uni')"
class="w3-button w3-light-grey w3-block w3-left-align text-wrap">
Bachelor Mechanical Engineering / Bachelor of Mathematics</button>
<div id="uni" class="w3-hide w3-border">
<ul class="w3-ul w3-hoverable">
<li><a href="javascript:void(0)" onclick="toggleShow('uni-certs')">Certificates</a>
<div id="uni-certs" class="w3-hide">
<ul class="w3-ul ">
<img src="https://krispinm.w3spaces.com/BMath_Testamur.jpg"
style="width:100%;">
<hr>
<img src="https://krispinm.w3spaces.com/BE_Testamur.jpg"
style="width:100%;">
</ul>
</div>
</li>
</ul>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><i class="fa fa-university fa-fw w3-margin-right"></i><b>Short
Courses/Certificates</b></h5>
<h6 class="w3-text-indigo">
<button onclick="toggleShow('courses1')"
class="w3-button w3-light-grey w3-block w3-left-align">
Udemy
</button>
</h6>
<div id="courses1" class="w3-hide w3-card">
<ul class="w3-ul w3-hoverable">
<li><a
href="https://www.udemy.com/share/101qYw3@DErRY6vwxH1xu_rbcvy0sPk_DNWztECVymsWe1fkJfQMplrT87gulDncHvdy6xpu/">The
Complete Web Developer Bootcamp</a></li>
<li><a
href="https://www.udemy.com/share/101Yp63@O47toeVT7rovB0hYAo4VChU1i-CuSQ9VE_IBpxK1uRPMpyHffklkUs-RFb7QFr34/">Modern
Javascript from the Beginning</a></li>
<li><a
href="https://www.udemy.com/share/101WfW3@wDykQILIKfTClJZSPMD22xsRnwZ658hwJmKl42ZlKFc3MbmiiLoxiZ_C4iEOCOTB/">Machine
Learning A-Z</a></li>
<li><a
href="https://www.udemy.com/share/101Wac3@yhqIOxMT5fyZZAkr_xziKDMQgfUq9uzFduQqlxsNwvK2Fk_UVP9Oq9UlQ5I2FYqT/">Learn
Python Programming Masterclass</a></li>
<li><a
href="https://www.udemy.com/share/101WeW3@yRsxYpIVFfRv9Gw4Dd5Sm74Z2la04JgGJsJSGyXl9x0ndRJPHZp3o3ABKwSpcwth/">Automate
the Boring Stuff with Python</a></li>
<li><a
href="https://www.udemy.com/share/101Wn03@glr6d0AR27ExoNzlSn1tYljcp5S_78r5yLmrYl84xsMK5L6-mf15o7t7Tq0X9slU/">Java
Programming Masterclass</a></li>
<li><a
href="https://www.udemy.com/share/101WsU3@sRDqF3E52o4chGQ33ZDZhixPp6GtLFBECen2CyRxLo2sFHRW12xFb5gPo3dxYmFi/">The
Complete SQL Bootcamp</a></li>
</ul>
</div>
<hr>
</div>
</div>
<!-- End Right Column -->
</div>
<!-- End Grid -->
</div>
<!-- End Page Container -->
</div>
<script>
// toggles display of elements selected by id
function toggleShow(id) {
var x = document.getElementById(id);
// TODO: check display state
// show
if (!x.classList.contains("w3-show")) {
x.classList.add("w3-show");
if (x.classList.contains("w3-hide")) {
x.classList.remove("w3-hide");
}
} else {
//hide
if (x.classList.contains("w3-show")) {
x.classList.remove("w3-show");
}
if (id == "hamburger-menu") {
setTimeout(() => { x.classList.add("w3-hide"); }, 300);
} else {
x.classList.add("w3-hide");
}
}
setMenuPos();
}
function setMenuPos() {
const hamburgerMenu = document.getElementById('hamburger-menu');
const topnav = document.getElementById('topnav');
if (hamburgerMenu.classList.contains("w3-show")) {
hamburgerMenu.style.top = topnav.offsetHeight.toString() + 'px'
} else {
hamburgerMenu.style.top = '-600px';
}
}
function toggleSidebar() {
var sidebar = document.getElementById("mySidebar");
var mainContent = document.getElementById("main");
// check for screen width
if (window.innerWidth > 1000) {
// check for sidebar state
if (sidebar.style.width === "0px" || sidebar.style.width === "") {
sidebar.style.width = "33%";
mainContent.style.marginLeft = "33%";
} else {
sidebar.style.width = "0";
mainContent.style.marginLeft = "0";
}
} else if (window.innerWidth > 600) {
if (sidebar.style.width === "0px" || sidebar.style.width === "") {
sidebar.style.width = "50%";
mainContent.style.marginLeft = "50%";
} else {
sidebar.style.width = "0";
mainContent.style.marginLeft = "0";
}
} else {
if (sidebar.style.width === "0px" || sidebar.style.width === "") {
sidebar.style.width = "100%";
mainContent.style.marginLeft = "100%";
} else {
sidebar.style.width = "0";
mainContent.style.marginLeft = "0";
}
}
}
function closeSidebar() {
document.getElementById("mySidebar").style.width = "0";
document.getElementById("main").style.marginLeft = "0";
toggleShow("sidebar-overlay");
}
var prevScrollpos = window.pageYOffset;
window.onscroll = function () {
// collapsing navbar
const currentScrollPos = window.pageYOffset;
const topnav = document.getElementById("topnav");
const hamburgerMenu = document.getElementById("hamburger-menu");
const topnavHeight = topnav.style.height
// hide hamburger-menu
hamburgerMenu.style.top = "-600px";
if (hamburgerMenu.classList.contains('w3-show')) {
toggleShow("hamburger-menu");
}
if (prevScrollpos > currentScrollPos) { //scrolling down
// move navbar to top of screen
topnav.style.top = "0";
} else { //scrolling up
// move navbar off page
topnav.style.top = "-60px";
}
// }
prevScrollpos = currentScrollPos;
if (prevScrollpos == 0) {
topnav.classList.remove("w3-border-bottom");
} else {
if (!topnav.classList.contains("w3-border-bottom")) {
topnav.classList.add("w3-border-bottom");
}
}
}
</script>
</body>
<footer>
<!-- script tag -->
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.20.0/prism.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.20.0/plugins/line-numbers/prism-line-numbers.min.js"></script>
<!-- All individual language files -->
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.20.0/components/prism-dax.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.20.0/components/prism-powerquery.min.js"></script>
<div class="w3-container w3-indigo w3-center">
<p>Find me on social media.</p>
<div class="w3-xlarge">
<a href="javascript:void(0)"><i class="fab fa-facebook w3-hover-opacity scaled"></i></a>
<a href="https://github.com/km594"><i class="fab fa-github w3-hover-opacity scaled"></i></a>
<a href="javascript:void(0)"><i class="fab fa-chrome w3-hover-opacity scaled"></i></a>
<a href="https://grabcad.com/krispin.moutia-2"><i class="fa fa-cube w3-hover-opacity scaled"></i></a>
<a href="https://www.linkedin.com/in/kmoutia594/"><i
class="fab fa-linkedin w3-hover-opacity scaled"></i></a>
<a href="javascript:void(0)"><i class="fa fa-signal w3-hover-opacity scaled"></i></a>
</div>
<p class="">Written by me, hosted with ♥ on Github Pages, and powered (with thanks) by <a
href="https://www.w3schools.com/w3css/default.asp" title="W3.CSS" target="_blank"
class="w3-hover-text-green">w3.css</a></p>
</div>
</footer>
<script>
window.onload = function (){
// alert("Hello world!");
if (dev){
toggleShow("job0");
toggleShow("work-0-0");
toggleShow("work-0-1");
toggleShow("work-0-2");
}
}
</script>
</html>