-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1169 lines (1067 loc) · 53.5 KB
/
Copy pathindex.html
File metadata and controls
1169 lines (1067 loc) · 53.5 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>Etrex Kuo</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>郭佳甯</h2>
<p class="lead">
Line API Expert |
卡米哥 <br />
資深後端工程師 @台灣新北市 <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>經歷</h2>
<hr />
<div class="row">
<div class="col-sm-8">
<strong>誠品生活</strong> 高級主任工程師
</div>
<div class="col-sm-4 text-right">
2022/01 - 2024/09
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>優拓資訊</strong> 資深軟體工程師
</div>
<div class="col-sm-4 text-right">
2019/09 - 2022/01
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>五倍紅寶石</strong> 資深網站工程師
</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> 聊天機器人開發者
</div>
<div class="col-sm-4 text-right">
2017/03 - 2017/10
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>文大推廣部</strong> 行動應用組組長
</div>
<div class="col-sm-4 text-right">
2015/07 - 2017/03
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>文大推廣部</strong> 資深軟體工程師
</div>
<div class="col-sm-4 text-right">
2014/07 - 2015/07
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>文大推廣部</strong> 軟體工程師
</div>
<div class="col-sm-4 text-right">
2013/03 - 2014/07
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>文大推廣部</strong> 前端開發者
</div>
<div class="col-sm-4 text-right">
2011/03 - 2013/03
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>龍捲風科技</strong> 軟體工程師
</div>
<div class="col-sm-4 text-right">
2010/09 - 2011/03
</div>
</div>
</div>
<!-- Education -->
<div class="py-3 col-xl-12">
<h2>學歷</h2>
<hr />
<div class="row">
<div class="col-sm-8">
<strong>台灣科技大學</strong> 資訊管理碩士
</div>
<div class="col-sm-4 text-right">
2011/01
</div>
</div>
<div class="row">
<div class="col-sm-8">
<strong>台灣科技大學</strong> 資訊管理學士
</div>
<div class="col-sm-4 text-right">
2009/01
</div>
</div>
</div>
<!-- Achievement -->
<div class="py-3 col-xl-12">
<h2>成就</h2>
<hr />
<div class="row">
<div class="col-sm-8">
<a href="https://www.line-community.me/ja/apiexpert/detail/60adb082851f7443b473e8fe"><strong>Line API Expert</strong></a>
</div>
<div class="col-sm-4 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>完賽 - 2021 iTHome 鐵人賽 - 使用基於 Rails 的 Kamigo 聊天機器人框架開發 LINE Bot</strong></a>
</div>
<div class="col-sm-4 text-right">
2021/09/16
</div>
</div>
<div class="row">
<div class="col-sm-8">
<a href="https://ithelp.ithome.com.tw/2018ironman/reward"><strong>優選 - 第 9 屆 iT 邦幫忙鐵人賽 - 只要有心,人人都可以做卡米狗</strong></a>
</div>
<div class="col-sm-4 text-right">
2018/04/22
</div>
</div>
</div>
<!-- Talks -->
<div class="py-3 col-xl-12">
<h2>講座/課程/顧問</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>快速開發商用LINE Bot聊天機器人實戰</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.tibame.com/offline/linebot?classUid=453">TibaMe 直播課程</a> - 2021/11/13
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.tibame.com/course/2255"><strong>零基礎一起學,讓你擁有一隻創業必備的團購機器人</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.tibame.com/course/2255">TibaMe 直播課程</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>深入 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 聊天機器人小聚 台中 17</a> - 2021/09/09
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://coscup.org/2021/zh-TW/session/F3VYUW"><strong>使用 Kamiflex 快速生成好維護的 LINE Flex Message</strong></a>
<a href="https://docs.google.com/presentation/d/1l6rEljJmNbIFiFWfqFBMRxFESdCWVtcBZ_CDX3klLkQ/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://coscup.org/2021/zh-TW/session/F3VYUW">COSCUP 2021</a> - 2021/08/01
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.facebook.com/events/448292566237747/"><strong>Kamigo LINE Bot 框架 - 實作簡單的取號機器人</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 聊天機器人小聚 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>從開發者的角度 看 LINE Bot 的極限</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 保哥的技術交流中心 直播</a> - 2021/04/13
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.facebook.com/events/400006678015664/"><strong>認識 LINE Bot 框架 Bottender 與 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 聊天機器人小聚 26</a> - 2020/12/21
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.facebook.com/events/877847119698657"><strong>不管你認不認識小編,但你一定要認識「聊天機器人」</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高雄青年職涯發展中心 課程</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>認識 LINE Bot 框架 Bottender 與 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>聊天機器人框架 Bottender 與 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 設計模式</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://www.youtube.com/watch?v=rIINvmVyqZw"><strong>使用 Rails Engine 製作開源套件</strong></a>
<a href="https://docs.google.com/presentation/d/1a_KF1d_SN40mGugdFOS74CnhqiuLNfIfcHH77D3rYYs/edit?usp=sharing">📔</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://coscup.org/2020/zh-TW/agenda/YDG9M7">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 線上顧問</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://event.oia.nycu.edu.tw/">國立陽明交大2021線上創客松</a> - 2020/07/02
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://www.facebook.com/events/255364399025115/"><strong>對話式表單架構設計</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 聊天機器人小聚 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>Slack 開外掛 - 用 Bottender framework 串接 Slack API</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 聊天機器人小聚 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/04
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://chatbots.kktix.cc/events/chatbots-taichung-004"><strong>聊天機器人 MVC 框架 - 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 聊天機器人小聚 台中 4</a> - 2019/11/06
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://chatbots.kktix.cc/events/meetup-013"><strong>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 聊天機器人小聚 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>給網站開發者用的 Chatbot MVC 框架</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>聊天機器人 MVC 架構設計</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://chatbots.kktix.cc/events/meetup-009">Chatbots 聊天機器人小聚 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>Line聊天機器人卡米狗開發祕辛</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://chatbots.kktix.cc/events/meetup-008">Chatbots 聊天機器人小聚 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>談卡米狗的新功能及使用者們的願望</strong></a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.facebook.com/events/1166024543551871/">Chatbots 聊天機器人小聚 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>Line聊天機器人卡米狗的成長及挑戰</strong>
</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.techbang.com/tags/18226">T客邦創客 Night 講座</a> - 2018/08/21
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://modernweb.tw/speakers.html#s3574">
<strong>意外做出 60 萬用戶的 Line chatbot - 卡米狗</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 就上手</strong>
</div>
<div class="col-sm-6 text-right">
台灣科技大學 金融科技創新與管理邀請演講 - 2018/05/18
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://5xruby.kktix.cc/events/rejectconf2018">
<strong>意外做出 60 萬用戶的 Line chatbot - 卡米狗</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>第一次接 chatbot 案就上手</strong>
</div>
<div class="col-sm-6 text-right">
<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>卡米狗的演進</strong>
</a>
</div>
<div class="col-sm-6 text-right">
<a href="https://www.facebook.com/readbook999/">線上讀書會</a> - 2018/02/18
</div>
</div>
</div>
<!-- Book -->
<div class="py-3 col-xl-12">
<h2>書籍</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="#">免費聊天機器人開發電子書</a>
</h3>
<div class="mb-3"></div>
<p class="card-text mb-auto">放置一些由卡米哥製作的一些與聊天機器人相關的免費教材,當教材更新時,會定期在卡米哥粉絲專頁發布,請按讚訂閱。</p>
<a href="https://etrex.tw/free_chatbot_book">查看</a>
</div>
</div>
<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="#">人人可作卡米狗:從零打造自己的 LINE 聊天機器人</a>
</h3>
<div class="mb-3">
郭佳甯著 / 博碩文化(2018) / 352 頁 / ISBN:9864342932
</div>
<p class="card-text mb-auto">
這是一本入門書,它針對沒有任何資訊領域知識的讀者,提供了一個自學方案:「打造一個屬於自己的卡米狗」。本書從介紹聊天機器人的基礎觀念開始,逐步傳授所有相關知識,實現從無到有來打造一個屬於自己的聊天機器人!包含開發環境設置、網站架設、HTTP協定、Webhook、Line
Messaging API等都將詳細介紹
</p>
<a href="https://www.tenlong.com.tw/products/9789864342938">前往天瓏書局購買</a>
</div>
<img class="card-img-left flex-auto d-none d-lg-block" style="height: 200px;" src="./img/kamigo_book.jpg">
</div>
<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="#">自動頭髮去背系統</a>
</h3>
<div class="mb-3">郭佳甯。「自動頭髮去背系統」。碩士論文,國立臺灣科技大學資訊管理系,2011。</div>
<p class="card-text mb-auto">使用我們的自動頭髮去背系統只要輸入人臉圖片,系統將自動對圖片作去背後只留下頭髮,迅速生成髮型資料庫。
</p>
<a href="./books/AnAutomaticHairMattingSystem.pdf">查看</a>
</div>
<img class="card-img-left flex-auto d-none d-lg-block" style="height: 200px;" src="./img/hair_matting.jpg">
</div>
<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="#">Ruby 學習筆記</a>
</h3>
<div class="mb-3"></div>
<p class="card-text mb-auto">收集自己常常遇到的問題以及對應的解法,確保自己能在下一次遇見相同問題時快速解決</p>
<a href="https://etrex.gitbooks.io/ruby/content/">查看</a>
</div>
<img class="card-img-left flex-auto d-none d-lg-block my-3 mx-5" style="height: 100px;" src="./img/ruby.png">
</div>
</div>
<!-- Skill -->
<div class="py-3 col-xl-12">
<h2>技能</h2>
<hr />
<div class="row">
<div class="col-sm-4">
<h4>前端</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>後端</h4>
<ul>
<li>Ruby / Rails</li>
<li>C# / ASP.NET MVC</li>
<li>Node.js</li>
</ul>
</div>
<div class="col-sm-4">
<h4>資料庫</h4>
<ul>
<li>PostgreSQL</li>
<li>MySQL</li>
<li>Redis</li>
</ul>
</div>
<div class="col-sm-4">
<h4>API 經驗</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>領域知識</h4>
<ul>
<li>聊天機器人</li>
<li>電子商務</li>
<li>影像處理</li>
<li>遊戲設計</li>
<li>教育</li>
<li>記憶學</li>
<li>人工智慧</li>
</ul>
</div>
<div class="col-sm-4">
<h4>軟體開發</h4>
<ul>
<li>系統分析 / 系統設計</li>
<li>設計模式 / 重構</li>
<li>靜態測試 / 動態測試</li>
<li>CI / CD</li>
<li>Git 程式碼版本管理</li>
<li>Gitlab 協作</li>
<li>雲端部署 GCP / Heroku</li>
</ul>
</div>
</div>
</div>
<!-- Works -->
<div class="py-3 col-xl-12">
<h2>個人作品集</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">卡米狗</h5>
<p class="card-text">台灣最知名的 Line 聊天機器人,擁有 60 萬用戶。提供聊天、算命、查天氣等服務</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">進入</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/kamigo01.png">
<div class="card-body">
<h5 class="card-title">Kamigo</h5>
<p class="card-text">基於 Rails 的 MVC 聊天機器人框架,支援 LINE API 的 Flex Message 以及 LIFF</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">進入</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">是 Kamigo 的附屬套件,用於支援 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">進入</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 提供良好的 DSL,讓你可以使用具有高度彈性與可維護性的語法來撰寫 LINE Flex Message</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">進入</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">一個線上的所見即所得編輯器,可以讓你撰寫 Kamiflex 並且即時看見結果</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">進入</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">卡米購</h5>
<p class="card-text">在 LINE 上提供團購商品服務的技術展示機器人</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">進入</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">骰子 不用謝</h5>
<p class="card-text">在 LINE 上提供丟骰子服務的機器人</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">進入</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">農家樂計算機</h5>
<p class="card-text">在 LINE 上提供農家樂桌遊分數計算的機器人</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">進入</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">帝霸狗</h5>
<p class="card-text">在 LINE 上提供開發人員除錯時所需各式資訊的機器人</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">進入</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">午餐隊長 on LINE</h5>
<p class="card-text">午餐隊長是在 LINE、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">進入</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">午餐隊長 on Telegram</h5>
<p class="card-text">午餐隊長是在 LINE、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">用精緻動畫呈現 K-Means 演算法的過程,使玩家能輕易明白此演算法的精髓</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">進入</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 心機迷宮</h5>
<p class="card-text">此迷宮的特點是進行轉彎時是轉迷宮而不是轉人物,模擬現實的迷路情節</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">進入</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">辨色力測驗</h5>
<p class="card-text">檢驗人類是否具有絕對色感:只要看見顏色就能知道其對應的RGB值</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">進入</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">檢驗人類是否具有絕對鼠感:不需要看游標也能知道游標在哪的能力</p>
<div class="d-flex justify-content-between align-items-center">