-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
785 lines (773 loc) · 38.6 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="icon" type="image/png" href="images/favicon.png" />
<title>Joshua Chan Mun Wei</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<!-- Font Awesome -->
<script src="https://use.fontawesome.com/32bb1c5b50.js"></script>
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/imagelightbox.css">
<style>
a.no-underline:hover {
text-decoration: none;
}
</style>
</head>
<body>
<div class="card container">
<div class="row">
<div class="col-xs-12 col-sm-2">
<img src="images/profile.jpg" alt="Joshua" class="img-circle img-thumbnail img-responsive">
</div>
<div class="col-xs-12 col-sm-10">
<p class="name">Joshua Chan Mun Wei</p>
<ul class="list-inline">
<li><i class="fa fa-location-arrow fa-fw" aria-hidden="true"></i> Malaysia</li>
<li><i class="fa fa-phone fa-fw" aria-hidden="true"></i> 016-5188283</li>
<li>
<a href="mailto:[email protected]" style="color: #333">
<i class="fa fa-envelope fa-fw" aria-hidden="true"></i> [email protected]
</a>
</li>
<li>
<a href="Resume - Joshua Chan.pdf" target="_blank" style="color: #333">
<i class="fa fa-file fa-fw" aria-hidden="true"></i> Resume
</a>
</li>
</ul>
<hr />
<p class="text-justify">
I'm a computer science graduate from Universiti Tunku Abdul Rahman from Malaysia.
<br>
A realistic perfectionist who tries to optimise everything, I enjoy writing high performance, scalable systems
and build great products that people love.
</p>
</div>
</div>
</div>
<div class="card container">
<div class="row">
<div class="col-xs-12">
<!-- Nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" class="active">
<a href="#education" aria-controls="education" role="tab" data-toggle="tab">Education</a>
</li>
<li role="presentation">
<a href="#experience" aria-controls="experience" role="tab" data-toggle="tab">Experience</a>
</li>
<li role="presentation">
<a href="#skills" aria-controls="skills" role="tab" data-toggle="tab">Key Skills & Strengths</a>
</li>
<li role="presentation">
<a href="#projects" aria-controls="projects" role="tab" data-toggle="tab">Projects</a>
</li>
<li role="presentation">
<a href="#papers" aria-controls="papers" role="tab" data-toggle="tab">Papers</a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane fade in active" id="education">
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>Bachelor of Computer Science (Hons)
<small style="display: inline-block">Universiti Tunku Abdul Rahman</small>
</h4>
<h5>CGPA: 3.8398 (Graduated with Distinction)</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>May 2014 – May 2017</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />
<ul>
<li>Dean's List, 3 semesters</li>
<li>President's List, 4 semesters</li>
<li>Computer Society</li>
<li>Competitive Programming</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>Foundation in Science
<small style="display: inline-block">Universiti Tunku Abdul Rahman</small>
</h4>
<h5>CGPA: 3.9736</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>May 2013 – May 2014</h6>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>Sijil Pelajaran Malaysia (SPM)
<small style="display: inline-block">SMK Bercham</small>
</h4>
<h5>9A 1B</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>Jan 2008 – Dec 2012</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />
<ul>
<li>Chinese Society (Committee Member)</li>
<li>Basketball Club (Chairperson)</li>
<li>Wushu Club (Vice Chairperson)</li>
<li>Librarian</li>
</ul>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="experience">
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>Senior Software Engineer, Fullstack
<small style="display: inline-block">Grab</small>
</h4>
<h5>Level 17, 1, First Avenue, Bandar Utama, 47800 Petaling Jaya, Selangor</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>Mar 2020 – <strong>Present</strong></h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />
Grab is Southeast Asia’s leading superapp, offering a suite of services consisting of deliveries,
mobility, financial services, enterprise and others. I was involved in building services that ensure the
safety of users and a developer platform to allow partners to utilise Grab’s platform as a service.
<br><br>
Key achievements and responsibilities:
<ul>
<li>Built and deployed real time in-house face matching service with distributed systems clusters and
partitioning using vector similarity search</li>
<li>Engineering owner of driver fatigue management system that reduced driver online time by > 4%
without impacting business metrics</li>
<li>Involved in the development of web applications using ReactJS for internal and external users</li>
<li>Wrote scheduling and timer logic for driver selfie after ride feature that helped identify account
sharings among drivers and reduce different driver safety incidents from > 1% to 0.25%</li>
<li>Helped in handover process and taking ownership Grab’s developer platform by studying existing
codebase, writing new features and onboarding new team members</li>
<li>Design and write engineering specifications and RFCs for various tech initiatives, drive technical
and non-technical discussions across teams to make best possible tech and product decisions</li>
<li>Participate in 24/7 on-call rotations and act as Tech Family’s SRE to maintain operational
excellence by setting up dashboards and monitors in Datadog, writing infrastructure as code through
Terraform and ensuring best practices in security, unit tests and code quality</li>
<li>Conducted technical interviews regularly and mentored new joiners</li>
</ul>
Tools and technologies:
<ul>
<li>Go, Python, ReactJS, Ruby</li>
<li>AWS, RDS, S3, SQS, DynamoDB, Redis, Faiss, Tensorflow</li>
<li>Jira, Confluence, GitLab, Terraform, Jenkins, PagerDuty, Kibana, Datadog, Lightstep</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>Full Stack Engineer
<small style="display: inline-block">Hyperlab</small>
</h4>
<h5>Level 11, Menara KEN TTDI, 37, Jalan Burhanuddin Helmi, Taman Tun Dr Ismail, 60000 Kuala Lumpur</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>Sept 2018 – Mar 2020</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />Design, build and deploy conversational AI solution:
<ul>
<li>In charge of core NLP/NLU process framework which powers the chatbot</li>
<li>Developed interface for bot training, testing, and versioning with multilingual support and RBAC
</li>
<li>Integration with external systems such as Zendesk, Microsoft PowerBI, Workday and Oracle HRMS</li>
</ul>
Automate and improve software development processes:
<ul>
<li>Write clear and complete documentation in Wiki</li>
<li>Setup CI/CD using Azure Pipelines</li>
<li>Prepare docker containers and tools to ease developer experience</li>
</ul>
Lead both cloud and on-premise deployments:
<ul>
<li>Deploy and scale Kubernetes clusters in Alibaba Cloud</li>
<li>Setup scalable infrastructure on Linux VMs such as Ubuntu and RHEL</li>
<li>Experienced in setting up load balancing, reverse proxy, high availability cluster configurations
</li>
<li>Involved in system stress testing, process monitoring and performance optimization</li>
</ul>
Tools and technologies:
<ul>
<li>React, TypeScript, NodeJS, Go</li>
<li>Nginx, Redis, PostgreSQL, MariaDB, Redis, Elasticsearch</li>
<li>Microsoft Azure, AWS, Alibaba Cloud, Docker, Kubernetes</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>Full Stack Engineer
<small style="display: inline-block">Mama Wosh</small>
</h4>
<h5>153, Jalan Dana 2, Kampung Sungai Kayu Ara, 47400 Petaling Jaya, Selangor, Malaysia</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>Jun 2018 – Aug 2018</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />Developed internal and customer facing software applications:
<ul>
<li>React, Redux, Redux Saga, TypeScript</li>
<li>Semantic UI</li>
<li>Django, DRF</li>
<li>Digital Ocean, Nginx, Apache2</li>
</ul>
Worked in a small team with frequent sprint planning, meetings:
<ul>
<li>Followed the Scrum agile framework for software development</li>
<li>Daily standups and presentations</li>
<li>Trello, Bitbucket, Slack</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>Freelance Software Developer
<small style="display: inline-block">Self Employed</small>
</h4>
<h5>Home Sweet Home</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>Jan 2016 –
<strong>Present</strong>
</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />Occasional worked individually and with a team on freelance projects:
<ul>
<li>Angular, React, Ionic, Android, Flutter</li>
<li>Django, Firebase</li>
<li>More info on project section.</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>Back-End Programmer Intern
<small style="display: inline-block">Silverlake Mobility Ecosystem Sdn Bhd</small>
</h4>
<h5>G203, Jalan 16/11, Pusat Perdagangan Phileo Damansara, 4635</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>Oct 2015 – Jan 2016</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />Worked with several projects:
<ul>
<li>VRSM (E-Commerce App)</li>
<li>Mobile Lifestyle (Lifestyle App)</li>
<li>E-Rewards (Customer Loyalty)</li>
</ul>
Developed Java Back-End using Spring framework:
<ul>
<li>Hibernate</li>
<li>DB2 and MySQL</li>
<li>Aspect-oriented programming (AOP)</li>
<li>Gradle</li>
</ul>
Performed testing, system integration and deployment:
<ul>
<li>SoapUI</li>
<li>Postman</li>
<li>IBM WebSphere</li>
</ul>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="skills">
<div class="row">
<div class="col-xs-12 col-sm-3">
<h4>Communication & Teamwork</h4>
</div>
<div class="col-xs-12 col-sm-9">
<h5>Comfortable in communicating with people of different age, group, and culture.</h5>
<ul>
<li>Can speak English, Mandarin, Cantonese and Malay</li>
<li>Leader in various team activities</li>
<li>Friendly to work with and always ready to help</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-3">
<h4>Technical Skills</h4>
</div>
<div class="col-xs-12 col-sm-9">
<h5>Knowledgeable in multiple programming languages, software tools and frameworks.</h5>
<ul>
<li>Go, TypeScript,
<a href="images/top30games.png" image="true" link="http://github.com/joscmw95/rank-games"
rel="popover" caption="Ranking Games by Google Trends" title="Ranking Games by Google Trends"
data-img="images/top30games.png">
Python, R</a>, HTML5, SCSS, Java, C++, Ruby, PHP
</li>
<li>Ant Design, Bootstrap, Materialize, Angular Material, Semantic UI</li>
<li>Angular, AngularJS, Ngrx, React, Redux, Firebase, Django, Flutter</li>
<li>Terraform, Jenkins, Kibana, Datadog, Lightstep, Jira, Confluence</li>
</ul>
<br />
<h5>Familiar with various project workflows and software engineering practices.</h5>
<ul>
<li>Agile, Scrum, Sprint, ERD, UML</li>
<li>Bash, Git, Github, Bitbucket, AWS, Nginx, Apache2, Docker, Kubernetes</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-3">
<h4>Analytical</h4>
</div>
<div class="col-xs-12 col-sm-9">
<h5>Possess strong algorithmic thinking, problem solving and analytical skills.</h5>
<ul>
<li>
<a href="images/the_star.jpg" link="" image="true" rel="popover"
caption="The Star, 10 November 2016" title="The Star, 10 November 2016"
data-img="images/the_star.jpg">
National ACM-ICPC Malaysia 2016 Champion
</a>
</li>
<li>Experienced in building scalable, performant and reliable systems</li>
<li>Inquisitive and product focused, always try to deliver the best</li>
</ul>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="projects">
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>
<a href="http://www.motomart.com.my/" target="_blank" rel="noopener" class="no-underline">
<i class="fa fa-external-link"></i>
</a>
<a href="images/motomart.png" image="true" link="http://www.motomart.com.my/" rel="popover"
caption="Motomart - E-Commerce site" title="Motomart" data-img="images/motomart.png">Motomart</a>
<small style="display: inline-block">Web Application Development</small>
<i style="color: #E34C26" class="fa fa-html5" aria-hidden="true"></i>
</h4>
<h5>Online marketplace that trades auto parts B2B, B2C and C2C.</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>May 2018 – July 2018</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />
<ul>
<li>
<a href="https://angular.io/" target="_blank" rel="noopener">Angular</a>
</li>
<li>
<a href="https://material.angular.io/" target="_blank" rel="noopener">Angular Material</a>
</li>
<li>
<a href="https://github.com/ngrx/platform" target="_blank" rel="noopener">NgRx</a>
</li>
<li>
<a href="https://github.com/ReactiveX/RxJS" target="_blank" rel="noopener">RxJS</a>
</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>
<a href="https://play.google.com/store/apps/details?id=io.ionic.udrive" target="_blank" rel="noopener"
class="no-underline">
<i class="fa fa-external-link"></i>
</a>
<a href="images/udrive.png" image="true"
link="https://play.google.com/store/apps/details?id=io.ionic.udrive" rel="popover"
caption="UDrive - Ride Sharing app" title="UDrive" data-img="images/udrive.png">UDrive</a>
<small style="display: inline-block">Hybrid Application Development</small>
<i style="color: #444" class="fa fa-tablet" aria-hidden="true"></i>
<i style="color: #444" class="fa fa-desktop" aria-hidden="true"></i>
<i style="color: #444" class="fa fa-mobile" aria-hidden="true"></i>
</h4>
<h5>Ride sharing app using Ionic</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>Sep 2017 – Oct 2017</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />
<ul>
<li>
<a href="https://ionicframework.com/" target="_blank" rel="noopener">Ionic 2</a>
</li>
<li>
<a href="https://angularjs.org/" target="_blank" rel="noopener">AngularJS</a>
</li>
<li>
<a href="https://cordova.apache.org/" target="_blank" rel="noopener">Cordova</a>
</li>
<li>
<a href="https://firebase.google.com/" target="_blank" rel="noopener">Firebase</a>
</li>
<li>
<a href="https://cloud.google.com/maps-platform/" target="_blank" rel="noopener">Google Maps</a>
</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>
<a href="https://www.firedragoon.com/" target="_blank" rel="noopener" class="no-underline">
<i class="fa fa-external-link"></i>
</a>
<a href="images/firedragoon.jpg" image="true" link="https://www.firedragoon.com/" rel="popover"
caption="Fire Dragoon Organisation Site" title="Fire Dragoon" data-img="images/firedragoon.jpg">Fire
Dragoon</a>
<small style="display: inline-block">Web Application Development</small>
<i style="color: #E34C26" class="fa fa-html5" aria-hidden="true"></i>
</h4>
<h5>Esports organisation site using Django and Angular.</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>May 2017 – Dec 2017</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />
<ul>
<li>
<a href="https://aws.amazon.com" target="_blank" rel="noopener">Amazon Web Service
</li>
<li>
<a href="https://angularjs.org/" target="_blank" rel="noopener">AngularJS
</li>
<li>
<a href="http://www.celeryproject.org/" target="_blank" rel="noopener">Celery</a>
</li>
<li>
<a href="https://www.djangoproject.com/" target="_blank" rel="noopener">Django
</li>
<li>
<a href="https://getbootstrap.com/" target="_blank" rel="noopener">Bootstrap
</li>
<li>
<a href="https://www.nginx.com/" target="_blank" rel="noopener">Nginx
</li>
<li>
<a href="https://www.rabbitmq.com/" target="_blank" rel="noopener">RabbitMQ</a>
</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>
<a href="https://www.tiltreport.com/" target="_blank" rel="noopener" class="no-underline">
<i class="fa fa-external-link"></i>
</a>
<a href="images/tiltreport.png" image="true" link="http://www.tiltreport.com" rel="popover"
caption="Tilt Report - Esports Media Site" title="Tilt Report" data-img="images/tiltreport.png">Tilt
Report</a>
<small style="display: inline-block">Web Application Development</small>
<i style="color: #E34C26" class="fa fa-html5" aria-hidden="true"></i>
</h4>
<h5>Esports media site using Django and Angular.</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>Jan 2017 –
<strong>Present</strong>
</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />
<ul>
<li>
<a href="https://aws.amazon.com" target="_blank" rel="noopener">Amazon Web Service
</li>
<li>
<a href="https://angular.io/" target="_blank" rel="noopener">Angular
</li>
<li>
<a href="http://www.celeryproject.org/" target="_blank" rel="noopener">Celery</a>
</li>
<li>
<a href="https://www.djangoproject.com/" target="_blank" rel="noopener">Django
</li>
<li>
<a href="http://materializecss.com" target="_blank" rel="noopener">Materialize
</li>
<li>
<a href="https://www.nginx.com/" target="_blank" rel="noopener">Nginx
</li>
<li>
<a href="https://www.rabbitmq.com/" target="_blank" rel="noopener">RabbitMQ</a>
</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>
<a href="https://play.google.com/store/apps/details?id=in.sweatshop.megaevent" target="_blank"
rel="noopener" class="no-underline">
<i class="fa fa-external-link"></i>
</a>
<a href="images/megaevents.png" image="true"
link="https://play.google.com/store/apps/details?id=in.sweatshop.megaevent" rel="popover"
caption="Mega Events" title="Mega Events" data-img="images/megaevents.png">Mega
Events</a>
<small style="display: inline-block">Android Application Development</small>
<i style="color: #A4C639" class="fa fa-android" aria-hidden="true"></i>
</h4>
<h5>Event app using Firebase as back-end.</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>June 2016 – Sept 2016</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />
<ul>
<li>Android Studio</li>
<li>
<a href="https://firebase.google.com/" target="_blank" rel="noopener">Firebase</a>
</li>
<li>Java</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>
<a href="http://www.upush.xyz" target="_blank" rel="noopener" class="no-underline">
<i class="fa fa-external-link"></i>
</a>
<a href="images/upush.png" image="true" link="http://www.upush.xyz" rel="popover"
caption="uPush - Course Management System" title="uPush" data-img="images/upush.png">uPush</a>
<small style="display: inline-block">Android Application Development</small>
<i style="color: #A4C639" class="fa fa-android" aria-hidden="true"></i>
</h4>
<h5>Android application for my universitiy's course management system using Ruby on Rails as back-end.
</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>Jan 2016 – Mar 2016</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />
<ul>
<li>Android Studio</li>
<li>
<a href="https://get.fabric.io/" target="_blank" rel="noopener">Fabric</a>
</li>
<li>Java</li>
<li>Ruby</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>
<a href="http://readthym.hol.es/" target="_blank" rel="noopener" class="no-underline">
<i class="fa fa-external-link"></i>
</a>
<a href="images/readthym.png" image="true" link="http://readthym.hol.es/" rel="popover"
caption="Social Blogging Website" title="Social Blogging Website"
data-img="images/readthym.png">Readthym</a>
<small style="display: inline-block">Web Application Development</small>
<i style="color: #E34C26" class="fa fa-html5" aria-hidden="true"></i>
</h4>
<h5>Social Blogging Platform inspired by Medium; developed for an assignment.</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>Jan 2015 – Mar 2015</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />
<ul>
<li>HTML5</li>
<li>CSS3</li>
<li>Javascript, jQuery</li>
<li>PHP</li>
<li>MySQL</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12 col-sm-9 col-sm-push-3 col-md-10 col-md-push-2">
<h4>
<a href="http://www.hiveworkshop.com/members/ribenamania.148798/#resources" target="_blank"
rel="noopener" class="no-underline">
<i class="fa fa-external-link"></i>
</a>
<a href="images/wc3mod.png" image="true"
link="http://www.hiveworkshop.com/members/ribenamania.148798/#resources" rel="popover"
caption="Warcraft III - Game Modding" title="Warcraft III" data-img="images/wc3mod.png">Warcraft
III</a>
<small style="display: inline-block">Game Modding</small>
<i style="color: #777" class="fa fa-wrench" aria-hidden="true"></i>
</h4>
<h5>Since I was 13, I ventured into game modding in Warcraft III as well as Starcraft II later on. It
brought my interest into creating and developing things,
programming and Computer Science.</h5>
</div>
<div class="col-xs-12 col-sm-3 col-sm-pull-9 col-md-2 col-md-pull-10">
<h6>May 2008 – Aug 2012</h6>
</div>
<div class="col-xs-12 col-sm-offset-3 col-sm-9 col-md-10 col-md-offset-2">
<hr />
<ul>
<li>Adobe Photoshop</li>
<li>
<a href="http://www.audacityteam.org/" target="_blank" rel="noopener">Audacity</a>
</li>
<li>
<a href="https://en.wikipedia.org/wiki/JASS" target="_blank" rel="noopener">JASS</a>
</li>
<li>
<a href="http://www.milkshape3d.com/" target="_blank" rel="noopener">MilkShape 3D</a>
</li>
</ul>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade" id="papers">
<div class="row">
<div class="col-xs-12">
<ol>
<li>
<a style="color: #333;" href="https://www.sciencedirect.com/science/article/pii/S1476927118301385"
target="_blank" rel="noopener">
Chan Mun Wei, J., Zhao, Z., Li, S. and Ng, Y. (2018). NGS-based likelihood ratio for identifying
contributors in two- and three-person DNA mixtures.
Computational Biology and Chemistry.
</a>
</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br />
<div>
<ul class="list-inline text-center">
<li>
<a href="https://github.com/joscmw95" target="_blank" rel="noopener">
<i class="fa fa-github fa-lg" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://stackoverflow.com/users/story/9758160" target="_blank" rel="noopener">
<i class="fa fa-stack-overflow fa-lg" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/joscmw95" target="_blank" rel="noopener">
<i class="fa fa-linkedin fa-lg" aria-hidden="true"></i>
</a>
</li>
</ul>
<p class="text-center" style="margin-bottom: 10px;">© 2017. All Rights Reserved</p>
</div>
<script src="scripts/imagelightbox.js"></script>
<script>
var css_loading = '<div id="floatingCirclesG"><div class="f_circleG" id="frotateG_01"></div><div class="f_circleG" id="frotateG_02"></div><div class="f_circleG" id="frotateG_03"></div>' +
'<div class="f_circleG" id="frotateG_04"></div><div class="f_circleG" id="frotateG_05"></div><div class="f_circleG" id="frotateG_06"></div>' +
'<div class="f_circleG" id="frotateG_07"></div><div class="f_circleG" id="frotateG_08"></div></div>';
$(document).ready(function () {
$(function () {
var
// ACTIVITY INDICATOR
activityIndicatorOn = function () { $('<div id="imagelightbox-loading"><div>' + css_loading + '</div></div>').appendTo('body'); },
activityIndicatorOff = function () { $('#imagelightbox-loading').remove(); },
// OVERLAY
overlayOn = function () { $('<div id="imagelightbox-overlay"></div>').appendTo('body'); },
overlayOff = function () { $('#imagelightbox-overlay').remove(); },
// CLOSE BUTTON
closeButtonOn = function (instance) {
$('<div id="imagelightbox-close" title="Close"></div>').appendTo('body').on('click touchend', function () { $(this).remove(); instance.quitImageLightbox(); return false; });
},
closeButtonOff = function () { $('#imagelightbox-close').remove(); },
// CAPTION
captionOn = function () {
var description = $('a[href="' + $('#imagelightbox').attr('src') + '"]').attr('caption');
var link = $('a[href="' + $('#imagelightbox').attr('src') + '"]').attr('link');
if (description.length > 0 || link.length > 0) {
if (link.length > 0) {
$('<div id="imagelightbox-caption">' + description + ' <a id="viewproject" href="' + link + '" target="_blank" rel="noopener">View Project</div>').appendTo('body');
} else {
$('<div id="imagelightbox-caption">' + description + '</div>').appendTo('body');
}
}
},
captionOff = function () { $('#imagelightbox-caption').remove(); };
var selector = 'a[image="true"]';
var instance = $(selector).imageLightbox(
{
onStart: function () { $('[rel=popover]').popover('hide'); overlayOn(); closeButtonOn(instance); },
onEnd: function () { overlayOff(); captionOff(); closeButtonOff(); activityIndicatorOff(); },
onLoadStart: function () { captionOff(); activityIndicatorOn(); },
onLoadEnd: function () { captionOn(); activityIndicatorOff(); }
});
});
$('[rel=popover]').hover(
function (event) {
var el = $(this);
// add initial popovers with loading animation
el.popover({
content: css_loading,
html: true,
placement: "auto",
trigger: 'hover'
});
// show this loading popover
el.popover('show');
// requesting data using url from data-img attribute
var img = new Image();
img.src = el.data('img');
img.onload = function () {
// set new content to popover
el.data('bs.popover').options.content = '<img style="width: 100%; height:auto;" src="' + img.src + '" />';
var temp = el.parent().find(":hover");
if (temp.length == 1 && temp[0] == el[0])
// reshow popover with new content
el.popover('show');
}
},
// Without this handler popover flashes on first mouseout
function () { }
);
});
</script>
</body>
</html>