-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathen.html
More file actions
1141 lines (1043 loc) · 53.1 KB
/
Copy pathen.html
File metadata and controls
1141 lines (1043 loc) · 53.1 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
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/bootstrap-social.css">
<style>
* {
font-family: "Helvetica", "Arial", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}
.translate{
position: absolute;
top:10px;
right:10px;
}
</style>
<title>Chia-Ning Kuo (etrex)</title>
</head>
<body>
<div class="translate">
<a href="en.html">English</a> | <a href="zh.html">中文</a>
</div>
<div class="container">
<div class="py-5 text-center">
<img class="d-block mx-auto mb-4" src="./img/avatar.jpg" alt="" width="150" height="150">
<h2>Chia-Ning Kuo (etrex)</h2>
<p class="lead">
Line API Expert | Developer of Kamigo the Chatbot <br />
Senior Web Engineer @New Taipei City, Taiwan <br />
<a class="btn btn-social-icon btn-facebook" href="https://www.facebook.com/etrex.kuo">
<span class="fa fa-facebook"></span>
</a>
<a class="btn btn-social-icon btn-github" href="https://github.com/etrex">
<span class="fa fa-github"></span>
</a>
<a href="mailto:et284vu065k3@gmail.com" target="_blank">et284vu065k3@gmail.com</a>
</p>
</div>
<div class="row">
<!-- Experience -->
<div class="py-3 col-xl-12">
<h2>Experience</h2>
<hr />
<div class="row">
<div class="col-sm-8">
<strong>Eslite Spectrum</strong> Senior Principal Engineer
</div>
<div class="col-sm-4 text-right">
2022/01 - 2024/09
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>YOCTOL, Inc</strong> - Senior Software Engineer
</div>
<div class="col-sm-4 text-right">
2019/09 - 2022/01
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>5xRuby, Inc</strong> - Senior Web Engineer
</div>
<div class="col-sm-4 text-right">
2017/10 - 2019/08
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>SOHO</strong> - Chatbot developer
</div>
<div class="col-sm-4 text-right">
2017/03 - 2017/10
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>School of Continuing Education, Chinese Culture University</strong> - Mobile Application Team Leader
</div>
<div class="col-sm-4 text-right">
2015/07 - 2017/03
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>School of Continuing Education, Chinese Culture University</strong> - Senior Software Engineer
</div>
<div class="col-sm-4 text-right">
2014/07 - 2015/07
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>School of Continuing Education, Chinese Culture University</strong> - Software Engineer
</div>
<div class="col-sm-4 text-right">
2013/03 - 2014/07
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>School of Continuing Education, Chinese Culture University</strong> - Front-End Developer
</div>
<div class="col-sm-4 text-right">
2011/03 - 2013/03
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>Tornado Technologies Co., Ltd.</strong> - Front-End Developer
</div>
<div class="col-sm-4 text-right">
2010/09 - 2011/03
</div>
</div>
</div>
<!-- Education -->
<div class="py-3 col-xl-12">
<h2>Education</h2>
<hr />
<div class="row">
<div class="col-sm-8">
<strong>National Taiwan University of Science and Technology</strong> - Master of Information Management
</div>
<div class="col-sm-4 text-right">
2011/01
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>National Taiwan University of Science and Technology</strong> - Bachelor of Information Management
</div>
<div class="col-sm-4 text-right">
2009/01
</div>
</div>
</div>
<!-- Achievement -->
<div class="py-3 col-xl-12">
<h2>Achievement</h2>
<hr />
<div class="row">
<div class="col-sm-6">
<a href="https://www.line-community.me/ja/apiexpert/detail/60adb082851f7443b473e8fe"><strong>Line API Expert</strong></a>
</div>
<div class="col-sm-6 text-right">
2018 -
</div>
</div>
<div class="row">
<div class="col-sm-8">
<a href="https://ithelp.ithome.com.tw/users/20107309/ironman/3976"><strong>Proof of completion - 2021 iTHome ironman competition</strong></a>
</div>
<div class="col-sm-4 text-right">
2021/09/16
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://ithelp.ithome.com.tw/2018ironman/reward"><strong>Merit Award-2018 ithome ironman competition</strong></a>
</div>
<div class="col-sm-6 text-right">
2018/04/22
</div>
</div>
</div>
<!-- Talks -->
<div class="py-3 col-xl-12">
<h2>Talks</h2>
<hr />
<div class="row">
<div class="col-sm-6">
<a href="https://www.facebook.com/story.php?story_fbid=843009741297603&id=100067657535984"><strong>從 GPT 基礎到 LINE Bot 的實際應用</strong></a>
<a href="https://docs.google.com/presentation/d/1o8072aOLld2h6JsdFzq-FRmAvupiJ3qRi5EDmqsPTp0/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.facebook.com/story.php?story_fbid=843009741297603&id=100067657535984">PPDL 塑膠設計實驗室</a> - 2024/09/06
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.accupass.com/event/2408060621311484141050"><strong>LINE Bot 的新時代:GPT 如何提升用戶體驗</strong></a>
<a href="https://docs.google.com/presentation/d/1kGBr6zj_fc4VUrJpQ466OEwS7T40j4jvW8iaV1eKTcQ/edit">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.accupass.com/event/2408060621311484141050">CatBeer 貓啤 AI 小聚 #03</a> - 2024/08/20
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://coscup.org/2024/zh-TW/session/YANWW7"><strong>如何實作一個 GPT 客服 LINE Bot</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://coscup.org/2024/zh-TW/session/YANWW7">COSCUP 2024</a> - 2024/08/03
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://blindegg.kktix.cc/events/202401gai"><strong>用 GPT 做密室逃脫</strong></a>
<a href="https://docs.google.com/presentation/d/17OpOXVXDgkQOslIzH81uPJZGrULm4Mq6me0dwj3apOg/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://blindegg.kktix.cc/events/202401gai">01/17 Generative AI 年會小聚 2024 - 台北場 ft. HappyDesigner Meetup</a> - 2024/01/17
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://modernweb.tw/2023/speaker-page/1214"><strong>不要只當顧問,把 ChatGPT 變成你的員工</strong></a>
<a href="">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://modernweb.tw/">Modern Web Conference 2023</a> - 2023/11/09
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://blindegg.kktix.cc/events/202310gai"><strong>從對話式表單看 Function Calling</strong></a>
<a href="https://docs.google.com/presentation/d/1VwOjLyJyUaUcuHl8BOVGyhKcLncpts2bPAlVuCfHv0o/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://blindegg.kktix.cc/events/202310gai">10/18 Generative AI 年會小聚 - 台北場 ft. HappyDesigner Meetup</a> - 2023/10/18
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://chatbots.kktix.cc/events/chatbots-meetup-in-central-taiwan-025"><strong>不要讓 ChatGPT 教你做事</strong></a>
<a href="https://docs.google.com/presentation/d/13UuI0RrOVxYIjK7yF3A_KGBnOkLKXIeFr-ClVGV1_-4/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://chatbots.kktix.cc/events/chatbots-meetup-in-central-taiwan-025">中部人的聊天機器人小小聚 #25 @ 南方書店</a> - 2023/10/14
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://coscup.org/2023/zh-TW/session/JTDYTG"><strong>深入 LINE Bot 與 ChatGPT Plugin</strong></a>
<a href="https://docs.google.com/presentation/d/1hu8z2zDsAr2txM2pRDQlV0GQfx9jiFSzpTX_o7gFKgA/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://coscup.org/2023/zh-TW/session/JTDYTG">COSCUP 2023</a> - 2023/07/30
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://coscup.org/2023/zh-TW/session/GYHMXU"><strong>Turbo 之力:深度探討跟 JS 說再見的單頁式網站技術</strong></a>
<a href="https://docs.google.com/presentation/d/18VeSZVHbBig73KNyWT59dz4yQ8tEmvKCHDYlEDexMQ8/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://coscup.org/2023/zh-TW/session/GYHMXU">COSCUP 2023</a> - 2023/07/30
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://iamhlb.notion.site/3-22-Generative-AI-ft-HappyDesigner-Meetup-1f65cf5719734677a58352e05ebe0104"><strong>Notion AI 機器人助手的時代</strong></a>
<a href="https://hackmd.io/@etrex/B1jY3pUx3">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://blindegg.kktix.cc/events/202303gai">3/22 Generative AI 小聚 ft. HappyDesigner Meetup</a> - 2023/03/22
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://chatbots.kktix.cc/events/chatbots-meetup-in-central-taiwan-022"><strong>使用 Rails Template 快速建立 LINE Bot 專案</strong></a>
<a href="https://docs.google.com/presentation/d/1IwW8uo5JeBH4c0WqFejbnKLkCXj2SRXTP-e6VjCl_jU/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://chatbots.kktix.cc/events/chatbots-meetup-in-central-taiwan-022">中部人的聊天機器人小小聚 #22</a> - 2022/08/16
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://coscup.org/2022/zh-TW/session/QWT9TG"><strong>使用 Rails Template 快速建立 LINE Bot 專案</strong></a>
<a href="https://docs.google.com/presentation/d/1IwW8uo5JeBH4c0WqFejbnKLkCXj2SRXTP-e6VjCl_jU/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://coscup.org/2022/zh-TW/session/QWT9TG">COSCUP 2022</a> - 2022/07/31
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://coscup.org/2022/zh-TW/session/MLQBEL"><strong>帶您讀源碼:LIFF Mock</strong></a>
<a href="https://docs.google.com/presentation/d/1FjArcSJUQmDjGiLA9WsYDwA9fXOSjamiZPNtvQNXyCc/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://coscup.org/2022/zh-TW/session/MLQBEL">COSCUP 2022</a> - 2022/07/30
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.facebook.com/jarsing/videos/519447363148587/?idorvanity=592060117639034"><strong>最簡單易懂的 LIFF 入門</strong></a>
<a href="https://docs.google.com/presentation/d/1GOerckvzrN4tsrwf-l025O9c_Al59S7tC9nEWFnSYQM/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://chatbots.kktix.cc/events/chatbots-meetup-in-central-taiwan-020">中部人的聊天機器人小小聚 #20</a> - 2022/04/12
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.youtube.com/watch?v=j_4Fo7hlGEY"><strong>使用 LINE Bot 框架 Kamigo 快速開發</strong></a>
<a href="https://drive.google.com/file/d/1Cq1jnQ-U-3Ha0fvAIQU0RkxG-loXtXQp/view">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://engineering.linecorp.com/zh-hant/blog/line-techpluse-2022-session-throw-back">LINE Techpulse 2022</a> - 2022/01/20
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.tibame.com/offline/linebot?classUid=453"><strong>Develop a commercial LINE Bot</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.tibame.com/offline/linebot?classUid=453">TibaMe Live Course</a> - 2021/11/13
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.tibame.com/course/2255"><strong>Build your own group buying LINE Bot with zero knowledge</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.tibame.com/course/2255">TibaMe Live Course</a> - 2021/10/23
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://chatbots.kktix.cc/events/chatbots-meetup-in-central-taiwan-017"><strong>Deep into the LINE Flex Message</strong></a>
<a href="https://docs.google.com/presentation/d/1jpdOnQ2G5QVZJ37VfiaPE-34piqUqPp69nABYcmNSfI/edit#slide=id.p">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://chatbots.kktix.cc/events/chatbots-meetup-in-central-taiwan-017">Chatbots meetup Taichung 17</a> - 2021/09/09
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.facebook.com/events/448292566237747/"><strong>Implement a simple queue number machine LINE Bot with Kamigo LINE Bot framework</strong></a>
<a href="https://docs.google.com/presentation/d/1WCeoOwDzq-oeBWXeUIYUsfpBbDRSnMhBWMeqYEfQ6jU/edit#slide=id.p">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.facebook.com/events/448292566237747/">Chatbots meetup 29</a> - 2021/04/26
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.facebook.com/watch/live/?ref=watch_permalink&v=450360719582354"><strong>Approaching the limits of LINE Bot from the perspective of developers</strong></a>
<a href="https://docs.google.com/presentation/d/12dgC2KANuHcggl9Vou4T8eC0jan_UaZ4GSpWMSqgbE4/edit#slide=id.p">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.facebook.com/watch/live/?ref=watch_permalink&v=450360719582354">Will 保哥的技術交流中心 Live</a> - 2021/04/13
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.facebook.com/events/400006678015664/"><strong>Meet the LINE Bot framework Bottender and Kamigo</strong></a>
<a href="https://docs.google.com/presentation/d/1ApVO1nIFjDwYV5AUO7pJ7l0fswfwvxmWD5wARA3noa4/edit#slide=id.p">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.facebook.com/events/400006678015664/">Chatbots meetup 26</a> - 2020/12/21
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.facebook.com/events/877847119698657"><strong>you must to know the "chat bot"</strong></a>
<a href="https://docs.google.com/presentation/d/1-ilFkVpFN2rBx6lckHwwcqESMFozQqWYH0ZgnPhBfeI/edit#slide=id.p">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.facebook.com/events/877847119698657">YS高雄青年職涯發展中心 Course</a> - 2020/12/19
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://engineering.linecorp.com/zh-hant/blog/line-taiwan-techpulse-2020/"><strong>Meet the LINE Bot framework Bottender and Kamigo</strong></a>
<a href="https://docs.google.com/presentation/d/1ApVO1nIFjDwYV5AUO7pJ7l0fswfwvxmWD5wARA3noa4/edit#slide=id.p">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://engineering.linecorp.com/zh-hant/blog/line-taiwan-techpulse-2020/">LINE TECHPULSE 2020</a> - 2020/12/18
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://mopcon.org/2020/schedule/2020031/"><strong>The design of the chatbot framework Bottender and Kamigo</strong></a>
<a href="https://docs.google.com/presentation/d/1BbfW8ZkDS1lt-uzFXop6k2PmXg30OcQI35NCeH-S9AY/edit#slide=id.p">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://mopcon.org/2020/">MOPCON 2020</a> - 2020/10/25
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://coscup.org/2020/zh-TW/agenda/JQPSPU"><strong>LINE Bot design pattern</strong></a>
<a href="https://docs.google.com/presentation/d/1PlUMItXtx3vTRa2US1kE1-Nr11GwqIePQoBN7IeptHE/edit#slide=id.p">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://coscup.org/2020/zh-TW/">COSCUP 2020</a> - 2020/08/02
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://event.oia.nycu.edu.tw/page/competition#montors"><strong>LINE API online memtor</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://event.oia.nycu.edu.tw/">NYCU 2021 Online Makeathon</a> - 2020/07/02
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.facebook.com/events/255364399025115/"><strong>Conversational form architecture design</strong></a>
<a href="https://docs.google.com/presentation/d/1np4_d6grkw6kMD-jSnMFFj2yH8FwT2SaEdNKKfA0w7w/edit">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.facebook.com/events/255364399025115/">Chatbots meetup 20</a> - 2020/06/23
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://slackcommunity.com/events/details/slack-taipei-presents-slack-kai-wai-gua-yong-bottender-framework-chuan-jie-slack-api/"><strong>Connect to Slack API with Bottender framework</strong></a>
<a href="https://docs.google.com/presentation/d/1wZcRbSHzbl4EqSA0Zbbyb7n9fgKsuEAeOG-HWe8AJLc/edit#slide=id.p">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://slackcommunity.com/events/details/slack-taipei-presents-slack-kai-wai-gua-yong-bottender-framework-chuan-jie-slack-api/">Slack Platform Community Taipei 2</a> - 2020/06/03
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.facebook.com/events/304099840482673/"><strong>The Best Practice Of LIFF</strong></a>
<a href="https://docs.google.com/presentation/d/1T8muJA2tZgUfBgRLd2K_Eurek_vtJXekcq5bc_96kfU/edit#slide=id.p">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.facebook.com/events/304099840482673/">Chatbots meetup 16</a> - 2020/01/15
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://techpulse.line.me/"><strong>Bot framework - Bottender & Kamigo (POSTER SESSION)</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://techpulse.line.me/">LINE TAIWAN TECHPULSE 2019</a> - 2019/12/4
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://chatbots.kktix.cc/events/chatbots-taichung-004"><strong>Chatbot MVC Framework - Kamigo</strong></a>
<a href="https://docs.google.com/presentation/d/1bpCsME6XC7ZOiyGRkNB2Uhcm4WbJsyMUacmNwp43kSY/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://chatbots.kktix.cc/events/chatbots-taichung-004">Chatbots meetup Taichung 4</a> - 2019/11/6
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://chatbots.kktix.cc/events/meetup-013"><strong>Form validation, search and paging on LINE Bot</strong></a>
<a href="https://docs.google.com/presentation/d/1MNCbVIsMoLAWtPjg22e1-_3PLA2OpyHKSAIvw53Vdsk/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://chatbots.kktix.cc/events/meetup-013">Chatbots meetup 13</a> - 2019/10/22
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://coscup.org/2019/programs/a0c2a919-deaf-413a-8a71-09ac877e0017"><strong>A chatbot MVC framework for web developer</strong></a>
<a href="https://drive.google.com/file/d/1LQi28GoEDk7R7NJ8PFrHhi0wJmgSbeNr/view?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://coscup.org/2019/">COSCUP 2019</a> - 2019/08/18
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://chatbots.kktix.cc/events/meetup-009"><strong>Chatbot MVC framework design</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://chatbots.kktix.cc/events/meetup-009">Chatbots meetup 9</a> - 2019/04/12
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://chatbots.kktix.cc/events/meetup-008"><strong>A story about develop LINE Bot Kamigo</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://chatbots.kktix.cc/events/meetup-008">Chatbots meetup 8</a> - 2019/02/25
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://chatbots.kktix.cc/events/0d69ab76-copy-1"><strong>Talking about the new features of Kamigo and the wishes from users.</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.facebook.com/events/1166024543551871/">Chatbots meetup 6.5</a> - 2018/10/05
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.techbang.com/posts/59974-lectures-to-talk-about-robots">
<strong>The growth and challenges of the Line chatbot Kamigo.</strong>
</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.techbang.com/tags/18226">Techbang Lecture Night</a> - 2018/08/21
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://modernweb.tw/speakers.html#s3574">
<strong>Accidentally making a line chatbot of 600,000 users - Kamigo</strong>
</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://modernweb.tw">ModernWeb</a> - 2018/07/18
</div>
</div>
<div class="row">
<div class="col-sm-6">
<strong>Chatbot design for beginners.</strong>
</div>
<div class="col-sm-6 text-right">
A lecture in NTUST - 2018/05/18
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://5xruby.kktix.cc/events/rejectconf2018">
<strong>Accidentally making a line chatbot of 600,000 users - Kamigo</strong>
</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://5xruby.kktix.cc/events/rejectconf2018">RubyxElixir Reject Conf Taiwan</a> - 2018/04/14
</div>
</div>
<div class="row">
<div class="col-sm-6">
<strong>How to take chatbot cases.</strong>
</div>
<div class="col-sm-6 text-right">
Education Training in <a href="http://www.sugarfun.com.tw/">Sugarfun</a> - 2018/02/26
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.youtube.com/watch?v=ugqBYzGUFvc">
<strong>The evolution of Kamigo.</strong>
</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.facebook.com/readbook999/">Online reading club</a> - 2018/02/18
</div>
</div>
</div>
<!-- Book -->
<div class="py-3 col-xl-12">
<h2>Book</h2>
<hr />
<div class="card flex-md-row mb-4 shadow-sm h-md-250">
<div class="card-body d-flex flex-column align-items-start">
<h3 class="mb-1">
<a class="text-dark" href="#">Free chatbot development e-book</a>
</h3>
<div class="mb-3"></div>
<p class="card-text mb-auto">Put some free textbooks related to chatbots made by me. When the textbooks are updated, they will be regularly posted on my fan page. Please subscribe me.</p>
<a href="https://etrex.tw/free_chatbot_book">View</a>
</div>
</div>
<div class="card flex-md-row mb-4 shadow-sm h-md-250">
<img class="card-img-left flex-auto d-none d-lg-block" style="height: 200px;" src="./img/kamigo_book.jpg">
<div class="card-body d-flex flex-column align-items-start">
<h3 class="mb-1">
<a class="text-dark" href="#">Anyone can make a Kamigo: Build your own LINE chatbot from zero.</a>
</h3>
<div class="mb-3">Chia-Ning Kuo /DrMaster Press Co., Ltd./352 pages / ISBN:9864342932 </div>
<p class="card-text mb-auto">This is an introductory book that provides a self-study program for readers who don't have any knowledge in the field of information: "Building a Kamigo of their own." Beginning with the basic concepts of chatting robots, this book gradually teaches all relevant knowledge and realizes a chatbot of its own from scratch! Contains development environment settings, website setup, HTTP protocol, Webhook, Line Messaging API, etc. will be described in detail.</p>
<a href="https://www.tenlong.com.tw/products/9789864342938">Purchase at Tenlong Computer Book Co, Ltd.</a>
</div>
</div>
<div class="card flex-md-row mb-4 shadow-sm h-md-250">
<img class="card-img-left flex-auto d-none d-lg-block" style="height: 200px;" src="./img/hair_matting.jpg">
<div class="card-body d-flex flex-column align-items-start">
<h3 class="mb-1">
<a class="text-dark" href="#">An Automatic Hair Matting System</a>
</h3>
<div class="mb-3">Chia-Ning Kuo, "An Automatic Hair Matting System." Master's thesis, Department of Information Management, National Taiwan University of Science and Technology, 2011.</div>
<p class="card-text mb-auto">Using our automatic hair removal system, as long as the face image is entered, the system will automatically leave the hair behind the picture and quickly generate a hair style database.
</p>
<a href="./books/AnAutomaticHairMattingSystem.pdf">View</a>
</div>
</div>
<div class="card flex-md-row mb-4 shadow-sm h-md-250">
<img class="card-img-left flex-auto d-none d-lg-block my-3 mx-5" style="height: 100px;" src="./img/ruby.png">
<div class="card-body d-flex flex-column align-items-start">
<h3 class="mb-1">
<a class="text-dark" href="#">Ruby study notes</a>
</h3>
<div class="mb-3"></div>
<p class="card-text mb-auto">I collected the problems often encountered and the corresponding solutions to ensure that next time anyone who encountered the same problem can resolve them quickly.</p>
<a href="https://etrex.gitbooks.io/ruby/content/">View</a>
</div>
</div>
</div>
<!-- Skill -->
<div class="py-3 col-xl-12">
<h2>Skill</h2>
<hr />
<div class="row">
<div class="col-sm-4">
<h4>Front end</h4>
<ul>
<li>JavaScript / jQuery / HotWire</li>
<li>ActionScript 3 / Flash</li>
<li>CSS / Bootstrap</li>
<li>Chrome Extension</li>
</ul>
</div>
<div class="col-sm-4">
<h4>Back end</h4>
<ul>
<li>Ruby / Rails</li>
<li>C# / ASP.NET MVC</li>
<li>Node.js</li>
</ul>
</div>
<div class="col-sm-4">
<h4>Database</h4>
<ul>
<li>PostgreSQL</li>
<li>MySQL</li>
<li>Redis</li>
</ul>
</div>
<div class="col-sm-4">
<h4>API Experience</h4>
<ul>
<li>Line Messaging API</li>
<li>Line Login API</li>
<li>LIFF API</li>
<li>Telegram Bot API</li>
<li>Slack API</li>
<li>Facebook Login</li>
<li>Facebook Messenger API</li>
<li>Facebook Account Kit</li>
<li>Trello API</li>
</ul>
</div>
<div class="col-sm-4">
<h4>Domain Knowledge</h4>
<ul>
<li>Chatbot</li>
<li>E-commerce</li>
<li>Image Processing</li>
<li>Game Design</li>
<li>Education</li>
<li>Memory Method</li>
<li>Artificial Intelligence</li>
</ul>
</div>
<div class="col-sm-4">
<h4>Development Process</h4>
<ul>
<li>System Analysis / System Design</li>
<li>Design Pattern / Refactoring</li>
<li>Static Test / Dynamic Test</li>
<li>CI / CD</li>
<li>Git Command / SourceTree</li>
<li>Gitlab / Bitbucket</li>
<li>Deploy on GCP / Heroku</li>
</ul>
</div>
</div>
</div>
<!-- Works -->
<div class="py-3 col-xl-12">
<h2>Personal Works</h2>
<hr />
<div class="row">
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/kamigo01.png">
<div class="card-body">
<h5 class="card-title">Kamigo</h5>
<p class="card-text">It is the most well-known Line chatbot with 600,000 users. It provides services such as chat, fortune telling, weather check, with more features in development. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://www.kamigo.tw"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">Line chatbot</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/kamigo01.png">
<div class="card-body">
<h5 class="card-title">Kamigo</h5>
<p class="card-text">MVC chatbot framework based on Rails with Flex Message and LIFF support. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://github.com/etrex/kamigo"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">open source</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/kamigo01.png">
<div class="card-body">
<h5 class="card-title">Kamiliff</h5>
<p class="card-text">It is an accessory package of Kamigo to support LIFF API. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://github.com/etrex/kamiliff"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">open source</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/kamigo01.png">
<div class="card-body">
<h5 class="card-title">Kamiflex</h5>
<p class="card-text">Kamflex provides a good DSL, allowing you to write LINE Flex Messages using highly flexible and maintainable syntax. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://github.com/etrex/kamiflex"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">open source</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/kamigo01.png">
<div class="card-body">
<h5 class="card-title">Kamiflex Simulator</h5>
<p class="card-text">An online WYSIWYG editor that allows you to edit Kamiflex syntax and see the results instantly.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://kamiflex.etrex.tw"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">open source</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/kamishop.jpeg">
<div class="card-body">
<h5 class="card-title">Kamishop</h5>
<p class="card-text">A technology demonstration LINE Bot that provides group buying services. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://lin.ee/hLy04I6"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">LINE Bot</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/dice_dont_thanks.jpeg">
<div class="card-body">
<h5 class="card-title">Dice, Don't Thanks</h5>
<p class="card-text">A LINE Bot that provides dice throwing services. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://lin.ee/jPSm1co"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">LINE Bot</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/agricola_score.jpeg">
<div class="card-body">
<h5 class="card-title">Agricola Score Calculator</h5>
<p class="card-text">A LINE Bot that provides score calculations for Agricola board games. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://lin.ee/fa05VfN"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">LINE Bot</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/debugo.jpeg">
<div class="card-body">
<h5 class="card-title">Debugo</h5>
<p class="card-text">A LINE Bot that provides all kinds of information that developers need to debug. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://lin.ee/iiGBwgY"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">LINE Bot</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/lol.png">
<div class="card-body">
<h5 class="card-title">Leader of Lunch on LINE</h5>
<p class="card-text">The Leader of Lunch is the meeting host responsible for presiding over what to eat for lunch on LINE and Telegram. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://lin.ee/13MWhyD"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">LINE Bot</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/lol.png">
<div class="card-body">
<h5 class="card-title">Leader of Lunch on Telegram</h5>
<p class="card-text">The Leader of Lunch is the meeting host responsible for presiding over what to eat for lunch on LINE and Telegram. </p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://t.me/leader_of_lunch_bot"><button type="button" class="btn btn-sm btn-outline-secondary">進入</button></a>
</div>
<small class="text-muted">Telegram Bot</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/kmeans.PNG">
<div class="card-body">
<h5 class="card-title">K-Means Clustering Game</h5>
<p class="card-text">I llustrated the process of k-means clustering with delicate animation by using Flash ActionScript 2.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="./flash/kMeansClustering/kMeansClustering2.html"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">Flash Game</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/etrex_maze.PNG">
<div class="card-body">
<h5 class="card-title">ETREX's Maze</h5>
<p class="card-text">This maze is characterized by turning the maze instead of turning the character when turning, simulating the reality of the lost plot.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="./flash/maze/ETREXmaze.html"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">Flash Game</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/color_alpha.PNG">
<div class="card-body">
<h5 class="card-title">Color test</h5>
<p class="card-text">Verify that if you have absolute color perception or not: as long as you see the color, you can know the corresponding RGB value.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="./flash/辨色力/colorTest.html"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">Flash Game</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/missing_mouse.PNG">
<div class="card-body">
<h5 class="card-title">MissingMouse</h5>
<p class="card-text">Test whether you have the absolute mouse sensation: the ability to know where the cursor is without looking at the cursor.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="./flash/missing_mouse/missing_mouse.html"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">Flash Game</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/pixel_ar.PNG">
<div class="card-body">
<h5 class="card-title">Pixel Ah</h5>
<p class="card-text">A game that trains memory and can also be used to measure memory size and upload/download speed in the brain.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="./flash/Pixel Ah/PixelAh.html"><button type="button" class="btn btn-sm btn-outline-secondary">Enter</button></a>
</div>
<small class="text-muted">Flash Game</small>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card mb-4 shadow-sm">
<img class="card-img-top" style="height: 225px; object-fit: contain; display: block;" src="./img/sliding_puzzle.PNG">