-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1375 lines (1269 loc) · 93.2 KB
/
Copy pathindex.html
File metadata and controls
1375 lines (1269 loc) · 93.2 KB
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>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-150100097-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-150100097-1');
</script>
<meta charset="UTF-8">
<title>IChen Chu (朱翌成)</title>
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta property="og:type" content="website">
<meta property="og:url" content="/var/www/html/index.html">
<meta property="og:site_name" content="IChen Chu">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="IChen Chu">
<!-- <script-->
<!-- src="https://www.datadoghq-browser-agent.com/datadog-rum-v4.js"-->
<!-- type="text/javascript">-->
<!-- </script>-->
<!-- <script>-->
<!-- (function(h,o,u,n,d) {-->
<!-- h=h[d]=h[d]||{q:[],onReady:function(c){h.q.push(c)}}-->
<!-- d=o.createElement(u);d.async=1;d.src=n-->
<!-- n=o.getElementsByTagName(u)[0];n.parentNode.insertBefore(d,n)-->
<!-- })(window,document,'script','https://www.datadoghq-browser-agent.com/us5/v4/datadog-rum.js','DD_RUM')-->
<!-- window.DD_RUM.onReady(function() {-->
<!-- window.DD_RUM.init({-->
<!-- clientToken: 'pub0be216df6674cbbeb39f94903aed2264',-->
<!-- applicationId: 'd1d52150-f636-4450-984f-68de7d9d8cf2',-->
<!-- site: 'us5.datadoghq.com',-->
<!-- service: 'cv-resume',-->
<!-- env: 'prod',-->
<!-- // Specify a version number to identify the deployed version of your application in Datadog-->
<!-- // version: '1.0.0',-->
<!-- sessionSampleRate: 100,-->
<!-- sessionReplaySampleRate: 100,-->
<!-- trackResources: true,-->
<!-- trackLongTasks: true,-->
<!-- premiumSampleRate: 100,-->
<!-- trackUserInteractions: true,-->
<!-- defaultPrivacyLevel: 'allow',-->
<!-- enablePrivacyForActionName: true,-->
<!-- });-->
<!-- window.DD_RUM.startSessionReplayRecording();-->
<!-- })-->
<!-- </script>-->
<script>
(function(h,o,u,n,d) {
h=h[d]=h[d]||{q:[],onReady:function(c){h.q.push(c)}}
d=o.createElement(u);d.async=1;d.src=n
n=o.getElementsByTagName(u)[0];n.parentNode.insertBefore(d,n)
})(window,document,'script','https://www.datadoghq-browser-agent.com/us5/v5/datadog-rum.js','DD_RUM')
window.DD_RUM.onReady(function() {
window.DD_RUM.init({
clientToken: 'pub0be216df6674cbbeb39f94903aed2264',
applicationId: 'd1d52150-f636-4450-984f-68de7d9d8cf2',
// `site` refers to the Datadog site parameter of your organization
// see https://docs.datadoghq.com/getting_started/site/
site: 'us5.datadoghq.com',
service: 'cv-resume',
env: 'prod',
// Specify a version number to identify the deployed version of your application in Datadog
version: '1.0.0',
sessionSampleRate: 100,
sessionReplaySampleRate: 100,
trackUserInteractions: true,
trackResources: true,
trackLongTasks: true,
defaultPrivacyLevel: 'allow',
enablePrivacyForActionName: true,
});
})
</script>
<link href="//fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha3841q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"
integrity="sha384XdYbMnZ/QjLh6iI4ogqCTaIjrFk87ip+ekIjefZch0Y+PvJ8CDYtEs1ipDmPorQ+" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="ucv/js/jBox_1.3.2.min.js"></script>
<link href="ucv/css/jBox_1.3.2.min.css" rel="stylesheet">
<link href="ucv/css/jbox-demo.css" rel="stylesheet">
</head>
<style type="text/css">
body {
background-color: #DDDDDD;
font-family: georgia, sans-serif;
line-height: 120%;
margin: auto;
text-align: left;
width: 1000px;
}
.main {
background-color: #FFFFFF;
padding: 20px 20px 20px 20px;
}
h2 {
font-family: georgia, sans-serif;
font-size: 26px;
letter-spacing: 1px;
margin-bottom: 0;
}
h3 {
font-family: georgia, sans-serif;
font-size: 20px;
letter-spacing: 1px;
}
a, a:visited {
color: #0000EE;
outline: none;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.thumbs {
width: 800px;
margin-left: auto;
margin-right: auto;
text-align: justify;
text-justify: distribute-all-lines;
}
#thumbs a {
vertical-align: center;
display: inline-block;
*display: inline;
}
.stretch {
width: 100%;
display: inline-block;
font-size: 0;
line-height: 0
}
.outside {
word-wrap: break-word;
/*background-color: #FF0;*/
/*width: 510px;*/
overflow: auto;
margin: 5px;
padding: 10px;
}
.left1 {
/*background-color: #69F;*/
width: 30%;
float: left;
/*margin-right: 10px;*/
}
.right1 {
/*background-color: #6C6;*/
width: 30%;
float: left;
/*margin-right: 10px;*/
}
.right2 {
/*background-color: #6C6;*/
width: 30%;
float: left;
}
.text-gray-650 {
--text-opacity: 1;
color: #68778d;
color: rgba(104.04, 118.72800000000001, 140.76, var(--text-opacity))
}
.work-exp-li-arrow {
position: absolute;
margin-left: -1rem
}
.work-exp-li {
list-style-type: none;
/*margin-left: -20px;*/
height: 2em;
line-height: 1.5em;
}
.plusImg {
margin-top: 10px;
}
</style>
<body>
<script src="https://unpkg.com/i18next/i18next.js"></script>
<script src="https://unpkg.com/i18next-xhr-backend/i18nextXHRBackend.js"></script>
<script src="https://unpkg.com/i18next-browser-languagedetector/i18nextBrowserLanguageDetector.js"></script>
<script>
function gtagEvent(event, action, category, label, value) {
gtag(event,
action, {
'event_category': category,
'event_label': label,
'value': value
});
}
</script>
<div class="container">
<div class="main">
<article>
<div class="article-inner" style="width:95%;margin-left: 15px">
<div style="float: right">
<button onclick="i18next.changeLanguage('en'); gtagEvent('event', 'Languages Change', 'Click', 'to en', 5)">
English
</button>
<button onclick="i18next.changeLanguage('zh_TW'); gtagEvent('event', 'Languages Change', 'Click', 'to zh_tw', 5)">
中文(繁體)
</button>
</div>
<div class="article-entry" itemprop="articleBody" itemprop="blogPost">
<table width="600">
<tbody>
<tr>
<td align="center" width="250" class="cvtooltip" title="IChen.Chu">
<img src="./img/avator_20221006.jpg" height="250"
alt="ichenchu"/>
</td>
<td align="left" style="padding-left:50px;" nowrap="">
<dl>
<dd >
<h2 class="dd1">IChen Chu (朱翌成)</h2><br>
</dd>
<dd class="dd2">
Location : 台灣, 新北市 三重區 <br>
</dd>
<!-- <dd class="dd3">-->
<!-- Graduate from The Hydraulic Engineering Division from Civil Engineering, NTU-->
<!-- <br><br>-->
<!-- </dd>-->
<dd>
Email: <a href="r99521320@gmail.com" target="_blank" rel="external">r99521320@gmail.com</a><br>
</dd>
<dd>
Mobile: +886 973138343<br>
</dd>
<dd style="display: block">
<!--<a href="https://scholar.google.com/citations?user=ACb5C40AAAAJ&hl=en" target="_blank" rel="external">[Google Scholar]</a>-->
<a href="https://github.com/VHCC" target="_blank" rel="external"
onclick="gtagEvent('event', 'my git link Click', 'Click', 'My Git Hub', 10)">[Github]</a>
<a href="img/my_line_qr.png" target="_blank" rel="external"
data-jbox-content="<img src='img/my_line_qr.png' width='300px'>"
class="showImageToolTip"
onclick="gtagEvent('event', 'External Link Click', 'Click', 'to Line', 2)">[Line]</a>
<br><br>
</dd>
<dd style="font-weight: bold; font-size: 20px">
<a href="https://vhcc.github.io/ucv/docs/" target="_blank" rel="external">[Résumé]</a>
</dd>
</dl>
</td>
</tr>
</tbody>
</table>
<hr>
<!-- summary -->
<p style="text-align:left"><strong><font size="4px" class="ss1">About</font></strong></p>
<ul>
<li class="ss2">
<p>From Sep. 2006 to Jun. 2010, I got my B.S. Degree from the Department of
Water and Soil Conservation, National Chung Hsing University (NCHU).</p>
</li>
<li class="ss3">
<p>From Sep. 2010 to Jun. 2012, I got my M.S. Degree from the Division of Hydraulic
Engineering
in Civil Engineering, National Taiwan University (NTU), and my advisor is Prof.
<strong>
<a href="https://www.ce.ntu.edu.tw/wp-content/uploads/2011/08/hyd_tktsay.pdf">
Ting-Kuei Tsay.
</a>
</strong>
</p>
</li>
<li class="ss4" onclick="gtagEvent('event', 'External Link Click', 'Click', 'to advantech', 2)">
<p>Currently, I am a Senior Developer at <a href="https://www.advantech.tw/" target="_blank"
rel="external"> Advantech
Corp.</a></p> Since 2018
</li>
</ul>
<br><br>
<!-- Recent News -->
<!-- <p style="text-align:left"><strong><font size="4px" class="rn1">Recent</font></strong></p>-->
<!-- <ul>-->
<!-- <li><p style="text-align:left" class="rn14 showImageToolTip"-->
<!-- data-jbox-content="<img src='ucv/imgs/20221006_strava.png' width='300px'>">-->
<!-- 09/2021 – strava workout page</p>-->
<!-- </li>-->
<!-- <li><p style="text-align:left" class="rn15">-->
<!-- 03/2021 – Mask Detect by SeetaFace6</p>-->
<!-- </li>-->
<!-- <li><p style="text-align:left" class="rn12">-->
<!-- 08/2020 – Mask Detect by TensorflowLite</li>-->
<!-- <li id="time10"><p style="text-align:left" class="rn10 showImageToolTip"-->
<!-- data-jbox-content="<img src='ucv/imgs/20221007_jp.png' width='300px'>"-->
<!-- onclick="gtagEvent('event', 'my app link Click', 'Click', 'jp web app', 10)">-->
<!-- 03/2020 – Web App, <a-->
<!-- href="https://jp.ichenprocin.dsmynas.com" target="_blank" rel="external"><b>Japan-->
<!-- geographic map</b></a></p>-->
<!-- </li>-->
<!-- <li id="time9"><p style="text-align:left" class="rn9 showImageToolTip"-->
<!-- data-jbox-content="<img src='ucv/imgs/20221007_dns.png' width='300px'>"-->
<!-- onclick="gtagEvent('event', 'my app link Click', 'Click', 'DrawNSend', 10)">-->
<!-- 11/2019 – 2nd App, Android Game <b><a-->
<!-- href="https://play.google.com/store/apps/details?id=com.vhcc.drawnsend"-->
<!-- target="_blank" rel="external">DrawNSend</a></b>-->
<!-- published on Google Play Store</p>-->
<!-- </li>-->
<!-- <li id="time8" onclick="gtagEvent('event', 'External Link Click', 'Click', 'to advantech', 2)">-->
<!-- <p style="text-align:left" class="rn8">08/2018 – Be a <b>Senior Developer</b> in <a-->
<!-- href="https://www.advantech.tw/" target="_blank" rel="external"> Advantech Corp.</a>-->
<!-- </p>-->
<!-- </li>-->
<!-- <li id="time7" onclick="gtagEvent('event', 'External Link Click', 'Click', 'to advantech', 2)">-->
<!-- <p style="text-align:left" class="rn11 showImageToolTip"-->
<!-- data-jbox-content="<img src='ucv/imgs/20221007_erm.png' width='300px'>">-->
<!-- 03/2018 – Develop full stack system Enterprise Resource Management <a-->
<!-- href="https://erm.chongjun.synology.me" target="_blank" rel="external">-->
<!-- <b>ERM</b></a></p>-->
<!-- </li>-->
<!-- <li id="time6" onclick="gtagEvent('event', 'External Link Click', 'Click', 'to Tenserflow', 2)">-->
<!-- <p style="text-align:left" class="rn7">04/2018 – In charge for Chp 17, 18 in-->
<!-- online workshop-->
<!-- about <a href="https://www.books.com.tw/products/0010754327" target="_blank"-->
<!-- rel="external">TensorFlow&Keras</a>-->
<!-- </p></li>-->
<!-- <li id="time5" onclick="gtagEvent('event', 'my app link Click', 'Click', '2048', 10)"><p-->
<!-- style="text-align:left" class="rn6">10/2017 – 1st App, Android Game <b><a-->
<!-- href="https://play.google.com/store/apps/details?id=com.ichen.game" target="_blank"-->
<!-- rel="external">2048</a></b>-->
<!-- published-->
<!-- on Google Play Store</p></li>-->
<!-- <li id="time4" onclick="gtagEvent('event', 'External Link Click', 'Click', 'to NASA', 2)"><p-->
<!-- style="text-align:left" class="rn5">04/2017 – Participate in <a-->
<!-- href="https://2017.spaceappschallenge.org/locations/taipei/" target="_blank"-->
<!-- rel="external"> NASA Hackathon'17</a></p></li>-->
<!-- <li id="time3" onclick="gtagEvent('event', 'External Link Click', 'Click', 'to JSW', 2)"><p-->
<!-- style="text-align:left" class="rn4">09/2016 – Be an <b>Android Developer</b>-->
<!-- in <a-->
<!-- href="http://www.secufirst.com.tw/" target="_blank" rel="external">Jsw Corp.</a></p>-->
<!-- </li>-->
<!-- <li id="time2" onclick="gtagEvent('event', 'External Link Click', 'Click', 'to Flowring', 2)"><p-->
<!-- style="text-align:left" class="rn3">04/2015 – Be a <b>Java Developer</b> in <a-->
<!-- href="https://www.flowring.com/" target="_blank" rel="external">Flowring</a></p></li>-->
<!-- <li><p style="text-align:left" class="rn13 showImageToolTip"-->
<!-- data-jbox-content="<img src='ucv/imgs/20221007_vhc.png' width='300px'>" >-->
<!-- 11/2014 – Develop a Member Management System for<b><a-->
<!-- href="https://web.ichenprocin.dsmynas.com/VHCC/page/HomePage/index.jsp" target="_blank"-->
<!-- rel="external">Vision Health Center</a>-->
<!-- </b> by S2SH (Hibernate + Spring + Struts 2)</p></li>-->
<!-- <li id="time1" onclick="gtagEvent('event', 'External Link Click', 'Click', 'to KM', 2)"><p-->
<!-- style="text-align:left" class="rn2">10/2013 – Be a <b>Civil Engineer</b> in-->
<!-- 京扬工程科技股份有限公司-->
<!-- </p></li>-->
<!-- </ul>-->
<!-- <br><br>-->
<!--<div id="timeline-embed"></div>-->
<!-- <iframe src='https://cdn.knightlab.com/libs/timeline3/latest/embed/index.html?source=1WIZpt6upXzVJQY-wn2SA6ovHLh1jp_6OF1asGx5mGGA&font=Default&lang=en&debug=true&hash_bookmark=true&initial_zoom=1&height=600'-->
<!-- width='100%' height='600' webkitallowfullscreen mozallowfullscreen allowfullscreen-->
<!-- frameborder='0'></iframe>-->
<hr/>
<!-- Experience -->
<p style="text-align:left"><strong><font size="4px" class="wexp">Work Experience</font></strong></p>
<ul>
<li>
<strong style="width: 150px">Advantech Corp.</strong>
<img src="https://lirp.cdn-website.com/81aad348/dms3rep/multi/opt/innotalks_Advantech-640w.png" width="100px">
<b><p style="text-align:left; color: #e8550c" class="wexp" >Aug 2018 – Present | Senior Software Developer</p></b>
<ul class="">
<li class="work-exp-li " style="margin-bottom: 25px">
<span class="work-exp-li-arrow">›</span>
<b style="background: rgba(220,54,54,0.24)">Implemented</b> real-time monitoring metrics to optimize peak traffic performance, enhancing user experience. Segmented services into APIs and scheduled tasks, migrated scheduled services to Docker, significantly boosting system stability, flexibility, and resource efficiency.
</li>
<li class="work-exp-li " style="margin-bottom: 95px">
<span class="work-exp-li-arrow">›</span>
<b style="background: rgba(220,54,54,0.24)">Completed</b> the transformation from a conventional standalone server to a microservices architecture, for example, converting a Spring Boot standalone server to Spring Cloud Netflix services.
<!-- <b style="background: rgba(220,54,54,0.24)">Complete</b> the transformation from the conventional server in standalone style service to microservices style, for example, a Spring boot standalone server to Spring Cloud Netflix services.-->
<div class="plusImg">
<a href="img/skill-cloud-sba.png" class="demo-img"
data-jbox-image="gallery1" title="Spring Boot Administrator">
<img src="img/skill-cloud-sba.png" alt="" >
</a>
<a href="img/skill-cloud-zipkin.png" class="demo-img"
data-jbox-image="gallery1" title="Zipkin">
<img src="img/skill-cloud-zipkin.png" alt="" >
</a>
<a href="img/skill-cloud-eureka.png" class="demo-img"
data-jbox-image="gallery1" title="Spring Cloud Eureka">
<img src="img/skill-cloud-eureka.png" alt="" >
</a>
</div>
</li>
<li class="work-exp-li " style="margin-bottom: 25px">
<span class="work-exp-li-arrow">›</span>
<b style="background: rgba(220,54,54,0.24)">Improved</b> the program's execution efficiency by 70% for the main product in RBU, and increased the stability and readability of the codebase, which required high collaboration among developers.
<!-- <b style="background: rgba(220,54,54,0.24)">Improve</b> execution in the efficiency of the program by <b style="background: rgba(220,54,54,0.24)">70%</b> which is the main product in RBU, and increase stability and readability of the code base which needs highly collaborated-developing.-->
<a href="https://aics.advantech.com/zh/storevue/inspection" target="_blank" rel="external">
<span class="inline-block text-gray-550 print:text-black font-normal group-hover:text-gray-700 transition duration-100 ease-in">↗</span>
</a>
</li>
<li class="work-exp-li " style="margin-bottom: 95px">
<span class="work-exp-li-arrow">›</span>
<b style="background: rgba(220,54,54,0.24)">Led a team of 5 members</b>, including web and app engineers, to develop a major product for the Enterprise Service Business. This service is dedicated to enterprise-level scenarios, such as a visitor management system.
<!-- <b style="background: rgba(220,54,54,0.24)">Lead a 5 members-team</b>, which is including web and app Engineers to develop a major product for Enterprise Service Business that is a service dedicated to enterprise-level scenarios as a visitor management system.-->
<div class="plusImg">
<a href="img/wexp-vms-kiosk.png" class="demo-img"
data-jbox-image="gallery1" title="">
<img src="img/wexp-vms-kiosk.png" alt="" >
</a>
<a href="img/20221006_kiosk.png" class="demo-img"
data-jbox-image="gallery1" title="">
<img src="img/20221006_kiosk.png" alt="" >
</a>
<a href="img/wexp-vms-web.png" class="demo-img"
data-jbox-image="gallery1" title="">
<img src="img/wexp-vms-web.png" alt="" >
</a>
<a href="img/wexp-storevue-dashboard.png" class="demo-img"
data-jbox-image="gallery1" title="">
<img src="img/wexp-storevue-dashboard.png" alt="" >
</a>
</div>
</li>
<li class="work-exp-li " style="margin-bottom: 25px">
<span class="work-exp-li-arrow">›</span>
<b style="background: rgba(220,54,54,0.24)">Completed</b> the development of a mask-detection engine with high recognition accuracy and low hardware requirements, and ported it into Android edge devices made by Advantech, in response to COVID-19.
<!-- <b style="background: rgba(220,54,54,0.24)">Complete</b> the development of a mask-detect engine that is highly recognizing, and has low hardware requirements, and port into android edge devices, which is made by Advantech, to COVID-19.-->
<a href="https://reurl.cc/9p85KO" target="_blank" rel="external">
<span class="inline-block text-gray-550 print:text-black font-normal group-hover:text-gray-700 transition duration-100 ease-in">↗</span>
</a>
</li>
<li class="work-exp-li " style="margin-bottom: 25px">
<span class="work-exp-li-arrow">›</span>
<b style="background: rgba(220,54,54,0.24)">Designed</b> and implemented an end-to-end server for critical cloud service applications, including specific scenario tablets, task-oriented kiosks, and inspection mobile apps.
<!-- <b style="background: rgba(220,54,54,0.24)">Design</b> and implement end-to-end server of the cloud service for critical applications such as specific scenario tablets, Task-oriented kiosks, and inspection mobile Apps.-->
</li>
<li class="work-exp-li " style="margin-bottom: 25px">
<span class="work-exp-li-arrow">›</span>
<b style="background: rgba(220,54,54,0.24)">Successfully integrated</b> multiple protocols and ported different devices into one app via Wise-PaaS provided and powered by Advantech, applied in the Cold-Chain system for logistics, wholesale, and retail.
<!-- <b style="background: rgba(220,54,54,0.24)">Successfully integrate</b> multiple protocols and port different devices into one app via Wise-PaaS provided and powered by Advantech, it is applied in the Cold-Chain system for logistics, wholesale and retail.-->
</li>
<li class="work-exp-li " style="margin-bottom: 25px">
<span class="work-exp-li-arrow">›</span>
<b style="background: rgba(220,54,54,0.24)">Thoroughly participated in</b> the uninterrupted Cold Chain Management solution, involving inspection, cargo receipt, and commodities transport. This project included a connection of over <b>5000 IoT devices</b> .
<!-- <b style="background: rgba(220,54,54,0.24)">Thoroughly participate in</b> the uninterrupted Cold Chain Management solution, in which I was involved in inspection, Cargo receives, and commodities transport, it's a <b style="background: rgba(220,54,54,0.24)">5000+</b> IOT-devices connection project.-->
<a href="https://www.advantech.com/zh-tw/srp/cold-chain-management-solutions" target="_blank" rel="external">
<span class="inline-block text-gray-550 print:text-black font-normal group-hover:text-gray-700 transition duration-100 ease-in">↗</span>
</a>
</li>
<li class="work-exp-li ">
<span class="work-exp-li-arrow">›</span>
<b style="background: rgba(220,54,54,0.24)">Achieved high feedback</b> at the 2020 Advantech Industrial-IoT World Partner Conference through the check-in flow system that I was in charge of.
<!-- <b style="background: rgba(220,54,54,0.24)">Achieve high feedback</b> in the 2020 Advantech Industrial-IoT World Partner Conference through the check-in flow system that I am in charge of.-->
<a href="https://www.youtube.com/watch?v=z2cZGjA0TS4" target="_blank" rel="external">
<span class="inline-block text-gray-550 print:text-black font-normal group-hover:text-gray-700 transition duration-100 ease-in">↗</span>
</a>
</li>
</ul>
</li>
<li style="margin-top: 40px">
<strong style="width: 150px;">Jsw Corp.</strong>
<img src="https://shoplineimg.com/6178e68fa90ab30016ce019c/6193c7c29b0ef2003bac9c79/x140.webp?source_format=png"
height="15px" />
<p style="text-align:left;margin-top: 10px" class="wexp text-gray-650">Sep 2016 – Aug 2018</p>
<ul class="">
<li class="work-exp-li ">
<span class="work-exp-li-arrow">›</span>
Implement functions compromising with the hardware team and cloud team, and customizing UI for multiple manufacturers.
</li>
<li class="work-exp-li ">
<span class="work-exp-li-arrow">›</span>
Port and implement Android SDK and develop JNI to control IP Cameras, Electronic locks, and homely devices.
</li>
<li class="work-exp-li ">
<span class="work-exp-li-arrow">›</span>
Improve the efficiency of the code base established by outsourcing and decreased costs of maintenance.
</li>
<li class="work-exp-li " >
<span class="work-exp-li-arrow">›</span>
App customization (Feature, OverLay, Image):
</li>
<li class="work-exp-li " style="margin-bottom: 65px">
<span class="work-exp-li-arrow">›</span>
App SDK development:
<ul style="margin-top: 3px">
<li>Shared function management.</li>
<li>Considerations for program coupling.</li>
<li>JNI Build.</li>
</ul>
</li>
<li class="work-exp-li " style="margin-bottom: 65px">
<span class="work-exp-li-arrow">›</span>
App performance optimization:
<ul style="margin-top: 3px">
<li>Native object performance processing.</li>
<li>Multi-Thread implementation and analysis.</li>
<li>Activity, Fragment LifeCycle analysis and control.</li>
</ul>
</li>
<li class="work-exp-li " >
<span class="work-exp-li-arrow">›</span>
App Framework with Design Pattern.
</li>
<li class="work-exp-li " >
<span class="work-exp-li-arrow">›</span>
Customize Object.
</li>
<li class="work-exp-li " >
<span class="work-exp-li-arrow">›</span>
GCM, FCM implementation and debugging.
</li>
<li class="work-exp-li " >
<span class="work-exp-li-arrow">›</span>
App multi-device quality control.
</li>
<li class="work-exp-li " style="margin-bottom: 25px">
<span class="work-exp-li-arrow">›</span>
IOT product API implementation, integration and spec considerations.
<ul style="margin-top: 3px">
<li>API integration, TCP, UDP data processing.</li>
</ul>
</li>
<li class="work-exp-li " >
<span class="work-exp-li-arrow">›</span>
AOSP exploration and analysis.
</li>
<li class="work-exp-li " >
<span class="work-exp-li-arrow">›</span>
Gradle implementation of a single product line, multi-customer control.
</li>
</ul>
</li>
<li style="margin-top: 20px">
<strong style="width: 150px">Flowring</strong>
<img src="data:image/png;base64,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"
width="100px">
<p style="text-align:left" class="wexp text-gray-650">Apr 2014 – Aug 2016</p>
<ul class="">
<li class="work-exp-li " style="margin-bottom: 25px">
<span class="work-exp-li-arrow">›</span>
Develop software packages used for various interior RD teams such as IOT-workflow software, Business Resource Management, a workflow engine platform, and Enterprise portal, an enterprise domestic web page.
</li>
<li class="work-exp-li ">
<span class="work-exp-li-arrow">›</span>
Handle replication issues like UI-changes, functional improvement and customizing client demands.
</li>
<li class="work-exp-li " style="margin-bottom: 85px">
<span class="work-exp-li-arrow">›</span>
Development of BPM software (AgentFlow):
<ul style="margin-top: 3px">
<li>Form development.</li>
<li>System logic performance tuning.</li>
<li>Development and maintenance of public UI.</li>
<li>Development and maintenance of BPM Engine API.</li>
</ul>
</li>
<li class="work-exp-li " style="margin-bottom: 25px">
<span class="work-exp-li-arrow">›</span>
Collect customer requirements and develop new features:
<ul style="margin-top: 3px">
<li>Implement customer requirements to enhance product competitiveness.</li>
</ul>
</li>
<li class="work-exp-li " style="margin-bottom: 25px">
<span class="work-exp-li-arrow">›</span>
Control the progress of product line development (RPM):
<ul style="margin-top: 3px">
<li>Control manpower costs.</li>
</ul>
</li>
<li class="work-exp-li ">
<span class="work-exp-li-arrow">›</span>
Android development and testing:
<ul>
<li>The product line is an IM communication software and includes planning for payment and logistics services.</li>
<li>Discuss product issues with customers and explore solutions.</li>
<li>Explore the technology required for the product and share what is learned with colleagues.
</li>
</ul>
</li>
</ul>
</li>
</ul>
<br><br>
<br><br>
<hr/>
<!-- Projects -->
<!-- <p style="text-align:justify"><strong><font size="4px" class="pj1">In charge of-->
<!-- Projects</font></strong></p>-->
<!-- <ul>-->
<!-- <li><p style="text-align:left" class="pj8">Inspection system for Retail</p></li>-->
<!-- <li>-->
<!-- <p style="text-align:left" class="pj2">MEAN (MongoDB, Express, AngularJS, NodeJS)-->
<!-- Website, dedicated for ERM system in 100+ employees company such as civil industry in-->
<!-- Taiwan.</p>-->
<!-- </li>-->
<!-- <li><p style="text-align:left" class="pj3">Cold Chain Management for Wholesale, develop edge-->
<!-- device in Android.</p></li>-->
<!-- <li><p style="text-align:left" class="pj4">Rainfall prediction program</p></li>-->
<!-- <li><p style="text-align:left" class="pj5">Business Process Management</p></li>-->
<!-- <li><p style="text-align:left" class="pj6">Enterprise Resource Management</p></li>-->
<!-- <li><p style="text-align:left" class="pj7">Geographic to learn japanese</p></li>-->
<!-- </ul>-->
<!-- <br><br>-->
<!-- <hr>-->
<!-- Publications -->
<p style="text-align:justify"><strong><font size="4px" class="pp1">Publications</font></strong>
<table id="pubList" border="0" cellpadding="0" width="100%"
style="border-spacing: 10px 18px; line-height:16pt; border: 0px;">
<!-- #1 -->
<tr style="border-width: 10px">
<td style="border: 0px;">
<p style="text-align:justify"><strong><font size="2px" class="pp2">Thesis</font></strong></p>
<ul>
<li onclick="gtagEvent('event', 'my publication Click', 'Click', 'thesis', 5)">
<p><b class="pp3">Numerical Simulation of 2D Free-surface Potential Flows Using Modified
Finite Point Method</b><br>
<b class="pp4">I-Chen Tsu</b>,
<w class="pp5">Ting-Kuei Tsay.</w>
<br>
<a href="http://dx.doi.org/10.6342%2fNTU.2012.01477" target="_blank" rel="external">10.6342/NTU.2012.01477</a>
<br>
<a href="https://drive.google.com/file/d/11Qe5mrNnRW8yEAZEgojlhew256G-vHkt/view?usp=sharing"
target="_blank" rel="external" ; style="color: #EE7F2D;">[Paper]</a>
</p>
</li>
</ul>
</td>
</tr>
<!-- #2 -->
<tr style="border-width: 10px">
<td style="border: 0px;">
<p style="text-align:justify"><strong><font size="2px" class="pp6">Journals</font></strong>
</p>
<ul>
<li onclick="gtagEvent('event', 'my publication Click', 'Click', 'journal', 5)">
<p><b>Applicability of the Lagrangian Time Scheme to Water
Wave Simulation</b><br>
Nan-Jing Wu,
<w class="pp5">Ting-Kuei Tsay,</w>
Yang-Yih Chen, <b class="pp4">I-Chen Tsu</b>.
<br>
p197-202, Proceedings of the 35th Ocean Engineering Conference in Taiwan
National Sun-Yat-Sen University, November 2013
<br>
<a href="http://www.tsoe.org.tw/download/thesis/2013B4.pdf" target="_blank"
rel="external" ; style="color: #EE7F2D;">[Link]</a>
</p>
</li>
</ul>
</td>
</tr>
<!-- #3 -->
<tr style="border-width: 10px">
<td style="border: 0px;">
<div class="outside">
<div class="left1">
<p style="text-align:justify"><strong><font size="2px"> - Apps</font></strong></p>
<ul>
<li onclick="gtagEvent('event', 'my app link Click', 'Click', '2048', 10)">
<p><b>2048</b><br>
on Android
<br>
Dec. 2017
<br>
<!-- <a href="https://play.google.com/store/apps/details?id=com.ichen.game"-->
<!-- target="_blank" rel="external" ; style="color: #EE7F2D;">[Google-->
<!-- Play]</a>-->
</p>
</li>
<li onclick="gtagEvent('event', 'my app link Click', 'Click', 'DrawNSend', 10)">
<p>
<strong><w href="img/app-DrawNSend.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/app-DrawNSend.png' width='600px'>"
class="showImageToolTip">DrawNSend</w></strong>
<br>
on Android
<br>
Nov. 2019
<br>
<a href="https://play.google.com/store/apps/details?id=com.vhcc.drawnsend"
target="_blank" rel="external" ; style="color: #EE7F2D;">[Google
Play]</a>
</p>
</li>
<li onclick="gtagEvent('event', 'my app link Click', 'Click', 'jp web app', 10)">
<p>
<strong><w href="img/web-jp-demo.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/web-jp-demo.png' width='600px'>"
class="showImageToolTip">Japan geographic map</w></strong>
<br>
on Web App
<br>
Mar. 2020
<br>
It's the tool for learning japanese.
<br>
<a href="https://jp.ichenprocin.dsmynas.com" target="_blank"
rel="external" ;
style="color: #EE7F2D;">[Web Site]</a>
</p>
</li>
</ul>
</div>
<div class="right1">
<p style="text-align:justify"><strong><font size="2px"
class="pp7">Websites</font></strong>
</p>
<ul>
<li onclick="gtagEvent('event', 'my app link Click', 'Click', 'VHC Web', 10)">
<p>
<strong><w href="img/web-jsp-vhc.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/web-jsp-vhc.png' width='600px'>"
class="showImageToolTip">保健室眼鏡</w></strong>
<br>
<w class="pp8">1F., No.23-3, Ln. 51, Sec. 1, Da’an Rd., Da’an Dist.,
Taipei
106
</w>
<br>
2014
<br>
- (JSP + Hibernate + Spring + Struts 2)
<br>
<a href="https://web.ichenprocin.dsmynas.com/VHCC/page/HomePage/index.jsp"
target="_blank" rel="external" ; style="color: #EE7F2D;">[Link]</a>
<a href="https://goo.gl/maps/8SHgPpf65ds33NRa6"
target="_blank" rel="external" ; style="color: #EE7F2D;">[Google Map]</a>
</p>
</li>
<li onclick="gtagEvent('event', 'my app link Click', 'Click', 'chongjun ERM', 10)">
<p>
<strong><w href="img/web-chongjun-erm.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/web-chongjun-erm.png' width='600px'>"
class="showImageToolTip">崇峻工程顧問有限公司 Enterprise Resource Management</w></strong>
<br>
2018
<br>
- (MongoDB, Express, Gulp, AngularJs, NodeJs)
<br>
<a href="http://akveo.com/blur-admin-mint/" target="_blank"
rel="external" ;
style="color: #EE7F2D;"> [ERM]</a>
</p>
</li>
<li onclick="gtagEvent('event', 'my app link Click', 'Click', 'strava', 10)">
<p>
<strong><w href="img/web-strava.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/web-strava.png' width='800px'>"
class="showImageToolTip">Strava Workout Map</w></strong>
<br>
2021
<br>
<a href="https://strava.ichenprocin.dsmynas.com" target="_blank"
rel="external" ;
style="color: #EE7F2D;"> [Strava]</a>
</p>
</li>
</ul>
</div>
<div class="right2">
<p style="text-align:justify"><strong><font size="2px" class="pp9"> - Open
Source</font></strong></p>
<ul>
<li onclick="gtagEvent('event', 'my git link Click', 'Click', 'DraggableCard', 10)">
<p>
<b>DraggableCard</b>
<br>
- Android component
<br>
<a href="https://github.com/VHCC/DraggableCard" target="_blank"
rel="external" ;
style="color: #EE7F2D;"> [Github]</a>
</p>
</li>
<li onclick="gtagEvent('event', 'my git link Click', 'Click', 'ChatBot-Python-Screen', 10)">
<p>
<strong><w href="./img/line-bot-python-screen.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/line-bot-python-screen.png' width='300px'>"
class="showImageToolTip">ChatBot-learning chat </w></strong>
<br>
<w class="pp10">(using Line scan the qrcode, then make dialogue with
the Bot)
</w>
<br>
- Python + Line API
<br>
</p>
</li>
<li onclick="gtagEvent('event', 'my git link Click', 'Click', 'ChatBot-Java-Docker', 10)">
<p>
<strong><w href="./img/line-bot-java-docker.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/line-bot-java-docker.png' width='300px'>"
class="showImageToolTip">ChatBot-Get Nice Sentence </w></strong>
<br>
- Java @ Docker
</p>
</li>
<li onclick="gtagEvent('event', 'my git link Click', 'Click', 'ChatBot-NodeJs-K8s', 10)">
<p>
<strong><w href="./img/line-bot-nodejs-k8s.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/line-bot-nodejs-k8s.png' width='300px'>"
class="showImageToolTip">ChatBot-Get Nice Sentence </w></strong>
<br>
- NodeJs @ K8s
</p>
</li>
<li onclick="gtagEvent('event', 'my git link Click', 'Click', 'ChatBot-NodeJs-AWS-Lambda', 10)">
<p>
<strong><w href="./img/line-bot-nodejs-aws-lambda.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/line-bot-nodejs-aws-lambda.png' width='300px'>"
class="showImageToolTip">ChatBot-Get Nice Sentence </w></strong>
<br>
- NodeJs @ AWS-Lambda
</p>
</li>
<li onclick="gtagEvent('event', 'my git link Click', 'Click', 'Face Detection', 10)">
<p style="text-align:left">
<strong><w href="img/os-openCV330-face-detection.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/os-openCV330-face-detection.png' width='300px'>"
class="showImageToolTip pp11">Face Detection</w></strong>
<!-- <br>-->
<!-- <w class="pp11">Face Detection</w>-->
<br>
- Android + OpenCV330
<br>
<a href="https://github.com/VHCC/OpenCV330Android" target="_blank"
rel="external" ; style="color: #EE7F2D;"> [GitHub]</a>
</p>
</li>
<li onclick="gtagEvent('event', 'my git link Click', 'Click', 'Age Estimation', 10)">
<p style="text-align:left">
<strong><w href="img/os-pyTorch-face-age-estimation.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/os-pyTorch-face-age-estimation.png' width='300px'>"
class="showImageToolTip pp12">Age-Estimation</w></strong>
<!-- <w class="pp12">Age-Estimation</w>-->
<br>
- python + pytorch
<br>
<a href="https://github.com/VHCC/PyTorch-age-estimation" target="_blank"
rel="external" ; style="color: #EE7F2D;"> [GitHub]</a>
</p>
</li>
</ul>
</div>
</div>
</td>
</tr>
</table>
</p>
<!-- <br><br>b-->
<hr>
<!-- Experience -->
<p style="text-align:justify"><strong><font size="4px" class="exp1">Skill Experience</font></strong>
</p>
<div class="outside">
<div class="left1">
<!-- #left1<br/>-->
<!-- width:要設定;<br/>-->
<!-- float:left;<br/>-->
<!-- margin-right:10px;-->
<ul>
<li>
<strong>
<p style="text-align:left;">DevOps</p>
</strong>
<ul>
<li><p>Docker</p>
<ul>
<li>
<strong><p href="img/skill-docker-portainer-dashboard.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/skill-docker-portainer-dashboard.png' width='1024px'>"
class="showImageToolTip">portainer</p></strong>
</li>
</ul>
</li>
<li><p>Kubernetes</p>
<ul>
<li>
<strong><p href="img/skill-k8s-kuboard.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/skill-k8s-kuboard.png' width='1024px'>"
class="showImageToolTip">kuboard</p></strong>
</li>
</ul>
</li>
<li onclick="gtagEvent('event', 'my app link Click', 'Click', 'Jenkins', 10)">
<p>
<strong><w href="img/skill-jenkins-dashboard.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"
data-jbox-content="<img src='img/skill-jenkins-dashboard.png' width='1024px'>"
class="showImageToolTip">Jenkins</w></strong>
<a href="https://jenkins.ichenprocin.dsmynas.com/?auto_refresh=true"
target="_blank"
rel="external" ; style="color: #EE7F2D;"> [Jenkins CI]</a>
</p>
<ul>
<li><p>Slave</p></li>
<li><p>Pipeline</p></li>
</ul>
</li>
<li onclick="gtagEvent('event', 'my app link Click', 'Click', 'DataDog', 10)">
<p>
DataDog
</p>
<ul>
<li>
<strong><p href="img/skill-ddg-infrastructure.png" target="_blank" rel="external"
style="color: #45adc5; font-style: italic"